Compare commits
65 Commits
work/tobia
...
v23.07.90
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c77dee09f5 | ||
|
|
26dde017d0 | ||
|
|
5b27a84bcc | ||
|
|
fc3c36838c | ||
|
|
1fd2072cf8 | ||
|
|
7770d412b3 | ||
|
|
56184920b4 | ||
|
|
b61685b151 | ||
|
|
be0212a686 | ||
|
|
37ed09f957 | ||
|
|
1b7e8ae77a | ||
|
|
7571b0a9a3 | ||
|
|
9477e6343f | ||
|
|
83241ea956 | ||
|
|
f054467878 | ||
|
|
fb7154b492 | ||
|
|
973a75128c | ||
|
|
9ea70d7eac | ||
|
|
7f8285037c | ||
|
|
c5f19f12e5 | ||
|
|
ed6379ff85 | ||
|
|
9750df90e0 | ||
|
|
bd90658668 | ||
|
|
f78b634720 | ||
|
|
250476f77c | ||
|
|
e293d1f644 | ||
|
|
cde50588cb | ||
|
|
3972dab7b9 | ||
|
|
7c1b43bcad | ||
|
|
c22c74f735 | ||
|
|
9c42b3c1a7 | ||
|
|
d45cd5d9c9 | ||
|
|
8c503b8258 | ||
|
|
7078caac15 | ||
|
|
94bf65ab43 | ||
|
|
244e93c926 | ||
|
|
412856e882 | ||
|
|
2421f11717 | ||
|
|
2d42cfedec | ||
|
|
9308c84696 | ||
|
|
72fc242364 | ||
|
|
7d3240c597 | ||
|
|
9906ba8b7d | ||
|
|
b949092bc6 | ||
|
|
5cce3bd692 | ||
|
|
ef5d67e5bf | ||
|
|
4711b954c5 | ||
|
|
1688b00f48 | ||
|
|
410befa4bf | ||
|
|
b380c74b0e | ||
|
|
da8227931f | ||
|
|
fdc45ec5c8 | ||
|
|
94dd69ea02 | ||
|
|
80c3253a6e | ||
|
|
c5f6a6607e | ||
|
|
a10d5cbe75 | ||
|
|
584cad19b1 | ||
|
|
3745414635 | ||
|
|
147ce42c04 | ||
|
|
928feeca82 | ||
|
|
fc04af536d | ||
|
|
12b949d6cb | ||
|
|
6aaaabf159 | ||
|
|
fe45ef85a6 | ||
|
|
13e38ed982 |
@@ -58,9 +58,5 @@ 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', 'Windows' ]
|
||||
require-passing-tests-on: [ 'Linux/Qt5', 'FreeBSD' ]
|
||||
|
||||
@@ -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 "11")
|
||||
set(RELEASE_SERVICE_VERSION_MICRO "70")
|
||||
set(RELEASE_SERVICE_VERSION_MINOR "07")
|
||||
set(RELEASE_SERVICE_VERSION_MICRO "90")
|
||||
set(RELEASE_SERVICE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
|
||||
|
||||
project(NeoChat VERSION ${RELEASE_SERVICE_VERSION})
|
||||
@@ -93,6 +93,12 @@ 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
|
||||
@@ -124,11 +130,6 @@ 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
|
||||
@@ -159,6 +160,10 @@ 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)
|
||||
@@ -174,11 +179,9 @@ install(FILES org.kde.neochat.tray.svg DESTINATION ${KDE_INSTALL_FULL_ICONDIR}/h
|
||||
add_definitions(-DQT_NO_FOREACH)
|
||||
|
||||
add_subdirectory(src)
|
||||
|
||||
if (BUILD_TESTING)
|
||||
if (BUILD_TESTING AND Quotient${QUOTIENT_SUFFIX}_VERSION_MINOR GREATER 6)
|
||||
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)
|
||||
|
||||
@@ -1,23 +0,0 @@
|
||||
# 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
|
||||
)
|
||||
@@ -1,42 +0,0 @@
|
||||
# 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)
|
||||
@@ -1,44 +0,0 @@
|
||||
#!/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()
|
||||
@@ -114,7 +114,6 @@ 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>
|
||||
@@ -138,7 +137,6 @@ 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>
|
||||
@@ -154,6 +152,7 @@ to provide a convergent experience across multiple platforms.</p>
|
||||
<p xml:lang="pt">Devido à natureza do desenvolvimento da especificação do Matrix, o NeoChat também suporta diversas funcionalidades instáveis. De momento são:</p>
|
||||
<p xml:lang="sl">Zaradi narave razvoja specifikacije Matrixa NeoChat podpira tudi številne nestabilne zmožnosti. Trenutno so to:</p>
|
||||
<p xml:lang="sv">På grund av sättet Matrix-specifikationens utvecklas, stöder NeoChat också ett stor antal instabila funktioner. För närvarande är de:</p>
|
||||
<p xml:lang="ta">மேட்ரிக்ஸு நெறிமுறை வரையறுக்கப்படும் விதத்தின் காரணமாக, பல நிலையற்ற அம்சங்களையும் நியோச்சாட் ஆதரிக்கிறது. தற்போது ஆதரிக்கப்படுபவை:</p>
|
||||
<p xml:lang="tr">NeoChat, Matrix belirtimi geliştirmesinin doğası gereği çok sayıda kararsız özelliği de destekler. Şu anda bunlar:</p>
|
||||
<p xml:lang="uk">Через природу розробки специфікації Matrix, у NeoChat також передбачено підтримку численних нестабільних можливостей. У поточній версії цими можливостями є:</p>
|
||||
<p xml:lang="x-test">xxDue to the nature of the Matrix specification development NeoChat also supports numerous unstable features. Currently these are:xx</p>
|
||||
@@ -163,7 +162,6 @@ 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>
|
||||
@@ -187,7 +185,6 @@ 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>
|
||||
@@ -211,7 +208,6 @@ 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>
|
||||
@@ -288,11 +284,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 conversa, e información da sala.</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>
|
||||
@@ -309,11 +305,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>
|
||||
|
||||
@@ -93,7 +93,7 @@ Comment[es]=Cliente para el protocolo Matrix
|
||||
Comment[eu]=Matrix protokolorako bezeroa
|
||||
Comment[fi]=Asiakas Matrix-yhteyskäytännölle
|
||||
Comment[fr]=Client pour le protocole « Matrix »
|
||||
Comment[gl]=Cliente para o protocolo Matrix
|
||||
Comment[gl]=Cliente para o protocolo Matrix.
|
||||
Comment[hu]=Kliens a Matrix protokollhoz
|
||||
Comment[ia]=Cliente per le protocollo de Matrix
|
||||
Comment[id]=Klien untuk protokol Matrix
|
||||
|
||||
143
po/ar/neochat.po
143
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-01 00:46+0000\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+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"
|
||||
@@ -122,99 +122,94 @@ msgstr "المقصد"
|
||||
msgid "Network Error"
|
||||
msgstr "خطأ شبكيّ"
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr "نيوتشات"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr "عميل ماتركس"
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, kde-format
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr "© 2018-2020بلاك هات، 2020-2023 مجتمع كِيدِي"
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr "كارل شوان"
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr "المصين"
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr "توبياس فلة"
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr "جيمس غراهام"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr "قبعة سوداء"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr "المؤلف الأصلي لـSpectral"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr "أليكسي روساكوف"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr "مصين Quotient"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr "زايد السعيدي"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr "zayed.alsaidi@gmail.com"
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr "مكتبة Qt5 لكتابة عملاء عابرة للأنظمة لماتركس"
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (بني على %2)"
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "عميل لميفاق الاتصال ماتركس"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:327
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "يدعم ماتركس: مخطط الروابط"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, 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"
|
||||
@@ -1107,7 +1102,7 @@ msgstr "عرض: %1, طول: %2"
|
||||
msgid "Encrypted Message"
|
||||
msgstr "رسالة معمّاة"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr "%1: %2"
|
||||
@@ -1210,7 +1205,7 @@ msgstr "ضع اسم للمرفق…"
|
||||
msgid "Send a message…"
|
||||
msgstr "أرسل رسالة…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1340,7 +1335,7 @@ msgstr "الملصقات"
|
||||
msgid "View Location"
|
||||
msgstr "اعرض الموقع"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "أغلق"
|
||||
@@ -1371,13 +1366,13 @@ msgstr "ارفض"
|
||||
msgid "Accept"
|
||||
msgstr "اقبل"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "المواقع"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "لم تشارك أي مواقع في هذه الغرفة."
|
||||
@@ -1404,7 +1399,7 @@ msgid "Url:"
|
||||
msgstr "المسار:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1431,19 +1426,13 @@ msgstr "أدخل معرفك لماتركس"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "معرف ماتركس:"
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "يحمّل..."
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "ولجت فعلاً"
|
||||
@@ -1498,13 +1487,6 @@ 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"
|
||||
@@ -2032,18 +2014,18 @@ msgstr "افتح دردشة خاصة"
|
||||
msgid "Copy link"
|
||||
msgstr "نسخ الرابط"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr "تَثَبّت الجلسة"
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr "موافقة المستخدم"
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
@@ -2052,17 +2034,17 @@ msgstr ""
|
||||
"يتطلب منك الخادم المنزلي الخاص بك الموافقة على الشروط والأحكام الخاصة به قبل "
|
||||
"أن تتمكن من استخدامه. الرجاء الضغط على الزر أدناه لقراءتها."
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "افتح"
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr "ابدأ دردشة"
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr "هل ترغب في بَدء دردشة مع %1؟"
|
||||
@@ -2678,25 +2660,12 @@ msgstr "انضم لبعض الغرف لتبدأ"
|
||||
msgid "Search in room directory"
|
||||
msgstr "ابحث في دليل الغرف"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "غرفة مكتومة"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "اضبط الغرفة"
|
||||
@@ -2835,55 +2804,48 @@ msgstr "خيارات"
|
||||
msgid "Open developer tools"
|
||||
msgstr "افتح أدوات المطوّر"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "ابحث في هذه الغرفة"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "ابحث"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "أزل الغرفة من المفضلة"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "اجعل الغرفة في المفضلة"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "اعرض المواقع لهذه الغرفة"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "الأعضاء"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "ابحث عن مستخدم في الغرفة"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "أدعُ مستخدم إلى غرفة"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
@@ -2894,7 +2856,7 @@ msgstr[3] "%1 أعضاء"
|
||||
msgstr[4] "%1 عضواً"
|
||||
msgstr[5] "%1 عضو"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "بلا عدد أعضاء"
|
||||
@@ -3384,6 +3346,12 @@ 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"
|
||||
@@ -3521,6 +3489,12 @@ msgstr "في الشريط الجانبي"
|
||||
msgid "Color theme"
|
||||
msgstr "سمة الألوان"
|
||||
|
||||
#: 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"
|
||||
@@ -3676,9 +3650,8 @@ msgid "General settings"
|
||||
msgstr "إعدادات عامّة"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgstr "أغلق إلى صينية النظام"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
147
po/az/neochat.po
147
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-01 00:46+0000\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+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"
|
||||
@@ -130,102 +130,97 @@ msgstr "Dəvət göndərmək"
|
||||
msgid "Network Error"
|
||||
msgstr "Şəbəkə xətası"
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr "NeoChat"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr "Matrix müştərisi"
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "© 2018-2020 Black Hat, 2020-2022 KDE Community"
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr "© 2018-2020 Black Hat, 2020-2022 KDE Cəmiyyəti"
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr "Carl Schwan"
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr "Tobias Fella"
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr "Qarapapaq"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr "Xəyyam Qocayev"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr "xxmn77@gmail.com"
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr ""
|
||||
"Matrix üçün platformalararası müştərilər yazmaq üçün bir Qt5 kitabxanası"
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Matrix kommunikasiya protokolu üçün müştəri"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:327
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Supports appstream: url scheme"
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Appstream dəstəklənir: URL sxemi"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, 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"
|
||||
@@ -1205,7 +1200,7 @@ msgstr ""
|
||||
msgid "Encrypted Message"
|
||||
msgstr "İsmarıca düzəliş etmək"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr "%1: %2"
|
||||
@@ -1310,7 +1305,7 @@ msgstr ""
|
||||
msgid "Send a message…"
|
||||
msgstr "İsmarıcı göndərin..."
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Cancel"
|
||||
msgctxt "@action:button"
|
||||
@@ -1458,7 +1453,7 @@ msgstr ""
|
||||
msgid "View Location"
|
||||
msgstr "Dəvət göndərmək"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Bağlamaq"
|
||||
@@ -1489,14 +1484,14 @@ msgstr "İmtina etmək"
|
||||
msgid "Accept"
|
||||
msgstr "Qəbul etmək"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, 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:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Open NeoChat in this room"
|
||||
msgid "There are no locations shared in this room."
|
||||
@@ -1524,7 +1519,7 @@ msgid "Url:"
|
||||
msgstr "URL:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1551,19 +1546,13 @@ msgstr "Matrix İD-zi daxil edin"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Matrix ID:"
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 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:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr ""
|
||||
@@ -1618,15 +1607,6 @@ 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"
|
||||
@@ -2162,19 +2142,19 @@ msgstr "Məxfi çatı açmaq"
|
||||
msgid "Copy link"
|
||||
msgstr "Kopyalamaq"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Show notifications"
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr "Bildirişlərdə göstərmək"
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr "İstifadəçi razılığı"
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
@@ -2183,17 +2163,17 @@ msgstr ""
|
||||
"Əsas server, onu istifadə etmədən öncə onun şərtlərini və razılaşmalarını "
|
||||
"qəbul etmənizi tələb edir. Onları oxumaq üçün aşağıdakı düyməni vurun."
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "Açmaq"
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr "Söhbətə başlayın"
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr "%1 ilə söhbətə başlamaq istəyirsiniz?"
|
||||
@@ -2830,26 +2810,13 @@ msgstr "Başlamaq üçün bəzi otaqlara qoşulun"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Otaq kataloqunda axtarın"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Muted"
|
||||
msgid "Muted room"
|
||||
msgstr "Səssiz"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Otağı tənzimləmək"
|
||||
@@ -2997,59 +2964,52 @@ msgstr "Seçimlər:"
|
||||
msgid "Open developer tools"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, 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:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Otağı seçilmişlərdən silin"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Otağı seçilmiş edin"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, 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:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Üzvlər"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, 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: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
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, 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:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "%1 Member"
|
||||
#| msgid_plural "%1 Members"
|
||||
@@ -3058,7 +3018,7 @@ msgid_plural "%1 members"
|
||||
msgstr[0] "%1 Üzv"
|
||||
msgstr[1] "%1 Üzvlər"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "No Member Count"
|
||||
msgid "No member count"
|
||||
@@ -3591,6 +3551,14 @@ 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"
|
||||
@@ -3737,6 +3705,12 @@ msgstr "Yan paneldə"
|
||||
msgid "Color theme"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:52
|
||||
#, kde-format
|
||||
msgctxt "@label"
|
||||
msgid "%1, Last activity: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:61
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Edit device name"
|
||||
@@ -3912,9 +3886,8 @@ msgid "General settings"
|
||||
msgstr "Ümumi ayarlar:"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgstr "Bağlayaraq sistem treyə yığmaq"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
144
po/ca/neochat.po
144
po/ca/neochat.po
@@ -9,8 +9,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-01 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-07-31 11:04+0200\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+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"
|
||||
"Language: ca\n"
|
||||
@@ -18,7 +18,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Lokalize 22.12.3\n"
|
||||
"X-Generator: Lokalize 23.04.3\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#, kde-format
|
||||
@@ -126,100 +126,95 @@ msgstr "Destinació"
|
||||
msgid "Network Error"
|
||||
msgstr "Error de la xarxa"
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr "NeoChat"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr "Client de Matrix"
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, kde-format
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr "© 2018-2020 Black Hat, 2020-2023 la comunitat KDE"
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr "Carl Schwan"
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr "Mantenidor"
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr "Tobias Fella"
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr "Nate Graham"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr "Black Hat"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr "Autor original de l'Spectral"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr "Alexey Rusakov"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr "Mantenidor del Quotient"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr "Josep M. Ferrer"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr "txemaq@gmail.com"
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr ""
|
||||
"Una biblioteca Qt5 per a escriure clients multiplataforma per al Matrix"
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (construïda amb %2)"
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Client per al protocol de comunicacions Matrix"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:327
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Implementa l'esquema d'URL «matrix:»"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, 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"
|
||||
@@ -1094,7 +1089,7 @@ msgstr "Lat.: %1, lon.: %2"
|
||||
msgid "Encrypted Message"
|
||||
msgstr "Missatge encriptat"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr "%1: %2"
|
||||
@@ -1198,7 +1193,7 @@ msgstr "Establir un títol d'adjunt..."
|
||||
msgid "Send a message…"
|
||||
msgstr "Envia un missatge…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1328,7 +1323,7 @@ msgstr "Adhesius"
|
||||
msgid "View Location"
|
||||
msgstr "Visualitza l'emplaçament"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Tanca"
|
||||
@@ -1359,13 +1354,13 @@ msgstr "Rebutja"
|
||||
msgid "Accept"
|
||||
msgstr "Accepta"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Ubicacions"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "No hi ha ubicacions compartides en aquesta sala."
|
||||
@@ -1392,7 +1387,7 @@ msgid "Url:"
|
||||
msgstr "URL:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1419,18 +1414,13 @@ msgstr "Introduïu la vostra ID de Matrix"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "ID de Matrix:"
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 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:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Ja heu iniciat la sessió"
|
||||
@@ -1485,13 +1475,6 @@ 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"
|
||||
@@ -2043,18 +2026,18 @@ msgstr "Obre en un xat privat"
|
||||
msgid "Copy link"
|
||||
msgstr "Copia l'enllaç"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr "Verificació de la sessió"
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr "Consentiment de l'usuari"
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
@@ -2063,17 +2046,17 @@ msgstr ""
|
||||
"El servidor domèstic requereix que accepteu els seus termes i condicions "
|
||||
"abans de poder-lo usar. Feu clic al botó de sota per a llegir-los."
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "Obre"
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr "Inicia un xat"
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr "Voleu iniciar un xat amb %1?"
|
||||
@@ -2689,24 +2672,12 @@ 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/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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Sala silenciada"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Configura la sala"
|
||||
@@ -2845,62 +2816,55 @@ msgstr "Opcions"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Obre les eines de desenvolupament"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Cerca en aquesta sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Cerca"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Elimina la sala de les preferides"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Fes preferida la sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Mostra les ubicacions per a aquesta sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Membres"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Cerca un usuari en aquesta sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invite a User"
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Convida un usuari"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Convida un usuari a la sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "%1 membre"
|
||||
msgstr[1] "%1 membres"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "No hi ha comptador de membres"
|
||||
@@ -3410,6 +3374,12 @@ 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"
|
||||
@@ -3547,6 +3517,12 @@ msgstr "A la barra lateral"
|
||||
msgid "Color theme"
|
||||
msgstr "Tema de color"
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:52
|
||||
#, kde-format
|
||||
msgctxt "@label"
|
||||
msgid "%1, Last activity: %2"
|
||||
msgstr "%1, darrera activitat: %2"
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:61
|
||||
#, kde-format
|
||||
msgid "New device name"
|
||||
@@ -3702,8 +3678,8 @@ msgstr "Configuració general"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Mostra a la safata del sistema"
|
||||
msgid "Close to system tray"
|
||||
msgstr "Tanca a la safata del sistema"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
#, kde-format
|
||||
|
||||
@@ -9,8 +9,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-01 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-07-31 11:04+0200\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+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"
|
||||
"Language: ca@valencia\n"
|
||||
@@ -18,7 +18,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Lokalize 22.12.3\n"
|
||||
"X-Generator: Lokalize 23.04.3\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#, kde-format
|
||||
@@ -127,99 +127,94 @@ msgstr "Destinació"
|
||||
msgid "Network Error"
|
||||
msgstr "S'ha produït un error de la xarxa"
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr "NeoChat"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr "Client de Matrix"
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, kde-format
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr "© 2018-2020 Black Hat, 2020-2023 la comunitat KDE"
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr "Carl Schwan"
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr "Mantenidor"
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr "Tobias Fella"
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr "Nate Graham"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr "Black Hat"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr "Autor original d'Spectral"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr "Alexey Rusakov"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr "Mantenidor de Quotient"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr "Josep M. Ferrer"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr "txemaq@gmail.com"
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr "Una biblioteca Qt5 per a escriure clients multiplataforma per a Matrix"
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (construïda amb %2)"
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Client per al protocol de comunicacions Matrix"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:327
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Implementa l'esquema d'URL «matrix:»"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, 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"
|
||||
@@ -1093,7 +1088,7 @@ msgstr "Lat.: %1, lon.: %2"
|
||||
msgid "Encrypted Message"
|
||||
msgstr "Missatge encriptat"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr "%1: %2"
|
||||
@@ -1197,7 +1192,7 @@ msgstr "Establir un títol d'adjunt..."
|
||||
msgid "Send a message…"
|
||||
msgstr "Envia un missatge…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1327,7 +1322,7 @@ msgstr "Adhesius"
|
||||
msgid "View Location"
|
||||
msgstr "Visualitza l'emplaçament"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Tanca"
|
||||
@@ -1358,13 +1353,13 @@ msgstr "Rebutja"
|
||||
msgid "Accept"
|
||||
msgstr "Accepta"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Ubicacions"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "No hi ha ubicacions compartides en esta sala."
|
||||
@@ -1391,7 +1386,7 @@ msgid "Url:"
|
||||
msgstr "URL:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1418,18 +1413,13 @@ msgstr "Introduïu la vostra ID de Matrix"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "ID de Matrix:"
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 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:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Ja heu iniciat la sessió"
|
||||
@@ -1484,13 +1474,6 @@ 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"
|
||||
@@ -2042,18 +2025,18 @@ msgstr "Obri en un xat privat"
|
||||
msgid "Copy link"
|
||||
msgstr "Copia l'enllaç"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr "Verificació de la sessió"
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr "Consentiment de l'usuari"
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
@@ -2062,17 +2045,17 @@ msgstr ""
|
||||
"El servidor domèstic requerix que accepteu els seus termes i condicions "
|
||||
"abans de poder-lo utilitzar. Feu clic en el botó de davall per a llegir-los."
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "Obri"
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr "Inicia un xat"
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr "Voleu iniciar un xat amb %1?"
|
||||
@@ -2688,24 +2671,12 @@ 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/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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Sala silenciada"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Configura la sala"
|
||||
@@ -2844,62 +2815,55 @@ msgstr "Opcions"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Obri les eines de desenvolupament"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Busca en esta sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Busca"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Elimina la sala de les preferides"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Fes preferida la sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Mostra les ubicacions per a esta sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Membres"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Busca un usuari en esta sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invite a User"
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Convida un usuari"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Convida un usuari a la sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "%1 membre"
|
||||
msgstr[1] "%1 membres"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "No hi ha comptador de membres"
|
||||
@@ -3408,6 +3372,12 @@ 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"
|
||||
@@ -3545,6 +3515,12 @@ msgstr "En la barra lateral"
|
||||
msgid "Color theme"
|
||||
msgstr "Tema de color"
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:52
|
||||
#, kde-format
|
||||
msgctxt "@label"
|
||||
msgid "%1, Last activity: %2"
|
||||
msgstr "%1, última activitat: %2"
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:61
|
||||
#, kde-format
|
||||
msgid "New device name"
|
||||
@@ -3700,8 +3676,8 @@ msgstr "Configuració general"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Mostra en la safata del sistema"
|
||||
msgid "Close to system tray"
|
||||
msgstr "Tanca a la safata del sistema"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
#, kde-format
|
||||
|
||||
142
po/cs/neochat.po
142
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-01 00:46+0000\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+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"
|
||||
@@ -121,97 +121,92 @@ msgstr "Cíl"
|
||||
msgid "Network Error"
|
||||
msgstr "Chyba sítě"
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr "NeoChat"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr "Klient protokolu Matrix"
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, kde-format
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr "© 2018-2020 Black Hat, 2020-2023 Komunita KDE"
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr "Carl Schwan"
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr "Správce"
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr "Tobias Fella"
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr "James Graham"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr "Black Hat"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr "Vít Pelčák"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr "vit@pelcak.org"
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (sestaveno oproti %2)"
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr ""
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
@@ -1091,7 +1086,7 @@ msgstr "Šíř.: %1, Dél.: %2"
|
||||
msgid "Encrypted Message"
|
||||
msgstr "Zašifrovaná zpráva"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr "%1: %2"
|
||||
@@ -1193,7 +1188,7 @@ msgstr ""
|
||||
msgid "Send a message…"
|
||||
msgstr "Poslat správu…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1323,7 +1318,7 @@ msgstr "Nálepky"
|
||||
msgid "View Location"
|
||||
msgstr "Zobrazit umístění"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Zavřít"
|
||||
@@ -1354,13 +1349,13 @@ msgstr "Odmítnout"
|
||||
msgid "Accept"
|
||||
msgstr "Přijmout"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Umístění"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr ""
|
||||
@@ -1387,7 +1382,7 @@ msgid "Url:"
|
||||
msgstr "Url:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1414,18 +1409,13 @@ msgstr ""
|
||||
msgid "Matrix ID:"
|
||||
msgstr ""
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 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:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr ""
|
||||
@@ -1480,13 +1470,6 @@ 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"
|
||||
@@ -2006,35 +1989,35 @@ msgstr ""
|
||||
msgid "Copy link"
|
||||
msgstr "Kopírovat odkaz"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
"being able to use it. Please click the button below to read them."
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "Otevřít"
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr "Zahájit rozhovor"
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr "Přejete si začít rozhovor s %1?"
|
||||
@@ -2648,25 +2631,12 @@ msgstr ""
|
||||
msgid "Search in room directory"
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr ""
|
||||
@@ -2803,55 +2773,48 @@ msgstr "Možnosti"
|
||||
msgid "Open developer tools"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Hledat"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Členové"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
@@ -2859,7 +2822,7 @@ msgstr[0] "%1 člen"
|
||||
msgstr[1] "%1 členové"
|
||||
msgstr[2] "%1 členů"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Žádný počet členů"
|
||||
@@ -3347,6 +3310,12 @@ 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"
|
||||
@@ -3487,6 +3456,12 @@ msgstr ""
|
||||
msgid "Color theme"
|
||||
msgstr "Barevný motiv"
|
||||
|
||||
#: 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"
|
||||
@@ -3639,9 +3614,8 @@ msgid "General settings"
|
||||
msgstr "Obecná nastavení"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgstr "Zavřít do systémového panelu"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
140
po/da/neochat.po
140
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-01 00:46+0000\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+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"
|
||||
@@ -127,98 +127,93 @@ msgstr ""
|
||||
msgid "Network Error"
|
||||
msgstr "Netværksfejl"
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Chat"
|
||||
msgid "NeoChat"
|
||||
msgstr "Chat"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, kde-format
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr "Carl Schwan"
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr "Tobias Fella"
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr "Martin Schlander"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr "mschlander@opensuse.org"
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr ""
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
@@ -1102,7 +1097,7 @@ msgstr ""
|
||||
msgid "Encrypted Message"
|
||||
msgstr "Send besked"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr ""
|
||||
@@ -1210,7 +1205,7 @@ msgstr ""
|
||||
msgid "Send a message…"
|
||||
msgstr "Send besked"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Cancel"
|
||||
msgctxt "@action:button"
|
||||
@@ -1347,7 +1342,7 @@ msgstr ""
|
||||
msgid "View Location"
|
||||
msgstr "Indstillinger"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Luk"
|
||||
@@ -1378,14 +1373,14 @@ msgstr "Afvis"
|
||||
msgid "Accept"
|
||||
msgstr "Acceptér"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Settings"
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Indstillinger"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr ""
|
||||
@@ -1412,7 +1407,7 @@ msgid "Url:"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1440,19 +1435,14 @@ msgstr ""
|
||||
msgid "Matrix ID:"
|
||||
msgstr ""
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 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:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr ""
|
||||
@@ -1510,14 +1500,6 @@ 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"
|
||||
@@ -2046,37 +2028,37 @@ msgstr ""
|
||||
msgid "Copy link"
|
||||
msgstr "Kopiér"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Username"
|
||||
msgid "User consent"
|
||||
msgstr "Brugernavn"
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
"being able to use it. Please click the button below to read them."
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Start a Chat"
|
||||
msgid "Start a chat"
|
||||
msgstr "Start en chat"
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr ""
|
||||
@@ -2709,25 +2691,13 @@ msgstr ""
|
||||
msgid "Search in room directory"
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Muted"
|
||||
msgid "Muted room"
|
||||
msgstr "Lydløs"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr ""
|
||||
@@ -2872,62 +2842,55 @@ msgstr ""
|
||||
msgid "Open developer tools"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Medlemmer"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, fuzzy, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "Medlem"
|
||||
msgstr[1] "Medlemmer"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr ""
|
||||
@@ -3426,6 +3389,13 @@ 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"
|
||||
@@ -3564,6 +3534,12 @@ msgstr ""
|
||||
msgid "Color theme"
|
||||
msgstr ""
|
||||
|
||||
#: 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"
|
||||
@@ -3725,7 +3701,7 @@ msgstr "Indstillinger"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Show in System Tray"
|
||||
msgid "Close to system tray"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
143
po/de/neochat.po
143
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-01 00:46+0000\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+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"
|
||||
@@ -127,101 +127,96 @@ msgstr "Ziel"
|
||||
msgid "Network Error"
|
||||
msgstr "Netzwerkfehler"
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr "NeoChat"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr "Matrix-Programm"
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, kde-format
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr "Copyright © 2018-2020 Black Hat, 2020-2023 KDE-Gemeinschaft"
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr "Carl Schwan"
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr "Betreuer"
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr "Tobias Fella"
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr "James Graham"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr "Black Hat"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr "Ursprünglicher Autor von Spectral"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr "Alexey Rusakov"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr "Betreuer von Quotient"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr "Deutsches KDE-Übersetzerteam, Alois Spitzbart"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr "kde-i18n-de@kde.org, spitz234@hotmail.com"
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr ""
|
||||
"Eine Qt5-Bibliothek zum Schreiben von plattformübergreifenden Programmen für "
|
||||
"Matrix"
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (für %2 kompiliert)"
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Programm für das Matrix-Protokoll"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:327
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Unterstützt das Adressschema matrix:"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, 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"
|
||||
@@ -1104,7 +1099,7 @@ msgstr "Breite: %1, Länge: %2"
|
||||
msgid "Encrypted Message"
|
||||
msgstr "Verschlüsselte Nachricht"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr "%1: %2"
|
||||
@@ -1206,7 +1201,7 @@ msgstr ""
|
||||
msgid "Send a message…"
|
||||
msgstr "Eine Nachricht senden ..."
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1340,7 +1335,7 @@ msgstr "Sticker"
|
||||
msgid "View Location"
|
||||
msgstr "Einen Standort senden"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Schließen"
|
||||
@@ -1371,14 +1366,14 @@ msgstr "Ablehnen"
|
||||
msgid "Accept"
|
||||
msgstr "Annehmen"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Notifications"
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Benachrichtigungen"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "You are already in this room."
|
||||
msgid "There are no locations shared in this room."
|
||||
@@ -1406,7 +1401,7 @@ msgid "Url:"
|
||||
msgstr "Url:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1433,19 +1428,13 @@ msgstr "Geben Sie Ihre Matrix-ID ein"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Matrix-ID:"
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 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:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Bereits angemeldet"
|
||||
@@ -1500,13 +1489,6 @@ 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"
|
||||
@@ -2073,18 +2055,18 @@ msgstr "Privaten Chat öffnen"
|
||||
msgid "Copy link"
|
||||
msgstr "Verknüpfung kopieren"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr "Sitzungsverifizierung"
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr "Benutzereinwilligung"
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
@@ -2093,17 +2075,17 @@ msgstr ""
|
||||
"Ihr Heimserver verlangt, dass Sie seinen Bedingungen zustimmen, bevor Sie "
|
||||
"ihn nutzen können. Bitte klicken Sie auf den Knopf unten, um sie zu lesen."
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "Öffnen"
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr "Einen Chat starten"
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr "Möchten Sie einen Chat mit %1 beginnen?"
|
||||
@@ -2722,25 +2704,12 @@ msgstr "Einen Raum betreten, um zu beginnen"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Raumverzeichnis durchsuchen"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Stummgeschaltet"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Raum konfigurieren"
|
||||
@@ -2879,63 +2848,56 @@ msgstr "Einstellungen"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Entwicklungswerkzeuge öffnen"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "In diesem Raum suchen"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Suchen"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Raum aus Favoriten entfernen"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Raum zu Favoriten hinzufügen"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Search in this room"
|
||||
msgid "Show locations for this room"
|
||||
msgstr "In diesem Raum suchen"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Mitglieder"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Benutzer in Raum suchen"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Einen Benutzer in den Raum einladen"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "%1 Mitglied"
|
||||
msgstr[1] "%1 Mitglieder"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Keine Mitgliederanzahl"
|
||||
@@ -3450,6 +3412,12 @@ 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"
|
||||
@@ -3587,6 +3555,12 @@ msgstr "In der Seitenleiste"
|
||||
msgid "Color theme"
|
||||
msgstr "Farbdesign"
|
||||
|
||||
#: 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"
|
||||
@@ -3744,9 +3718,8 @@ msgid "General settings"
|
||||
msgstr "Allgemeine Einstellungen"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgstr "Beim Schließen in den Systemabschnitt der Kontrollleiste minimieren"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
143
po/el/neochat.po
143
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-01 00:46+0000\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+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"
|
||||
@@ -125,102 +125,97 @@ msgstr "Προορισμός"
|
||||
msgid "Network Error"
|
||||
msgstr "Σφάλμα δικτύου"
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr "NeoChat"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr "Πελάτης του Matrix"
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "© 2018-2020 Black Hat, 2020-2022 KDE Community"
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr "© 2018-2020 Black Hat, 2020-2022 KDE Community"
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr "Carl Schwan"
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr "Συντηρητής"
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr "Tobias Fella"
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr "James Graham"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr "Black Hat"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr "Αρχικός συγγραφέας του Spectral"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr "Alexey Rusakov"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr "Συντηρητής του Quotient"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr "Stelios"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr "sstavra@gmail.com"
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr ""
|
||||
"Μια βιβλιοθήκη Qt5 για τη συγγραφή πελατών ανεξάρτητων από πλατφόρμες για το "
|
||||
"Matrix"
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (κατασκευάστηκε με τη %2)"
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Πελάτης για το πρωτόκολλο επικοινωνίας Matrix"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:327
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Υποστηρίζει το matrix: url σχήμα"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, 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"
|
||||
@@ -1131,7 +1126,7 @@ msgstr ""
|
||||
msgid "Encrypted Message"
|
||||
msgstr "Κρυπτογραφημένο μήνυμα"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr "%1: %2"
|
||||
@@ -1235,7 +1230,7 @@ msgstr ""
|
||||
msgid "Send a message…"
|
||||
msgstr "Αποστολή μηνύματος…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1378,7 +1373,7 @@ msgstr ""
|
||||
msgid "View Location"
|
||||
msgstr "Αποστολή πρόσκλησης"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Κλείσιμο"
|
||||
@@ -1409,14 +1404,14 @@ msgstr "Απόρριψη"
|
||||
msgid "Accept"
|
||||
msgstr "Αποδοχή"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Notifications"
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Ειδοποιήσεις"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "You are already in this room."
|
||||
msgid "There are no locations shared in this room."
|
||||
@@ -1444,7 +1439,7 @@ msgid "Url:"
|
||||
msgstr "Url:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1471,19 +1466,13 @@ msgstr "Δώσε το αναγνωριστικό σου στο Matrix"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Matrix ID:"
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Φορτώνει…"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Ήδη σε σύνδεση"
|
||||
@@ -1538,13 +1527,6 @@ 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"
|
||||
@@ -2102,18 +2084,18 @@ msgstr "Άνοιγμα ιδιωτικής συνομιλίας"
|
||||
msgid "Copy link"
|
||||
msgstr "Αντιγραφή συνδέσμου"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr "Επαλήθευση συνεδρίας"
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr "Συναίνεση χρήστη"
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
@@ -2123,17 +2105,17 @@ msgstr ""
|
||||
"πριν τον χρησιμοποιήσεις. Κάνε κλικ στο παρακάτω κουμπί για να τους "
|
||||
"διαβάσεις."
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "Άνοιγμα"
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr "Έναρξη συνομιλίας"
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr "Θέλεις να ξεκινήσεις συνομιλία με τον %1;"
|
||||
@@ -2753,25 +2735,12 @@ msgstr "Μπορείς να εισέλθεις σε κάποιες αίθουσ
|
||||
msgid "Search in room directory"
|
||||
msgstr "Αναζήτηση στον κατάλογο με τις αίθουσες"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Αίθουσα σε σίγαση"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Διαμόρφωση αίθουσας"
|
||||
@@ -2912,56 +2881,49 @@ msgstr "Επιλογές"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Άνοιγμα εργαλείων προγραμματιστή"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Αναζήτηση σε αυτήν την αίθουσα"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Αναζήτηση"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Αφαίρεση αίθουσας από τις προτιμώμενες"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Να γίνει η αίθουσα προτιμώμενη"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Search in this room"
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Αναζήτηση σε αυτήν την αίθουσα"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Μέλη"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Αναζήτηση χρήστη στην αίθουσα"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Πρόσκληση χρήστη στην αίθουσα"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "%1 Member"
|
||||
#| msgid_plural "%1 Members"
|
||||
@@ -2970,7 +2932,7 @@ msgid_plural "%1 members"
|
||||
msgstr[0] "%1 μέλος"
|
||||
msgstr[1] "%1 μέλη"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "No Member Count"
|
||||
msgid "No member count"
|
||||
@@ -3483,6 +3445,12 @@ 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"
|
||||
@@ -3620,6 +3588,12 @@ msgstr "Στην πλευρική μπάρα"
|
||||
msgid "Color theme"
|
||||
msgstr "Θέμα χρώματος"
|
||||
|
||||
#: 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"
|
||||
@@ -3786,9 +3760,8 @@ msgid "General settings"
|
||||
msgstr "Γενικές ρυθμίσεις"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
#, kde-format
|
||||
msgid "Close to 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-01 00:46+0000\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+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"
|
||||
@@ -121,99 +121,94 @@ msgstr "Destination"
|
||||
msgid "Network Error"
|
||||
msgstr "Network Error"
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr "NeoChat"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr "Matrix client"
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, kde-format
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr "Carl Schwan"
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr "Maintainer"
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr "Tobias Fella"
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr "James Graham"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr "Black Hat"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr "Original author of Spectral"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr "Alexey Rusakov"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr "Maintainer of Quotient"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr "Steve Allewell"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr "steve.allewell@gmail.com"
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr "A Qt5 library to write cross-platform clients for Matrix"
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (built against %2)"
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Client for the matrix communication protocol"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:327
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Supports matrix: URL scheme"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, 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"
|
||||
@@ -1086,7 +1081,7 @@ msgstr "Lat: %1, Lon: %2"
|
||||
msgid "Encrypted Message"
|
||||
msgstr "Encrypted Message"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr "%1: %2"
|
||||
@@ -1190,7 +1185,7 @@ msgstr "Set an attachment caption..."
|
||||
msgid "Send a message…"
|
||||
msgstr "Send a message…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1321,7 +1316,7 @@ msgstr "Stickers"
|
||||
msgid "View Location"
|
||||
msgstr "Send a Location"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Close"
|
||||
@@ -1352,14 +1347,14 @@ msgstr "Reject"
|
||||
msgid "Accept"
|
||||
msgstr "Accept"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Notifications"
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Notifications"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "You are already in this room."
|
||||
msgid "There are no locations shared in this room."
|
||||
@@ -1387,7 +1382,7 @@ msgid "Url:"
|
||||
msgstr "URL:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1414,19 +1409,13 @@ msgstr "Enter your Matrix ID"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Matrix ID:"
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 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:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Already logged in"
|
||||
@@ -1481,13 +1470,6 @@ 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"
|
||||
@@ -2035,18 +2017,18 @@ msgstr "Open a private chat"
|
||||
msgid "Copy link"
|
||||
msgstr "Copy link"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr "Session Verification"
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr "User consent"
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
@@ -2055,17 +2037,17 @@ msgstr ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
"being able to use it. Please click the button below to read them."
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "Open"
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr "Start a chat"
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr "Do you want to start a chat with %1?"
|
||||
@@ -2681,25 +2663,12 @@ msgstr "Join some rooms to get started"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Search in room directory"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Muted room"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Configure room"
|
||||
@@ -2838,63 +2807,56 @@ msgstr "Options"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Open developer tools"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Search in this room"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Search"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Remove room from favourites"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Make room favourite"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Search in this room"
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Search in this room"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Members"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Search user in room"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Invite user to room"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "%1 member"
|
||||
msgstr[1] "%1 members"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "No member count"
|
||||
@@ -3390,6 +3352,12 @@ 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"
|
||||
@@ -3527,6 +3495,12 @@ msgstr "In sidebar"
|
||||
msgid "Color theme"
|
||||
msgstr "Colour theme"
|
||||
|
||||
#: 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"
|
||||
@@ -3682,9 +3656,8 @@ msgid "General settings"
|
||||
msgstr "General settings"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgstr "Close to system tray"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
144
po/es/neochat.po
144
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-01 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-07-30 19:47+0200\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"PO-Revision-Date: 2023-07-30 18:32+0200\n"
|
||||
"Last-Translator: Eloy Cuadra <ecuadra@eloihr.net>\n"
|
||||
"Language-Team: Spanish <kde-l10n-es@kde.org>\n"
|
||||
"Language: es\n"
|
||||
@@ -126,101 +126,95 @@ msgstr "Destino"
|
||||
msgid "Network Error"
|
||||
msgstr "Error de red"
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr "NeoChat"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr "Cliente para Matrix"
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, kde-format
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr "© 2018-2020 Black Hat, 2020-2023 La Comunidad KDE"
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr "Carl Schwan"
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr "Responsable"
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr "Tobias Fella"
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr "James Graham"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr "Black Hat"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr "Autor original de Spectral"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr "Alexey Rusakov"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr "Responsable de Quotient"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr "Eloy Cuadra"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr "ecuadra@eloihr.net"
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr ""
|
||||
"Biblioteca Qt5 para la escritura de clientes multiplataforma para Matrix"
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (compilado con %2)"
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Cliente para el protocolo de comunicaciones Matrix"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:327
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Permite el esquema de URL «matrix:»"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, 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"
|
||||
@@ -1093,7 +1087,7 @@ msgstr "Lat: %1, Lon: %2"
|
||||
msgid "Encrypted Message"
|
||||
msgstr "Mensaje cifrado"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr "%1: %2"
|
||||
@@ -1197,7 +1191,7 @@ msgstr "Definir un subtítulo de adjunto..."
|
||||
msgid "Send a message…"
|
||||
msgstr "Enviar un mensaje..."
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1327,7 +1321,7 @@ msgstr "Pegatinas"
|
||||
msgid "View Location"
|
||||
msgstr "Ver ubicación"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Cerrar"
|
||||
@@ -1358,13 +1352,13 @@ msgstr "Rechazar"
|
||||
msgid "Accept"
|
||||
msgstr "Aceptar"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Ubicaciones"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "No hay ubicaciones compartidas en esta sala."
|
||||
@@ -1391,7 +1385,7 @@ msgid "Url:"
|
||||
msgstr "URL:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1418,18 +1412,13 @@ msgstr "Introduzca su ID de Matrix"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "ID de Matrix:"
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 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:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Ya ha iniciado sesión"
|
||||
@@ -1484,13 +1473,6 @@ 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"
|
||||
@@ -2044,18 +2026,18 @@ msgstr "Abrir un chat privado"
|
||||
msgid "Copy link"
|
||||
msgstr "Copiar enlace"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr "Verificación de la sesión"
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr "Consentimiento del usuario"
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
@@ -2064,17 +2046,17 @@ msgstr ""
|
||||
"Su servidor doméstico necesita que esté de acuerdo con sus términos y "
|
||||
"condiciones antes de que pueda usarlo. Pulse el botón inferior para leerlos."
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "Abrir"
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr "Iniciar un chat"
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr "¿Desea iniciar un chat con %1?"
|
||||
@@ -2690,25 +2672,12 @@ msgstr "Únase a algunas salas para empezar"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Buscar en el directorio de la sala"
|
||||
|
||||
#: 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 vista previa"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:96
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Sala silenciada"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Configurar la sala"
|
||||
@@ -2845,62 +2814,55 @@ msgstr "Opciones"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Abrir las herramientas del desarrollador"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Buscar en esta sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Buscar"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Eliminar sala de las favoritas"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Poner sala en favoritas"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Mostrar ubicaciones de esta sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Miembros"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Buscar usuario en la sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invite a User"
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Invitar a un usuario"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Invitar usuario a la sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "%1 miembro"
|
||||
msgstr[1] "%1 miembros"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Sin contador de miembros"
|
||||
@@ -3410,6 +3372,12 @@ 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"
|
||||
@@ -3547,6 +3515,12 @@ msgstr "En la barra lateral"
|
||||
msgid "Color theme"
|
||||
msgstr "Tema de color"
|
||||
|
||||
#: 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"
|
||||
@@ -3700,8 +3674,8 @@ msgstr "Preferencias generales"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Mostrar en la bandeja del sistema"
|
||||
msgid "Close to system tray"
|
||||
msgstr "Minimizar a la bandeja del sistema"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
#, kde-format
|
||||
|
||||
144
po/eu/neochat.po
144
po/eu/neochat.po
@@ -9,8 +9,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-01 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-07-31 15:09+0200\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+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"
|
||||
"Language: eu\n"
|
||||
@@ -18,7 +18,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Lokalize 23.04.3\n"
|
||||
"X-Generator: Lokalize 23.04.0\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#, kde-format
|
||||
@@ -127,99 +127,94 @@ msgstr "Jomuga"
|
||||
msgid "Network Error"
|
||||
msgstr "Sareko errorea"
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr "NeoChat"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr "Matrix bezeroa"
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, kde-format
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr "© 2018-2020 Black Hat, 2020-2023 KDE komunitatea"
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr "Carl Schwan"
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr "Arduraduna"
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr "Tobias Fella"
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr "James Graham"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr "Black Hat"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr "«Spectral»en Jatorrizko egilea"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr "Alexey Rusakov"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr "«Quotient»en arduraduna"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr "Iñigo Salvador Azurmendi"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr "xalba@ni.eus"
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr "Plataforma anitzeko Matrix bezeroak idazteko Qt5 liburutegi bat"
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (%2 erabiliz eraikia)"
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Matrix, deszentralizatutako komunikazio protokolorako bezeroa"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:327
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "matrix onartzen du: URL eskema"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, 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"
|
||||
@@ -1094,7 +1089,7 @@ msgstr "Lat: %1, Lon: %2"
|
||||
msgid "Encrypted Message"
|
||||
msgstr "Zifratutako mezua"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr "%1: %2"
|
||||
@@ -1198,7 +1193,7 @@ msgstr "Ezarri eranskin baten epigrafea..."
|
||||
msgid "Send a message…"
|
||||
msgstr "Bidali mezua bat..."
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1328,7 +1323,7 @@ msgstr "Eranskailuak"
|
||||
msgid "View Location"
|
||||
msgstr "Ikusi kokalekua"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Itxi"
|
||||
@@ -1359,13 +1354,13 @@ msgstr "Errefusatu"
|
||||
msgid "Accept"
|
||||
msgstr "Onartu"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Kokalekuak"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "Gela honetan ez dago partekatutako kokalekurik."
|
||||
@@ -1392,7 +1387,7 @@ msgid "Url:"
|
||||
msgstr "URL:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1419,18 +1414,13 @@ msgstr "Sartu zure Matrix-eko ID"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Matrix ID:"
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 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:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Dagoeneko saio-hasita"
|
||||
@@ -1485,13 +1475,6 @@ 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"
|
||||
@@ -2035,18 +2018,18 @@ msgstr "Ireki berriketa pribatu bat"
|
||||
msgid "Copy link"
|
||||
msgstr "Kopiatu esteka"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr "Saioa egiaztatzea"
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr "Erabiltzailearen onarpena"
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
@@ -2056,17 +2039,17 @@ msgstr ""
|
||||
"terminoak eta baldintzak onartzea eskatzen dizu. Mesedez, egiozu klik beheko "
|
||||
"botoiari haiek irakurtzeko."
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "Ireki"
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr "Hasi berriketa bat"
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr "%1(r)ekin berriketa bat abiatu nahi duzu?"
|
||||
@@ -2682,24 +2665,12 @@ msgstr "Hasteko, batu gela batzuetara"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Bilatu gelen direktorioan"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Isilarazitako gela"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Konfiguratu gela"
|
||||
@@ -2836,62 +2807,55 @@ msgstr "Aukerak"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Ireki garatzailearen tresnak"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Bilatu gela honetan"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Bilatu"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Kendu gela gogokoetatik"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Egin gela gogoko"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Erakutsi gela honetarako kokalekuak"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Partaideak"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Bilatu erabiltzailea gelan"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invite a User"
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Gonbidatu erabiltzaile bat"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Gonbidatu erabiltzaile bat gelara"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "Partaide %1"
|
||||
msgstr[1] "%1 partaide"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Ez dago partaide kopururik"
|
||||
@@ -3387,6 +3351,12 @@ 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"
|
||||
@@ -3524,6 +3494,12 @@ msgstr "Alboko-barran"
|
||||
msgid "Color theme"
|
||||
msgstr "Kolore-gaia"
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:52
|
||||
#, kde-format
|
||||
msgctxt "@label"
|
||||
msgid "%1, Last activity: %2"
|
||||
msgstr "%1, Azken jarduera: %2"
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:61
|
||||
#, kde-format
|
||||
msgid "New device name"
|
||||
@@ -3677,8 +3653,8 @@ msgstr "Ezarpen orokorrak"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Erakutsi sistemaren erretiluan"
|
||||
msgid "Close to system tray"
|
||||
msgstr "Itxi sistemako erretilura"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
#, kde-format
|
||||
|
||||
143
po/fi/neochat.po
143
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-01 00:46+0000\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+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"
|
||||
@@ -121,99 +121,94 @@ msgstr "Kohde"
|
||||
msgid "Network Error"
|
||||
msgstr "Verkkovirhe"
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr "NeoChat"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr "Matrix-asiakas"
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, kde-format
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr "© 2018–2020 Black Hat, 2020–2023 KDE-yhteisö"
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr "Carl Schwan"
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr "Ylläpitäjä"
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr "Tobias Fella"
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr "James Graham"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr "Black Hat"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr "Spectralin alkuperäinen tekijä"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr "Alexey Rusakov"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr "Quotientin ylläpitäjä"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr "Tommi Nieminen"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr "translator@legisign.org"
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr "Qt5-kirjasto eri alustojen asiakkaiden Matrix-kirjoitukseen"
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (koostettu kirjastolla %2)"
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Matrix-viestintäyhteyskäytäntöasiakas"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:327
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Tukee matrix:-verkko-osoitemallia"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, 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"
|
||||
@@ -1087,7 +1082,7 @@ msgstr "Lev: %1, pit: %2"
|
||||
msgid "Encrypted Message"
|
||||
msgstr "Salattu viesti"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr "%1: %2"
|
||||
@@ -1191,7 +1186,7 @@ msgstr "Lähetä liitteen selite…"
|
||||
msgid "Send a message…"
|
||||
msgstr "Lähetä viesti…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1321,7 +1316,7 @@ msgstr "Tarrat"
|
||||
msgid "View Location"
|
||||
msgstr "Näytä sijainti"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Sulje"
|
||||
@@ -1352,13 +1347,13 @@ msgstr "Hylkää"
|
||||
msgid "Accept"
|
||||
msgstr "Hyväksy"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Sijainnit"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "Tässä huoneessa ei ole jaettuja sijainteja."
|
||||
@@ -1385,7 +1380,7 @@ msgid "Url:"
|
||||
msgstr "Verkko-osoite:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1412,19 +1407,13 @@ msgstr "Anna Matrix-tunnisteesi"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Matrix-tunniste:"
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 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:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Jo kirjautuneena"
|
||||
@@ -1479,13 +1468,6 @@ 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"
|
||||
@@ -2022,18 +2004,18 @@ msgstr "Avaa yksityiskeskustelu"
|
||||
msgid "Copy link"
|
||||
msgstr "Kopioi linkki"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr "Istunnon todennus"
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr "Käyttäjän suostumus"
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
@@ -2042,17 +2024,17 @@ msgstr ""
|
||||
"Kotipalvelimesi vaatii sinua hyväksymään käyttöehdot ennen kuin voit käyttää "
|
||||
"sitä. Lue ehdot napsauttamalla alla olevaa painiketta."
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "Avaa"
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr "Aloita keskustelu"
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr "Haluatko käynnistää keskustelun henkilön %1 kanssa?"
|
||||
@@ -2669,25 +2651,12 @@ msgstr "Aloita liittymällä joihinkin huoneisiin"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Etsi huonehakemistosta"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Vaimennettu huone"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Huoneen asetukset"
|
||||
@@ -2826,62 +2795,55 @@ msgstr "Valinnat"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Avaa kehitystyökalut"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Etsi tästä huoneesta"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Etsi"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Poista huone suosikeista"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Merkitse huone suosikiksi"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Näytä sijainnit tälle huoneelle"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Jäsenet"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Etsi huoneesta käyttäjää"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Kutsu käyttäjä huoneeseen"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "%1 jäsen"
|
||||
msgstr[1] "%1 jäsentä"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Ei jäsenmäärää"
|
||||
@@ -3373,6 +3335,12 @@ 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"
|
||||
@@ -3510,6 +3478,12 @@ msgstr "Sivupaneelissa"
|
||||
msgid "Color theme"
|
||||
msgstr "Väriteema"
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:52
|
||||
#, kde-format
|
||||
msgctxt "@label"
|
||||
msgid "%1, Last activity: %2"
|
||||
msgstr ""
|
||||
|
||||
# Voisi myös olla ”Uuden laitteen nimi”, englanti pahalainen ei tee eroa :P
|
||||
#: src/qml/Settings/DeviceDelegate.qml:61
|
||||
#, kde-format
|
||||
@@ -3666,9 +3640,8 @@ msgid "General settings"
|
||||
msgstr "Yleisasetukset"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgstr "Sulje ilmoitusalueelle"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
143
po/fr/neochat.po
143
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-01 00:46+0000\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+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"
|
||||
@@ -122,100 +122,95 @@ msgstr "Destination"
|
||||
msgid "Network Error"
|
||||
msgstr "Erreur du réseau"
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr "NeoChat"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr "Client « Matrix »"
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, kde-format
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr "© 2018-2020 Black Hat 2020-2023 Communauté de KDE"
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr "Carl Schwan"
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr "Mainteneur"
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr "Tobias Fella"
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr "James Graham"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr "Black Hat"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr "Auteur initial de Spectral"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr "Alexey Rusakov"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr "Mainteneur de Quotient"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr "Xavier Besnard"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr "xavier.besnard@neuf.fr"
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr ""
|
||||
"Une bibliothèque Qt5 pour écrire des clients multi-plate-formes pour Matrix"
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (compilé en regard de %2)"
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Un client pour le protocole de communications Matrix »"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:327
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Prend en charge le thème d'URL « matrix : »"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, 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"
|
||||
@@ -1093,7 +1088,7 @@ msgstr "Lat : %1, Long : %2"
|
||||
msgid "Encrypted Message"
|
||||
msgstr "Message chiffré"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr "%1 : %2"
|
||||
@@ -1197,7 +1192,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:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1327,7 +1322,7 @@ msgstr "Étiquettes auto-collantes"
|
||||
msgid "View Location"
|
||||
msgstr "Afficher un emplacement"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Fermer"
|
||||
@@ -1358,13 +1353,13 @@ msgstr "Rejeter"
|
||||
msgid "Accept"
|
||||
msgstr "Accepter"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Emplacements"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "Il n'y a aucun emplacement partagé dans ce salon."
|
||||
@@ -1391,7 +1386,7 @@ msgid "Url:"
|
||||
msgstr "URL :"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1418,19 +1413,13 @@ msgstr "Saisissez ici votre identifiant Matrix."
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Identifiant Matrix :"
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 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:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Déjà connecté"
|
||||
@@ -1485,13 +1474,6 @@ 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"
|
||||
@@ -2046,18 +2028,18 @@ msgstr "Ouvrir un salon privé"
|
||||
msgid "Copy link"
|
||||
msgstr "Copier un lien"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr "Vérification de la session"
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr "Consentement de l'utilisateur"
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
@@ -2067,17 +2049,17 @@ msgstr ""
|
||||
"avant de pouvoir l'utiliser. Veuillez cliquer sur le bouton ci-dessous pour "
|
||||
"les lire."
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "Ouvrir"
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr "Démarrer une conversation"
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr "Voulez-vous démarrer une discussion avec %1 ?"
|
||||
@@ -2693,25 +2675,12 @@ msgstr "Rejoindre certains salons pour vous lancer."
|
||||
msgid "Search in room directory"
|
||||
msgstr "Rechercher dans le dossier des salons"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Salon en pause"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Configurer un salon"
|
||||
@@ -2850,62 +2819,55 @@ msgstr "Options"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Ouvrir les outils de développement"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Rechercher dans ce salon"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Rechercher"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Supprimer le salon des signets"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Ajouter le salon comme signet"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Afficher des emplacements dans ce salon"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Membres"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Rechercher un utilisateur dans un salon"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Inviter des utilisateurs dans un salon"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "Membre %1"
|
||||
msgstr[1] "%1 membres"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Aucun numéro de membre"
|
||||
@@ -3415,6 +3377,12 @@ 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"
|
||||
@@ -3554,6 +3522,12 @@ msgstr "Dans la barre latérale"
|
||||
msgid "Color theme"
|
||||
msgstr "Thème de couleurs"
|
||||
|
||||
#: 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"
|
||||
@@ -3711,9 +3685,8 @@ msgid "General settings"
|
||||
msgstr "Configuration générale"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgstr "Fermer dans la boîte à miniatures"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
143
po/hu/neochat.po
143
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-01 00:46+0000\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+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"
|
||||
@@ -129,100 +129,95 @@ msgstr "Célhely"
|
||||
msgid "Network Error"
|
||||
msgstr "Hálózati hiba"
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr "NeoChat"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr "Matrix kliens"
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "© 2018-2020 Black Hat, 2020-2022 KDE Community"
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr "© Black Hat, 2018-2020, A KDE közösség, 2020-2022"
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr "Carl Schwan"
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr "Karbantartó"
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr "Tobias Fella"
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr "James Graham"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr "Black Hat"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr "A Spectral eredeti készítője"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr "Alexey Rusakov"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr "A Quotient karbantartója"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr "Kiszel Kristóf, Kovács Áron"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr "kiszel.kristof@gmail.com, aronkvh@gmail.com"
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr "Qt5 könyvtár cross-platform Matrix kliensek létrehozásához"
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (fordítva ezzel: %2)"
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Kliens a matrix kommunikációs protokollhoz"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:327
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Támogatja a 'matrix:' url sémát"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, 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"
|
||||
@@ -1098,7 +1093,7 @@ msgstr "Hossz.: %1, Szél.: %2"
|
||||
msgid "Encrypted Message"
|
||||
msgstr "Titkosított üzenet"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr "%1: %2"
|
||||
@@ -1202,7 +1197,7 @@ msgstr "Csatolmányleírás küldése"
|
||||
msgid "Send a message…"
|
||||
msgstr "Üzenet küldése..."
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1334,7 +1329,7 @@ msgstr "Matricák"
|
||||
msgid "View Location"
|
||||
msgstr "Meghívás Hely"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Bezárás"
|
||||
@@ -1365,14 +1360,14 @@ msgstr "Elutasítás"
|
||||
msgid "Accept"
|
||||
msgstr "Elfogadás"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Notifications"
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Értesítések"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "You are already in this room."
|
||||
msgid "There are no locations shared in this room."
|
||||
@@ -1400,7 +1395,7 @@ msgid "Url:"
|
||||
msgstr "Url:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1427,19 +1422,13 @@ msgstr "Írja be Matrix azonosítóját"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Matrix azonosító:"
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 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:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Már bejelentkezett"
|
||||
@@ -1494,13 +1483,6 @@ 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"
|
||||
@@ -2053,18 +2035,18 @@ msgstr "Egy privát csevegés megnyitása"
|
||||
msgid "Copy link"
|
||||
msgstr "Link másolása"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr "Munkamenet-ellenőrzés"
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr "Felhasználói hozzájárulás"
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
@@ -2073,17 +2055,17 @@ msgstr ""
|
||||
"A kezdőkiszolgálója a használati feltételek elfogadását kéri, mielőtt "
|
||||
"használhatná azt. Kattintson a lenti gombra az elolvasásukhoz."
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "Megnyitás"
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr "Csevegés indítása"
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr "Szeretnél csevegést indítani vele: %1 ?"
|
||||
@@ -2699,25 +2681,12 @@ 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/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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Némított szoba"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Szoba beállítása"
|
||||
@@ -2859,63 +2828,56 @@ msgstr "Beállítások"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Fejlesztői eszközök megnyitása"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Keresés a szobában"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Keresés"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Eltávolítás a kedvencek közül"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Kedvenc"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, 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:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Tagok"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, 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:231
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invite a User"
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Meghívás"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Meghívás a szobába"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "%1 tag"
|
||||
msgstr[1] "%1 tag"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Nincs tagszám"
|
||||
@@ -3418,6 +3380,12 @@ 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"
|
||||
@@ -3556,6 +3524,12 @@ msgstr "Az oldalsávban"
|
||||
msgid "Color theme"
|
||||
msgstr "Színek"
|
||||
|
||||
#: 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"
|
||||
@@ -3726,9 +3700,8 @@ msgid "General settings"
|
||||
msgstr "Általános beállítások"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgstr "Bezárás a tálcára"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
148
po/ia/neochat.po
148
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-01 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-07-27 12:42+0200\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"PO-Revision-Date: 2023-07-27 11:39+0200\n"
|
||||
"Last-Translator: giovanni <g.sora@tiscali.it>\n"
|
||||
"Language-Team: Interlingua <kde-i18n-doc@kde.org>\n"
|
||||
"Language: ia\n"
|
||||
@@ -122,101 +122,96 @@ msgstr "Destination"
|
||||
msgid "Network Error"
|
||||
msgstr "Error de rete"
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr "Neochat"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr "Cliente de Matrix"
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, kde-format
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr "© 2018-2020 Black Hat, 2020 -2023 Communitate de KDE"
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr "Carl Schwan"
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr "Mantenitor"
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr "Tobias Fella"
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr "James Graham"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr "Black Hat"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr "Autor original de Spectral"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr "Alexey Rusakov"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr "Mantenitor de Quotient"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr "Giovanni Sora"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr "g.sora@tiscali.it"
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr ""
|
||||
"Un bibliotheca de Qt5 per scriber clientes de cross-platform (platteformas "
|
||||
"cruciate) per Matrix"
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (construite contra %2)"
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Cliente per le protocollo de cmmmunication de matrice"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:327
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Supporta matrix: url schema"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, 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"
|
||||
@@ -1089,7 +1084,7 @@ msgstr "Lat: %1, Lon: %2"
|
||||
msgid "Encrypted Message"
|
||||
msgstr "Message Cryptate"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr "%1: %2"
|
||||
@@ -1191,7 +1186,7 @@ msgstr ""
|
||||
msgid "Send a message…"
|
||||
msgstr "Invia un message…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1321,7 +1316,7 @@ msgstr "Etiquettas Gummate (Stickers)"
|
||||
msgid "View Location"
|
||||
msgstr "Vide location"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Claude"
|
||||
@@ -1352,13 +1347,13 @@ msgstr "Rejecta"
|
||||
msgid "Accept"
|
||||
msgstr "Accepta"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Locationes"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "Il non ha locationes compartite in iste sala."
|
||||
@@ -1385,7 +1380,7 @@ msgid "Url:"
|
||||
msgstr "Url:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1412,18 +1407,13 @@ msgstr "Inserta tu ID de Matrix"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "ID de Matrix:"
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 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:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Ja accedite"
|
||||
@@ -1478,13 +1468,6 @@ 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"
|
||||
@@ -2004,18 +1987,18 @@ msgstr "Aperi in conversation private"
|
||||
msgid "Copy link"
|
||||
msgstr "Copia Ligamine"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr "Veification de Session"
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr "Consenso de usator"
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
@@ -2025,17 +2008,17 @@ msgstr ""
|
||||
"conditiones ante poter usar lo. Pro favor tu clicca le button a basso per "
|
||||
"leger los."
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "Aperi"
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr "Initia un conversation"
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr "Tu vole initiar un conversation con %1"
|
||||
@@ -2651,25 +2634,12 @@ msgstr "Uni alcun salas per initiar"
|
||||
msgid "Search in room directory"
|
||||
msgstr "cerca in directorio de sala"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Sala Silentiate"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Configura sala"
|
||||
@@ -2806,62 +2776,55 @@ msgstr "Optiones"
|
||||
msgid "Open developer tools"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Cerca in iste sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Cerca"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Remove sala ex favoritos"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Face sala favorite"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Monstra locationes per iste sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Membros"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Cerca usator in sala"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Invita usator a sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "%1 Member"
|
||||
msgstr[1] "%1 Membros"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Necun computo de membro"
|
||||
@@ -3349,6 +3312,12 @@ 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"
|
||||
@@ -3486,6 +3455,12 @@ msgstr "In Barra leteral"
|
||||
msgid "Color theme"
|
||||
msgstr "Thema de color"
|
||||
|
||||
#: 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"
|
||||
@@ -3519,12 +3494,12 @@ msgstr "Dispositivo de clausura de session"
|
||||
#: src/qml/Settings/DevicesPage.qml:28
|
||||
#, kde-format
|
||||
msgid "This Device"
|
||||
msgstr "Iste Dispositivos"
|
||||
msgstr "Iste Dispositivo"
|
||||
|
||||
#: 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
|
||||
@@ -3638,9 +3613,8 @@ msgid "General settings"
|
||||
msgstr "Preferentias General"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgstr "Vicin a tabuliero de systema"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
143
po/id/neochat.po
143
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-01 00:46+0000\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+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"
|
||||
@@ -123,99 +123,94 @@ msgstr "Tujuan"
|
||||
msgid "Network Error"
|
||||
msgstr "Kesalahan Jaringan"
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr "NeoChat"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr "Klien Matrix"
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, kde-format
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr "© 2018-2020 Black Hat, 2020-2023 Komunitas KDE"
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr "Carl Schwan"
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr "Pemelihara"
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr "Tobias Fella"
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr "James Graham"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr "Black Hat"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr "Penulis asli Spectral"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr "Alexey Rusakov"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr "Pemelihara Quotient"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr "Linerly"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr "linerly@protonmail.com"
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr "Sebuah pustaka Qt5 untuk membuat klien lintas platform untuk Matrix"
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (dibangun pada %2)"
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Klien untuk protokol komunikasi Matrix"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:327
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Mendukung skema URL matrix:"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, 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"
|
||||
@@ -1091,7 +1086,7 @@ msgstr "Lintang: %1, Bujur: %2"
|
||||
msgid "Encrypted Message"
|
||||
msgstr "Pesan Terenkripsi"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr "%1: %2"
|
||||
@@ -1195,7 +1190,7 @@ msgstr "Atur takarir lampiran..."
|
||||
msgid "Send a message…"
|
||||
msgstr "Kirim pesan…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1326,7 +1321,7 @@ msgstr "Stiker"
|
||||
msgid "View Location"
|
||||
msgstr "Kirim Lokasi"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Tutup"
|
||||
@@ -1357,14 +1352,14 @@ msgstr "Tolak"
|
||||
msgid "Accept"
|
||||
msgstr "Terima"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Notifications"
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Notifikasi"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "You are already in this room."
|
||||
msgid "There are no locations shared in this room."
|
||||
@@ -1392,7 +1387,7 @@ msgid "Url:"
|
||||
msgstr "URL:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1419,19 +1414,13 @@ msgstr "Masukkan ID Matrix Anda"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "ID Matrix:"
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 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:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Sudah masuk"
|
||||
@@ -1486,13 +1475,6 @@ 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"
|
||||
@@ -2032,18 +2014,18 @@ msgstr "Buka sebuah obrolan privat"
|
||||
msgid "Copy link"
|
||||
msgstr "Salin tautan"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr "Verifikasi Sesi"
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr "Persetujuan pengguna"
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
@@ -2052,17 +2034,17 @@ msgstr ""
|
||||
"Homeserver Anda membutuhkan Anda untuk menerima syarat dan kondisi sebelum "
|
||||
"Anda dapat menggunakannya. Mohon klik tombol di bawah untuk membacanya."
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "Buka"
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr "Mulai sebuah obrolan"
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr "Apakah Anda ingin memulai sebuah obrolan dengan %1?"
|
||||
@@ -2678,25 +2660,12 @@ msgstr "Bergabung ke beberapa ruangan untuk memulai"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Cari di direktori ruangan"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Ruangan dibusukan"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Konfigurasi ruangan"
|
||||
@@ -2835,63 +2804,56 @@ msgstr "Opsi"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Buka alat pengembang"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Cari di ruangan ini"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Cari"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Hilangkan ruangan dari favorit"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Buat ruangan sebagai favorit"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Search in this room"
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Cari di ruangan ini"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Anggota"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Cari pengguna di ruangan"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Undang pengguna ke ruangan"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "%1 anggota"
|
||||
msgstr[1] "%1 Anggota"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Tidak ada hitungan anggota"
|
||||
@@ -3395,6 +3357,12 @@ 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"
|
||||
@@ -3532,6 +3500,12 @@ msgstr "Di bilah samping"
|
||||
msgid "Color theme"
|
||||
msgstr "Tema warna"
|
||||
|
||||
#: 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"
|
||||
@@ -3688,9 +3662,8 @@ msgid "General settings"
|
||||
msgstr "Pengaturan umum"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgstr "Tutup ke baki sistem"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
144
po/ie/neochat.po
144
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-01 00:46+0000\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+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"
|
||||
@@ -128,101 +128,96 @@ msgstr "Inviar un invitation"
|
||||
msgid "Network Error"
|
||||
msgstr "Errore de rete"
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr "NeoChat"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr "Un cliente de Matrix"
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "© 2018-2020 Black Hat, 2020-2022 KDE Community"
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr "© 2018-2020 Black Hat, 2020-2022 li comunité de KDE"
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr "Carl Schwan"
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr "Tobias Fella"
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr "Black Hat"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr "OIS"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr "mistresssilvara@hotmail.com"
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr ""
|
||||
"Un biblioteca usante Qt5 por scrir transplatformal clientes por Matrix."
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Un cliente del protocol de communication Matrix"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:327
|
||||
#, fuzzy, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Ínsupportat schema de URL"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, 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"
|
||||
@@ -1147,7 +1142,7 @@ msgstr ""
|
||||
msgid "Encrypted Message"
|
||||
msgstr "Ciffrat missage"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr "%1: %2"
|
||||
@@ -1251,7 +1246,7 @@ msgstr ""
|
||||
msgid "Send a message…"
|
||||
msgstr "Ne successat inviar un missage D-Bus"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1391,7 +1386,7 @@ msgstr ""
|
||||
msgid "View Location"
|
||||
msgstr "Inviar un invitation"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Cluder"
|
||||
@@ -1422,14 +1417,14 @@ msgstr "Rejecter"
|
||||
msgid "Accept"
|
||||
msgstr "Acceptar"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Notifications"
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Notificationes"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "You are already in this room."
|
||||
msgid "There are no locations shared in this room."
|
||||
@@ -1457,7 +1452,7 @@ msgid "Url:"
|
||||
msgstr "URL:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1484,19 +1479,13 @@ msgstr "Provide vor ID de Matrix"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "ID de Matrix:"
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 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:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr ""
|
||||
@@ -1553,15 +1542,6 @@ 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"
|
||||
@@ -2095,35 +2075,35 @@ msgstr "Aperte un privat conversation"
|
||||
msgid "Copy link"
|
||||
msgstr "Copiar"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr "Verification del session"
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr "Consente del usator"
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
"being able to use it. Please click the button below to read them."
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "Aperter"
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr "Iniciar conversation"
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr "Esque vu vole iniciar un conversation con %1?"
|
||||
@@ -2748,26 +2728,13 @@ msgstr ""
|
||||
msgid "Search in room directory"
|
||||
msgstr "DIRECTORIA"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Muted"
|
||||
msgid "Muted room"
|
||||
msgstr "Assurdat"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, fuzzy, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Configurar"
|
||||
@@ -2911,55 +2878,48 @@ msgstr "Optiones:"
|
||||
msgid "Open developer tools"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, fuzzy, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Saliente Cinnamon"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, fuzzy, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Remover ex li preferat"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, fuzzy, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "chambre"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, fuzzy, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Saliente Cinnamon"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Membres"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, fuzzy, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Saliente Cinnamon"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, fuzzy, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Invitar un usator"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "%1 Member"
|
||||
#| msgid_plural "%1 Members"
|
||||
@@ -2968,7 +2928,7 @@ msgid_plural "%1 members"
|
||||
msgstr[0] "%1 membre"
|
||||
msgstr[1] "%1 membres"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "No Member Count"
|
||||
msgid "No member count"
|
||||
@@ -3482,6 +3442,14 @@ 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"
|
||||
@@ -3625,6 +3593,12 @@ msgstr "In li panel lateral"
|
||||
msgid "Color theme"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:52
|
||||
#, kde-format
|
||||
msgctxt "@label"
|
||||
msgid "%1, Last activity: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:61
|
||||
#, fuzzy, kde-format
|
||||
msgid "New device name"
|
||||
@@ -3791,7 +3765,7 @@ msgstr "General parametres:"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, fuzzy, kde-format
|
||||
msgid "Show in System Tray"
|
||||
msgid "Close to system tray"
|
||||
msgstr "Area de notificationes"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
144
po/it/neochat.po
144
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-01 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-07-28 09:11+0200\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"PO-Revision-Date: 2023-08-08 18:01+0200\n"
|
||||
"Last-Translator: Vincenzo Reale <smart2128vr@gmail.com>\n"
|
||||
"Language-Team: Italian <kde-i18n-it@kde.org>\n"
|
||||
"Language: it\n"
|
||||
@@ -122,99 +122,94 @@ msgstr "Destinazione"
|
||||
msgid "Network Error"
|
||||
msgstr "Errore di rete"
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr "NeoChat"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr "Client Matrix"
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, kde-format
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr "© 2018-2020 Black Hat, 2020-2023 La comunità KDE"
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr "Carl Schwan"
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr "Responsabile"
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr "Tobias Fella"
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr "James Graham"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr "Black Hat"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr "Autore originale di Spectral"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr "Alexey Rusakov"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr "Responsabile di Quotient"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr "Vincenzo Reale"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr "smart2128vr@gmail.com"
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr "Una libreria Qt5 per scrivere client multipiattaforma per Matrix"
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (compilato con %2)"
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Client per il protocollo di comunicazione matrix"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:327
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Supporta schema URL matrix:"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, 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"
|
||||
@@ -1090,7 +1085,7 @@ msgstr "Lat: %1, Lon: %2"
|
||||
msgid "Encrypted Message"
|
||||
msgstr "Messaggio cifrato"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr "%1: %2"
|
||||
@@ -1194,7 +1189,7 @@ msgstr "Imposta una didascalia per l'allegato..."
|
||||
msgid "Send a message…"
|
||||
msgstr "Invia un messaggio…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1324,7 +1319,7 @@ msgstr "Adesivi"
|
||||
msgid "View Location"
|
||||
msgstr "Visualizza posizione"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Chiudi"
|
||||
@@ -1355,13 +1350,13 @@ msgstr "Rifiuta"
|
||||
msgid "Accept"
|
||||
msgstr "Accetta"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Posizioni"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "Non ci sono posizioni condivise in questa stanza."
|
||||
@@ -1388,7 +1383,7 @@ msgid "Url:"
|
||||
msgstr "Url:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1415,18 +1410,13 @@ msgstr "Digita il tuo ID Matrix"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "ID Matrix:"
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 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:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Accesso già eseguito"
|
||||
@@ -1481,13 +1471,6 @@ 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"
|
||||
@@ -2044,18 +2027,18 @@ msgstr "Apri una chat privata"
|
||||
msgid "Copy link"
|
||||
msgstr "Copia collegamento"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr "Verifica della sessione"
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr "Consenso dell'utente"
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
@@ -2064,17 +2047,17 @@ msgstr ""
|
||||
"Il tuo server ti richiede di accettare i suoi termini e le sue condizioni "
|
||||
"prima di poterlo utilizzare. Fai clic sul pulsante in basso per leggerli."
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "Apri"
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr "Avvia una chat"
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr "Vuoi iniziare una chat con %1?"
|
||||
@@ -2690,25 +2673,12 @@ msgstr "Entra in qualche stanza per iniziare"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Cerca nella cartella delle stanze"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Stanza silenziata"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Configura la stanza"
|
||||
@@ -2845,62 +2815,55 @@ msgstr "Opzioni"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Apri gli strumenti per sviluppatori"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Cerca in questa stanza"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Cerca"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Rimuovi la stanza dai preferiti"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Rendi preferita la stanza"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Mostra le posizioni per questa stanza"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Membri"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Cerca l'utente nella stanza"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Invita utente alla stanza"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "%1 membro"
|
||||
msgstr[1] "%1 membri"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Nessun conteggio dei membri"
|
||||
@@ -3412,6 +3375,12 @@ 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"
|
||||
@@ -3549,6 +3518,12 @@ msgstr "Nella barra laterale"
|
||||
msgid "Color theme"
|
||||
msgstr "Tema di colori"
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:52
|
||||
#, kde-format
|
||||
msgctxt "@label"
|
||||
msgid "%1, Last activity: %2"
|
||||
msgstr "%1, ultima attività: %2"
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:61
|
||||
#, kde-format
|
||||
msgid "New device name"
|
||||
@@ -3703,9 +3678,8 @@ msgid "General settings"
|
||||
msgstr "Impostazioni generali"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgstr "Chiudi nel vassoio di sistema"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
137
po/ja/neochat.po
137
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-01 00:46+0000\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+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"
|
||||
@@ -118,97 +118,92 @@ msgstr ""
|
||||
msgid "Network Error"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, kde-format
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr ""
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
@@ -1078,7 +1073,7 @@ msgstr ""
|
||||
msgid "Encrypted Message"
|
||||
msgstr ""
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr ""
|
||||
@@ -1180,7 +1175,7 @@ msgstr ""
|
||||
msgid "Send a message…"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1310,7 +1305,7 @@ msgstr ""
|
||||
msgid "View Location"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
@@ -1341,13 +1336,13 @@ msgstr ""
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr ""
|
||||
@@ -1374,7 +1369,7 @@ msgid "Url:"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1401,18 +1396,13 @@ msgstr ""
|
||||
msgid "Matrix ID:"
|
||||
msgstr ""
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr ""
|
||||
@@ -1467,13 +1457,6 @@ 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"
|
||||
@@ -1989,35 +1972,35 @@ msgstr ""
|
||||
msgid "Copy link"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
"being able to use it. Please click the button below to read them."
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr ""
|
||||
@@ -2631,24 +2614,12 @@ msgstr ""
|
||||
msgid "Search in room directory"
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr ""
|
||||
@@ -2785,60 +2756,54 @@ msgstr ""
|
||||
msgid "Open developer tools"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr ""
|
||||
@@ -3326,6 +3291,12 @@ 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"
|
||||
@@ -3463,6 +3434,12 @@ msgstr ""
|
||||
msgid "Color theme"
|
||||
msgstr ""
|
||||
|
||||
#: 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"
|
||||
@@ -3616,7 +3593,7 @@ msgstr ""
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Show in System Tray"
|
||||
msgid "Close to system tray"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
142
po/ka/neochat.po
142
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-01 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-07-31 06:32+0200\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"PO-Revision-Date: 2023-08-08 06:30+0200\n"
|
||||
"Last-Translator: Temuri Doghonadze <temuri.doghonadze@gmail.com>\n"
|
||||
"Language-Team: Georgian <kde-i18n-doc@kde.org>\n"
|
||||
"Language: ka\n"
|
||||
@@ -122,100 +122,95 @@ msgstr "დანიშნულება"
|
||||
msgid "Network Error"
|
||||
msgstr "ქსელის შეცდომა"
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr "NeoChat"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr "Matrix -ის კლიენტი"
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, kde-format
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr ""
|
||||
"© 2018-2020 Black Hat, 2020-2023 KDE -ის საზოგადოება, ყველა უფლება დაცულია"
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr "Carl Schwan"
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr "წამყვანი პროგრამისტი"
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr "Tobias Fella"
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr "ჯეიმს გრეჰემი"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr "Black Hat"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr "Spectral- ის ორიგინალური ავტორი"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr "ალექსეი რუსაკოვი"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr "კოვოტიენტის პროგრამისტი"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr "Temuri Doghonadze"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr "Temuri.doghonadze@gmail.com"
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr "Qt5 ბიბლიოთეკა Matrix-ისთვის კლიენტების დასაწერად"
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (აგებულია %2-ით)"
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "კლიენტი Matrix-ის კომუნიკაციის პროტოკოლისთვის"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:327
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Matrix-ის მხარდჭერა: ბმული სქემა"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, 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"
|
||||
@@ -1088,7 +1083,7 @@ msgstr "გან: %1, გრძ: %2"
|
||||
msgid "Encrypted Message"
|
||||
msgstr "დაშიფრული შეტყობინება"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr "%1: %2"
|
||||
@@ -1192,7 +1187,7 @@ msgstr "მიმაგრებული ფაილების წარწ
|
||||
msgid "Send a message…"
|
||||
msgstr "შეტყობინების გაგზავნა…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1322,7 +1317,7 @@ msgstr "სტიკერები"
|
||||
msgid "View Location"
|
||||
msgstr "მდებარეობის ნახვა"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "დახურვა"
|
||||
@@ -1353,13 +1348,13 @@ msgstr "უარყოფა"
|
||||
msgid "Accept"
|
||||
msgstr "დასტური"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "მდებარეობები"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "ამ ოთახში მდებარეობები გაზიარებული არაა."
|
||||
@@ -1386,7 +1381,7 @@ msgid "Url:"
|
||||
msgstr "Url:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1413,18 +1408,13 @@ msgstr "შეიყვანეთ თქვენი Matrix ID"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Matrix ID:"
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "ჩატვირთვა…"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "უკვე შესულია"
|
||||
@@ -1479,13 +1469,6 @@ 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"
|
||||
@@ -2017,18 +2000,18 @@ msgstr "პირადი საუბრის გახსნა"
|
||||
msgid "Copy link"
|
||||
msgstr "ბმულის კოპირება"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr "სესიის გადამოწმება"
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr "მომხმარებლის თანხმობა"
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
@@ -2037,17 +2020,17 @@ msgstr ""
|
||||
"თქვენი სახლის სერვერის გამოყენებამდე საჭიროა მის პირობებს და ლიცენზიას "
|
||||
"დაეთანხმოთ. მის წასაკითხად ქვემოთ ღილაკს დააჭირეთ."
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "გახსნა"
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr "საუბრის დაწყება"
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr "გნებავთ დაიწყოთ საუბარი %1-სთან?"
|
||||
@@ -2663,24 +2646,12 @@ msgstr "დასაწყისისთვის შეუერთდით
|
||||
msgid "Search in room directory"
|
||||
msgstr "ოთახების დირექტორიაში ძებნა"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "დადუმებული ოთახი"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "ოთახის მორგება"
|
||||
@@ -2817,62 +2788,55 @@ msgstr "პარამეტრები"
|
||||
msgid "Open developer tools"
|
||||
msgstr "პროგრამისტის ხელსაწყოების გახსნა"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "ამ ოთახში ძებნა"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "ძებნა"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "ოთახის რჩეულებიდან წაშლა"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "ოთახის რჩეულად მონიშვნა"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "ამ ოთახისთვის მდებარეობების ჩვენება"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "წევრები"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "ოთახში მომხმარებლის ძებნა"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "მომხმარებლის ოთახში მოწვევა"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "%1 წევრი"
|
||||
msgstr[1] "%1 წევრი"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "წევრების რაოდენობის გარეშე"
|
||||
@@ -3371,6 +3335,12 @@ 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"
|
||||
@@ -3508,6 +3478,12 @@ msgstr "გვერდით ზოლში"
|
||||
msgid "Color theme"
|
||||
msgstr "ფერის თემა"
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:52
|
||||
#, kde-format
|
||||
msgctxt "@label"
|
||||
msgid "%1, Last activity: %2"
|
||||
msgstr "%1, ბოლო აქტივობა: %2"
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:61
|
||||
#, kde-format
|
||||
msgid "New device name"
|
||||
@@ -3662,8 +3638,8 @@ msgstr "ზოგადი პარამეტრები"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Show in System Tray"
|
||||
msgstr "სისტემის კუთხეში ჩვენება"
|
||||
msgid "Close to system tray"
|
||||
msgstr "სისტემური პანელის ხატულაში ჩახურვა"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
#, kde-format
|
||||
|
||||
142
po/ko/neochat.po
142
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-01 00:46+0000\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+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"
|
||||
@@ -121,99 +121,94 @@ msgstr "대상"
|
||||
msgid "Network Error"
|
||||
msgstr "네트워크 오류"
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr "NeoChat"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr "Matrix 클라이언트"
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, kde-format
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr "Carl Schwan"
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr "관리자"
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr "Tobias Fella"
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr "James Graham"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr "Black Hat"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr "Spectral의 원 작성자"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr "Alexey Rusakov"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr "Quotient 관리자"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr "박신조"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr "kde@peremen.name"
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr "크로스 플랫폼 Matrix 클라이언트를 작성할 수 있는 Qt5 라이브러리"
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1(%2(으)로 빌드됨)"
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Matrix 대화 프로토콜 클라이언트"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:327
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "matrix: URL 형식 지원"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, 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"
|
||||
@@ -1151,7 +1146,7 @@ msgstr ""
|
||||
msgid "Encrypted Message"
|
||||
msgstr "메시지 편집"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr "%1: %2"
|
||||
@@ -1256,7 +1251,7 @@ msgstr ""
|
||||
msgid "Send a message…"
|
||||
msgstr "메시지 보내기…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Cancel"
|
||||
msgctxt "@action:button"
|
||||
@@ -1404,7 +1399,7 @@ msgstr "스티커"
|
||||
msgid "View Location"
|
||||
msgstr "초대 보내기"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "닫기"
|
||||
@@ -1435,13 +1430,13 @@ msgstr "거부"
|
||||
msgid "Accept"
|
||||
msgstr "수락"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "위치"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Open NeoChat in this room"
|
||||
msgid "There are no locations shared in this room."
|
||||
@@ -1469,7 +1464,7 @@ msgid "Url:"
|
||||
msgstr "URL:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1496,18 +1491,13 @@ msgstr "Matrix ID 입력"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Matrix ID:"
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "불러오는 중…"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr ""
|
||||
@@ -1562,13 +1552,6 @@ 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"
|
||||
@@ -2103,19 +2086,19 @@ msgstr "개인 대화 열기"
|
||||
msgid "Copy link"
|
||||
msgstr "링크 복사"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Show notifications"
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr "알림 표시"
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr "사용자 동의"
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
@@ -2124,17 +2107,17 @@ msgstr ""
|
||||
"홈 서버를 사용하기 전에 사용 조건에 동의해야 합니다. 아래 단추를 클릭하여 읽"
|
||||
"으십시오."
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "열기"
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr "대화 시작"
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr "%1 님과 대화를 시작하시겠습니까?"
|
||||
@@ -2769,26 +2752,13 @@ msgstr "시작하려면 대화방에 입장하십시오"
|
||||
msgid "Search in room directory"
|
||||
msgstr "대화방 디렉터리에서 검색"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Muted"
|
||||
msgid "Muted room"
|
||||
msgstr "음소거됨"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "대화방 설정"
|
||||
@@ -2934,59 +2904,52 @@ msgstr "옵션:"
|
||||
msgid "Open developer tools"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Open NeoChat in this room"
|
||||
msgid "Search in this room"
|
||||
msgstr "이 대화방에서 NeoChat 열기"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "책갈피에서 대화방 삭제"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "책갈피에 대화방 추가"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Open NeoChat in this room"
|
||||
msgid "Show locations for this room"
|
||||
msgstr "이 대화방에서 NeoChat 열기"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "구성원"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Open NeoChat in this room"
|
||||
msgid "Search user in room"
|
||||
msgstr "이 대화방에서 NeoChat 열기"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "%1 invited you to a room"
|
||||
msgid "Invite user to room"
|
||||
msgstr "%1 님이 대화방에 초대함"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "%1 Member"
|
||||
#| msgid_plural "%1 Members"
|
||||
@@ -2994,7 +2957,7 @@ msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "구성원 %1명"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "No Member Count"
|
||||
msgid "No member count"
|
||||
@@ -3520,6 +3483,12 @@ 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"
|
||||
@@ -3664,6 +3633,12 @@ msgstr "사이드바에서"
|
||||
msgid "Color theme"
|
||||
msgstr "색 테마"
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:52
|
||||
#, kde-format
|
||||
msgctxt "@label"
|
||||
msgid "%1, Last activity: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:61
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Edit device name"
|
||||
@@ -3835,9 +3810,8 @@ msgid "General settings"
|
||||
msgstr "일반 설정"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgstr "시스템 트레이로 닫기"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
137
po/lt/neochat.po
137
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-01 00:46+0000\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"PO-Revision-Date: 2023-02-25 01:00+0000\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
@@ -122,97 +122,92 @@ msgstr ""
|
||||
msgid "Network Error"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, kde-format
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr ""
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
@@ -1093,7 +1088,7 @@ msgstr ""
|
||||
msgid "Encrypted Message"
|
||||
msgstr ""
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr ""
|
||||
@@ -1195,7 +1190,7 @@ msgstr ""
|
||||
msgid "Send a message…"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1325,7 +1320,7 @@ msgstr ""
|
||||
msgid "View Location"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
@@ -1356,13 +1351,13 @@ msgstr ""
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr ""
|
||||
@@ -1389,7 +1384,7 @@ msgid "Url:"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1416,18 +1411,13 @@ msgstr ""
|
||||
msgid "Matrix ID:"
|
||||
msgstr ""
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr ""
|
||||
@@ -1482,13 +1472,6 @@ 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"
|
||||
@@ -2008,35 +1991,35 @@ msgstr ""
|
||||
msgid "Copy link"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
"being able to use it. Please click the button below to read them."
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr ""
|
||||
@@ -2650,24 +2633,12 @@ msgstr ""
|
||||
msgid "Search in room directory"
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr ""
|
||||
@@ -2804,54 +2775,48 @@ msgstr ""
|
||||
msgid "Open developer tools"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
@@ -2860,7 +2825,7 @@ msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
msgstr[3] ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr ""
|
||||
@@ -3348,6 +3313,12 @@ 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"
|
||||
@@ -3485,6 +3456,12 @@ msgstr ""
|
||||
msgid "Color theme"
|
||||
msgstr ""
|
||||
|
||||
#: 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"
|
||||
@@ -3638,7 +3615,7 @@ msgstr ""
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Show in System Tray"
|
||||
msgid "Close to system tray"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
144
po/nl/neochat.po
144
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-01 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-07-31 16:01+0200\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"PO-Revision-Date: 2023-08-06 07:57+0200\n"
|
||||
"Last-Translator: Freek de Kruijf <freekdekruijf@kde.nl>\n"
|
||||
"Language-Team: \n"
|
||||
"Language-Team: Dutch <kde-i18n-nl@kde.org>\n"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -122,99 +122,94 @@ msgstr "Bestemming"
|
||||
msgid "Network Error"
|
||||
msgstr "Netwerkfout"
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr "Neochat"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr "Matrix-client"
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, kde-format
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr "© 2018-2020 Black Hat, 2020-2023 KDE-gemeenschap"
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr "Carl Schwan"
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr "Onderhouder"
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr "Tobias Fella"
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr "James Graham"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr "Black Hat"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr "Oorspronkelijke auteur van Spectral"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr "Alexey Rusakov"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr "Onderhouder van Quotient"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr "Freek de Kruijf - 2020 t/m 2022"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr "freekdekruijf@kde.nl"
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr "Een Qt5 bibliotheek om cross-platform clients voor Matrix te schrijven"
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (gebouwd tegen %2)"
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Client voor het matrix communicatieprotocol"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:327
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Ondersteunt matrix: url schema"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, 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"
|
||||
@@ -1087,7 +1082,7 @@ msgstr "Bte: %1, Lte: %2"
|
||||
msgid "Encrypted Message"
|
||||
msgstr "Versleuteld bericht"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr "%1: %2"
|
||||
@@ -1191,7 +1186,7 @@ msgstr "Stel een opschrift voor de bijlage in..."
|
||||
msgid "Send a message…"
|
||||
msgstr "Een bericht verzenden…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1321,7 +1316,7 @@ msgstr "Stickers"
|
||||
msgid "View Location"
|
||||
msgstr "Locatie bekijken"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Sluiten"
|
||||
@@ -1352,13 +1347,13 @@ msgstr "Afwijzen"
|
||||
msgid "Accept"
|
||||
msgstr "Accepteren"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Locaties"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "Er worden geen locaties in deze room gedeeld."
|
||||
@@ -1385,7 +1380,7 @@ msgid "Url:"
|
||||
msgstr "Url:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1412,18 +1407,13 @@ msgstr "Uw Matrix-id invoeren"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Matrix-ID:"
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 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:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Al aangemeld"
|
||||
@@ -1478,13 +1468,6 @@ 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"
|
||||
@@ -2039,18 +2022,18 @@ msgstr "Een privé chat openen"
|
||||
msgid "Copy link"
|
||||
msgstr "Koppeling kopiëren"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr "Verificatie van sessie"
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr "Toestemming van gebruiker"
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
@@ -2059,17 +2042,17 @@ msgstr ""
|
||||
"Uw homeserver vereist dat u met deze termen en voorwaarden instemt alvorens "
|
||||
"u deze kunt gebruiken. Klik op de ondersteunde knop om ze te lezen."
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "Openen"
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr "Een chat starten"
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr "Wilt u een chat beginnen met %1?"
|
||||
@@ -2685,24 +2668,12 @@ msgstr "Doe mee met sommige rooms om te beginnen"
|
||||
msgid "Search in room directory"
|
||||
msgstr "In map van room zoeken"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Gedempte room"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Room configureren"
|
||||
@@ -2839,62 +2810,55 @@ msgstr "Opties"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Hulpmiddelen voor ontwikkelaars openen"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "In deze room zoeken"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Zoeken"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Room uit favorieten verwijderen"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Room als favoriet instellen"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Locaties in deze room tonen"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Leden"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Gebruiker in room zoeken"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invite a User"
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Een gebruiker uitnodigen"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Gebruiker uitnodigen in room"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "%1 lid"
|
||||
msgstr[1] "%1 leden"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Geen aantal leden"
|
||||
@@ -3398,6 +3362,12 @@ 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"
|
||||
@@ -3535,6 +3505,12 @@ msgstr "In zijbalk"
|
||||
msgid "Color theme"
|
||||
msgstr "Kleurenthema"
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:52
|
||||
#, kde-format
|
||||
msgctxt "@label"
|
||||
msgid "%1, Last activity: %2"
|
||||
msgstr "%1, laatste activiteit: %2"
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:61
|
||||
#, kde-format
|
||||
msgid "New device name"
|
||||
@@ -3688,8 +3664,8 @@ msgstr "Algemene instellingen"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Show in System Tray"
|
||||
msgstr "In systeemvak tonen"
|
||||
msgid "Close to system tray"
|
||||
msgstr "Naar systeemvak sluiten"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
#, kde-format
|
||||
|
||||
121
po/nn/neochat.po
121
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-07-31 00:47+0000\n"
|
||||
"PO-Revision-Date: 2023-07-31 21:13+0200\n"
|
||||
"POT-Creation-Date: 2023-08-06 02:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-28 20:45+0200\n"
|
||||
"Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n"
|
||||
"Language-Team: Norwegian Nynorsk <l10n-no@lister.huftis.org>\n"
|
||||
"Language: nn\n"
|
||||
@@ -124,99 +124,94 @@ msgstr "Mål"
|
||||
msgid "Network Error"
|
||||
msgstr "Nettverksfeil"
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr "NeoChat"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr "Matrix-klient"
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, kde-format
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr "© 2018–2020 Black Hat, © 2020–2023 KDE-fellesskapet"
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr "Carl Schwan"
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr "Vedlikehaldar"
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr "Tobias Fella"
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr "James Graham"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr "Black Hat"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr "Opphavleg utviklar av Spectral"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr "Alexey Rusakov"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr "Vedlikehaldar av Quotient"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr "Karl Ove Hufthammer"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr "karl@huftis.org"
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr "Eit Qt5-bibliotek for utvikling av kryssplattform-klientar for Matrix"
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (bygd mot %2)"
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Lynmeldingsklient for Matrix-protokollen"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:327
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Støttar «matrix:»-adresser"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, 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"
|
||||
@@ -1095,7 +1090,7 @@ msgstr "Breiddegr.: %1 – lengdegr.: %2"
|
||||
msgid "Encrypted Message"
|
||||
msgstr "Kryptert melding"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr "%1: %2"
|
||||
@@ -1200,7 +1195,7 @@ msgstr "Vel vedleggstekst …"
|
||||
msgid "Send a message…"
|
||||
msgstr "Send ei melding …"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1394,7 +1389,7 @@ msgid "Url:"
|
||||
msgstr "Adresse:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1421,18 +1416,13 @@ msgstr "Skriv inn Matrix-ID"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Matrix-ID:"
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 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:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Allereie innlogga"
|
||||
@@ -1487,13 +1477,6 @@ 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"
|
||||
@@ -2029,18 +2012,18 @@ msgstr "Start privat prat"
|
||||
msgid "Copy link"
|
||||
msgstr "Kopier lenkje"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr "Øktstadfesting"
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr "Brukarsamtykke"
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
@@ -2049,17 +2032,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:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "Opna"
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr "Start prat"
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr "Vil du starta ein prat med %1?"
|
||||
@@ -2125,7 +2108,7 @@ msgstr "Set opp NeoChat …"
|
||||
|
||||
#: src/qml/Menu/GlobalMenu.qml:28 src/qml/Page/RoomList/AccountMenu.qml:33
|
||||
#: src/qml/Page/RoomList/AccountMenu.qml:43
|
||||
#: src/qml/Page/RoomList/UserInfo.qml:225
|
||||
#: src/qml/Page/RoomList/UserInfo.qml:235
|
||||
#, kde-format
|
||||
msgid "Configure"
|
||||
msgstr "Set opp"
|
||||
@@ -2435,7 +2418,7 @@ msgstr "Inviter ein brukar"
|
||||
msgid "Find a user..."
|
||||
msgstr "Finn brukar …"
|
||||
|
||||
#: src/qml/Page/InviteUserPage.qml:44 src/qml/Page/RoomList/UserInfo.qml:214
|
||||
#: src/qml/Page/InviteUserPage.qml:44 src/qml/Page/RoomList/UserInfo.qml:224
|
||||
#, kde-format
|
||||
msgid "Add"
|
||||
msgstr "Legg til"
|
||||
@@ -2527,13 +2510,13 @@ msgid "Joined"
|
||||
msgstr "Vart med"
|
||||
|
||||
#: src/qml/Page/RoomList/AccountMenu.qml:18
|
||||
#: src/qml/Page/RoomList/UserInfo.qml:159
|
||||
#: src/qml/Page/RoomList/UserInfo.qml:175
|
||||
#, kde-format
|
||||
msgid "Edit this account"
|
||||
msgstr "Rediger kontoen"
|
||||
|
||||
#: src/qml/Page/RoomList/AccountMenu.qml:23
|
||||
#: src/qml/Page/RoomList/UserInfo.qml:164 src/qml/Settings/AccountsPage.qml:38
|
||||
#: src/qml/Page/RoomList/UserInfo.qml:169 src/qml/Settings/AccountsPage.qml:38
|
||||
#, kde-format
|
||||
msgid "Account editor"
|
||||
msgstr "Kontoredigering"
|
||||
@@ -2676,24 +2659,12 @@ msgstr "Start ved å verta med i nokre rom"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Søk i romkatalogen"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:94
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Dempa rom"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:126
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Set opp rommet"
|
||||
@@ -2744,12 +2715,12 @@ msgctxt "@title:window"
|
||||
msgid "Login"
|
||||
msgstr "Innlogging"
|
||||
|
||||
#: src/qml/Page/RoomList/UserInfo.qml:198
|
||||
#: src/qml/Page/RoomList/UserInfo.qml:208
|
||||
#, kde-format
|
||||
msgid "Switch User"
|
||||
msgstr "Byt brukar"
|
||||
|
||||
#: src/qml/Page/RoomList/UserInfo.qml:226
|
||||
#: src/qml/Page/RoomList/UserInfo.qml:236
|
||||
#, kde-format
|
||||
msgid "Open Settings"
|
||||
msgstr "Opna innstillingar"
|
||||
@@ -3385,6 +3356,12 @@ 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"
|
||||
@@ -3522,6 +3499,12 @@ 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"
|
||||
@@ -3675,8 +3658,8 @@ msgstr "Generelle innstillingar"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Vis i systemtrauet"
|
||||
msgid "Close to system tray"
|
||||
msgstr "Minimer til systemtrauet"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
#, kde-format
|
||||
|
||||
147
po/pa/neochat.po
147
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-01 00:46+0000\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+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"
|
||||
@@ -131,98 +131,93 @@ msgstr "ਸੱਦਾ ਭੇਜੋ"
|
||||
msgid "Network Error"
|
||||
msgstr "ਨੈੱਟਵਰਕ ਗ਼ਲਤੀ"
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr "ਨਿਓ-ਚੈਟ"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr "ਮੈਟਰਿਕਸ ਕਲਾਈਂਟ"
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "© 2018-2020 Black Hat, 2020-2021 KDE Community"
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr "© 2018-2020 Black Hat, 2020-2021 KDE Community"
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr "ਕਾਰਲ ਸਚਵਾਨ"
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr "ਟੋਬਿਸ ਫੇਲਾ"
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr "Black Hat"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr "ਅ.ਸ.ਆਲਮ ੨੦੨੧"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr "alam.yellow@gmail.com"
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr ""
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
@@ -1178,7 +1173,7 @@ msgstr ""
|
||||
msgid "Encrypted Message"
|
||||
msgstr "ਸੁਨੇਹੇ ਨੂੰ ਸੋਧੋ"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr "%1: %2"
|
||||
@@ -1285,7 +1280,7 @@ msgstr ""
|
||||
msgid "Send a message…"
|
||||
msgstr "ਸੁਨੇਹਾ ਭੇਜੋ"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Cancel"
|
||||
msgctxt "@action:button"
|
||||
@@ -1432,7 +1427,7 @@ msgstr ""
|
||||
msgid "View Location"
|
||||
msgstr "ਸੱਦਾ ਭੇਜੋ"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "ਬੰਦ ਕਰੋ"
|
||||
@@ -1463,14 +1458,14 @@ msgstr "ਰੱਦ ਕਰੋ"
|
||||
msgid "Accept"
|
||||
msgstr "ਮਨਜ਼ੂਰ ਕਰੋ"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Show notifications"
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "ਨੋਟੀਫਿਕੇਸ਼ਨ ਵੇਖਾਓ"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Open NeoChat in this room"
|
||||
msgid "There are no locations shared in this room."
|
||||
@@ -1498,7 +1493,7 @@ msgid "Url:"
|
||||
msgstr "URL:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1525,20 +1520,14 @@ msgstr "ਆਪਣਾ ਮੈਟਰਿਕਸ ID ਦਿਓ"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "ਮੈਟਰਿਕਸ ID:"
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 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:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr ""
|
||||
@@ -1593,15 +1582,6 @@ 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"
|
||||
@@ -2136,36 +2116,36 @@ msgstr "ਪ੍ਰਾਈਵੇਟ ਚੈਟ ਵਿੱਚ ਖੋਲ੍ਹੋ"
|
||||
msgid "Copy link"
|
||||
msgstr "ਕਾਪੀ ਕਰੋ"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Show notifications"
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr "ਨੋਟੀਫਿਕੇਸ਼ਨ ਵੇਖਾਓ"
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr "ਵਰਤੋਂਕਾਰ ਸਹਿਮਤੀ"
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
"being able to use it. Please click the button below to read them."
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "ਖੋਲ੍ਹੋ"
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr "ਗੱਲਬਾਤ ਸ਼ੁਰੂ ਕਰੋ"
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr "ਕੀ ਤੁਸੀਂ %1 ਨਾਲ ਗੱਲਬਾਤ ਕਰਨੀ ਚਾਹੁੰਦੇ ਹੋ?"
|
||||
@@ -2803,26 +2783,13 @@ msgstr "ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਕੁਝ ਰੂਮ ਜੁਆਇੰਨ ਕ
|
||||
msgid "Search in room directory"
|
||||
msgstr "ਰੂਮ ਦੀ ਡਾਇਰੈਕਟਰੀ ਵਿੱਚ ਖੋਜੋ"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Muted"
|
||||
msgid "Muted room"
|
||||
msgstr "ਮੌਨ ਕੀਤਾ"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "ਰੂਮ ਦੀ ਸੰਰਚਨਾ"
|
||||
@@ -2970,59 +2937,52 @@ msgstr "ਚੋਣਾਂ:"
|
||||
msgid "Open developer tools"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Open NeoChat in this room"
|
||||
msgid "Search in this room"
|
||||
msgstr "ਇਸ ਰੂਮ ਵਿੱਚ ਨਿਓ-ਚੈਟ ਖੋਲ੍ਹੋ"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "ਪਸੰਦ ਵਿੱਚੋਂ ਰੂਮ ਹਟਾਓ"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "ਰੂਮ ਪਸੰਦੀਦਾ ਬਣਾਓ"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Open NeoChat in this room"
|
||||
msgid "Show locations for this room"
|
||||
msgstr "ਇਸ ਰੂਮ ਵਿੱਚ ਨਿਓ-ਚੈਟ ਖੋਲ੍ਹੋ"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "ਮੈਂਬਰ"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Open NeoChat in this room"
|
||||
msgid "Search user in room"
|
||||
msgstr "ਇਸ ਰੂਮ ਵਿੱਚ ਨਿਓ-ਚੈਟ ਖੋਲ੍ਹੋ"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "%1 invited you to a room"
|
||||
msgid "Invite user to room"
|
||||
msgstr "%1 ਨੇ ਤੁਹਾਨੂੰ ਰੂਮ ਲਈ ਸੱਦਾ ਦਿੱਤਾ"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "%1 Member"
|
||||
#| msgid_plural "%1 Members"
|
||||
@@ -3031,7 +2991,7 @@ msgid_plural "%1 members"
|
||||
msgstr[0] "%1 ਮੈਂਬਰ"
|
||||
msgstr[1] "%1 ਮੈਂਬਰ"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "No Member Count"
|
||||
msgid "No member count"
|
||||
@@ -3556,6 +3516,14 @@ 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"
|
||||
@@ -3702,6 +3670,12 @@ msgstr "ਬਾਹੀ ਵਿੱਚ"
|
||||
msgid "Color theme"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:52
|
||||
#, kde-format
|
||||
msgctxt "@label"
|
||||
msgid "%1, Last activity: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:61
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Edit device name"
|
||||
@@ -3873,9 +3847,8 @@ msgid "General settings"
|
||||
msgstr "ਆਮ ਸੈਟਿੰਗਾਂ:"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgstr "ਸਿਸਟਮ ਟਰੇ ਵਿੱਚ ਭੇਜੋ"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
143
po/pl/neochat.po
143
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-01 00:46+0000\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+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"
|
||||
@@ -125,100 +125,95 @@ msgstr "Miejsce docelowe"
|
||||
msgid "Network Error"
|
||||
msgstr "Błąd sieci"
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr "NeoChat"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr "Klient Matrix"
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "© 2018-2020 Black Hat, 2020-2022 KDE Community"
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr "© 2018-2020 Black Hat, 2020-2022 Społeczność KDE"
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr "Carl Schwan"
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr "Opiekun"
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr "Tobias Fella"
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr "James Graham"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr "Czarny kapelusz"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr "Pierwotny autor Spectral"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr "Alexey Rusakov"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr "Opiekun Quotient"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr "Karol Kosek, Łukasz Wojniłowicz"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr "krkk@krkk.ct8.pl, lukasz.wojnilowicz@gmail.com"
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr "Biblioteka Qt5 do pisania wieloplatformowych programów dla Matriksa"
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (zbudowane na %2)"
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Program do obsługi protokołu matrix"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:327
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Obsługuje matriksa: schemat url"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, 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"
|
||||
@@ -1098,7 +1093,7 @@ msgstr "Szer.: %1, Dł.: %2"
|
||||
msgid "Encrypted Message"
|
||||
msgstr "Zaszyfrowana wiadomość"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr "%1: %2"
|
||||
@@ -1202,7 +1197,7 @@ msgstr "Nadaj podpis załącznikowi..."
|
||||
msgid "Send a message…"
|
||||
msgstr "Wyślij wiadomość…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1342,7 +1337,7 @@ msgstr ""
|
||||
msgid "View Location"
|
||||
msgstr "Wyślij położenie"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Zamknij"
|
||||
@@ -1373,14 +1368,14 @@ msgstr "Odrzuć"
|
||||
msgid "Accept"
|
||||
msgstr "Zaakceptuj"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Notifications"
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Powiadomienia"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "You are already in this room."
|
||||
msgid "There are no locations shared in this room."
|
||||
@@ -1408,7 +1403,7 @@ msgid "Url:"
|
||||
msgstr "Url:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1435,19 +1430,13 @@ msgstr "Wpisz swoje ID Matriksa"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "ID Matriksa:"
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 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:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Już zalogowany"
|
||||
@@ -1502,13 +1491,6 @@ 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"
|
||||
@@ -2062,18 +2044,18 @@ msgstr "Rozpocznij prywatną rozmowę"
|
||||
msgid "Copy link"
|
||||
msgstr "Skopiuj odnośnik"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr "Sprawdzenie posiedzenia"
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr "Zgoda użytkownika"
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
@@ -2082,17 +2064,17 @@ msgstr ""
|
||||
"Twój serwer domowy wymaga zgody na jego warunki, zanim będzie można go "
|
||||
"używać. Aby je przeczytać, naciśnij na przycisk poniżej."
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "Otwórz"
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr "Rozpocznij rozmowę"
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr "Czy chcesz rozpocząć rozmowę z %1?"
|
||||
@@ -2708,25 +2690,12 @@ msgstr "Aby rozpocząć, dołącz do dowolnego pokoju"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Szukaj w katalogu pokojów"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Wyciszony pokój"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Ustawienia pokoju"
|
||||
@@ -2867,56 +2836,49 @@ msgstr "Ustawienia"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Otwórz narzędzia programistów"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Poszukaj w tym pokoju"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Poszukaj"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Usuń pokój z ulubionych"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Dodaj pokój do ulubionych"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Search in this room"
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Poszukaj w tym pokoju"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Członkowie"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Poszukaj użytkownika w pokoju"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Zaproś użytkownika do pokoju"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
@@ -2924,7 +2886,7 @@ msgstr[0] "%1 członek"
|
||||
msgstr[1] "%1 członków"
|
||||
msgstr[2] "%1 członków"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Brak liczby członków"
|
||||
@@ -3426,6 +3388,12 @@ 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"
|
||||
@@ -3563,6 +3531,12 @@ msgstr "Na pasku bocznym"
|
||||
msgid "Color theme"
|
||||
msgstr "Zestaw kolorów"
|
||||
|
||||
#: 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"
|
||||
@@ -3732,9 +3706,8 @@ msgid "General settings"
|
||||
msgstr "Ustawienia ogólne"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgstr "Zamknij na tackę systemową"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
143
po/pt/neochat.po
143
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-01 00:46+0000\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+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"
|
||||
@@ -126,100 +126,95 @@ msgstr "Destino"
|
||||
msgid "Network Error"
|
||||
msgstr "Erro de Rede"
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr "NeoChat"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr "Cliente do Matrix"
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, kde-format
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr "© 2018-2020 Black Hat, 2020-2023 da Comunidade do KDE"
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr "Carl Schwan"
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr "Manutenção"
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr "Tobias Fella"
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr "James Graham"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr "Black Hat"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr "Autor original do Spectral"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr "Alexey Rusakov"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr "Manutenção do Quotient"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr "José Nuno Pires"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr "zepires@gmail.com"
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr ""
|
||||
"Uma biblioteca do Qt5 para criar clientes multi-plataforma para o Matrix"
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (compilado com a %2)"
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Cliente para o protocolo de comunicações Matrix"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:327
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Suporta o esquema de URL's 'matrix:'"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, 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"
|
||||
@@ -1094,7 +1089,7 @@ msgstr "Lat: %1, Lon: %2"
|
||||
msgid "Encrypted Message"
|
||||
msgstr "Mensagem Encriptada"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr "%1: %2"
|
||||
@@ -1198,7 +1193,7 @@ msgstr "Definir uma legenda do anexo..."
|
||||
msgid "Send a message…"
|
||||
msgstr "Enviar uma mensagem…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1328,7 +1323,7 @@ msgstr "Autocolantes"
|
||||
msgid "View Location"
|
||||
msgstr "Ver a Localização"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Fechar"
|
||||
@@ -1359,13 +1354,13 @@ msgstr "Rejeitar"
|
||||
msgid "Accept"
|
||||
msgstr "Aceitar"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Localizações"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "Não se encontram localizações partilhadas nesta sala."
|
||||
@@ -1392,7 +1387,7 @@ msgid "Url:"
|
||||
msgstr "URL:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1419,19 +1414,13 @@ msgstr "Indique o seu ID do Matrix"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "ID do Matrix:"
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 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:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Já autenticado"
|
||||
@@ -1486,13 +1475,6 @@ 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"
|
||||
@@ -2043,18 +2025,18 @@ msgstr "Abrir uma conversa privada"
|
||||
msgid "Copy link"
|
||||
msgstr "Copiar a ligação"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr "Verificação da Sessão"
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr "Consentimento do utilizador"
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
@@ -2063,17 +2045,17 @@ msgstr ""
|
||||
"O seu servidor caseiro obriga a que concorde com os seus termos e condições "
|
||||
"antes de o poder usar. Por favor carregue no botão abaixo para os ler."
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "Abrir"
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr "Iniciar uma conversa"
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr "Deseja iniciar uma conversa com %1?"
|
||||
@@ -2689,25 +2671,12 @@ msgstr "Junte-se a algumas salas para começar"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Procurar na lista de salas"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Sala em silêncio"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Configurar a sala"
|
||||
@@ -2846,62 +2815,55 @@ msgstr "Opções"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Abrir as ferramentas de desenvolvimento"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Procurar nesta sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Procurar"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Remover a sala dos favoritos"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Adicionar a sala aos favoritos"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Mostrar as localizações desta sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Membros"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Procurar um utilizador nesta sala"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Convidar o utilizador para a sala"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "%1 membro"
|
||||
msgstr[1] "%1 membros"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Sem número de membros"
|
||||
@@ -3402,6 +3364,12 @@ 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"
|
||||
@@ -3539,6 +3507,12 @@ msgstr "Na barra lateral"
|
||||
msgid "Color theme"
|
||||
msgstr "Tema de cores"
|
||||
|
||||
#: 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"
|
||||
@@ -3696,9 +3670,8 @@ msgid "General settings"
|
||||
msgstr "Configuração geral"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
#, kde-format
|
||||
msgid "Close to 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-01 00:46+0000\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+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"
|
||||
@@ -124,101 +124,96 @@ msgstr "Destino"
|
||||
msgid "Network Error"
|
||||
msgstr "Erro de rede"
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr "NeoChat"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr "Cliente Matrix"
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, kde-format
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr "© 2018-2020 Black Hat, 2020-2023 A comunidade KDE"
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr "Carl Schwan"
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr "Mantenedor"
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr "Tobias Fella"
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr "James Graham"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr "Black Hat"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr "Autor original do Spectral"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr "Alexey Rusakov"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr "Mantenedor do Quotient"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr "Luiz Fernando Ranghetti, Thiago Masato Costa Sueto"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr "elchevive@opensuse.org, herzenschein@gmail.com"
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr ""
|
||||
"Uma biblioteca Qt5 para escrever clientes multiplataformas para o Matrix"
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (compilado com %2)"
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Cliente para o protocolo de comunicação Matrix"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:327
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Supports appstream: url scheme"
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Suporte ao esquema appstream: url"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, 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"
|
||||
@@ -1180,7 +1175,7 @@ msgstr ""
|
||||
msgid "Encrypted Message"
|
||||
msgstr "Mensagem criptografada"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr "%1: %2"
|
||||
@@ -1285,7 +1280,7 @@ msgstr ""
|
||||
msgid "Send a message…"
|
||||
msgstr "Enviar uma mensagem…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Cancel"
|
||||
msgctxt "@action:button"
|
||||
@@ -1433,7 +1428,7 @@ msgstr ""
|
||||
msgid "View Location"
|
||||
msgstr "Enviar convite"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Fechar"
|
||||
@@ -1464,14 +1459,14 @@ msgstr "Rejeitar"
|
||||
msgid "Accept"
|
||||
msgstr "Aceitar"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Show notifications"
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Mostrar notificações"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "You are already in this room."
|
||||
msgid "There are no locations shared in this room."
|
||||
@@ -1499,7 +1494,7 @@ msgid "Url:"
|
||||
msgstr "URL:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1526,19 +1521,13 @@ msgstr "Digite seu ID do Matrix"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "ID do Matrix:"
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 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:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr ""
|
||||
@@ -1593,15 +1582,6 @@ 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"
|
||||
@@ -2139,19 +2119,19 @@ msgstr "Abrir um bate-papo privado:"
|
||||
msgid "Copy link"
|
||||
msgstr "Copiar"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Show notifications"
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr "Mostrar notificações"
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr "Consentimento do usuário"
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
@@ -2160,17 +2140,17 @@ msgstr ""
|
||||
"O seu homeserver requer que você concorde com seus termos e condições antes "
|
||||
"de ser usado. Clique no botão abaixo para lê-los."
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "Abrir"
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr "Iniciar um bate-papo"
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr "Você gostaria de iniciar um bate-papo com %1?"
|
||||
@@ -2807,26 +2787,13 @@ msgstr "Entre em algumas salas para começar"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Pesquisar na lista de salas"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Muted"
|
||||
msgid "Muted room"
|
||||
msgstr "Mudo"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Configurar sala"
|
||||
@@ -2974,59 +2941,52 @@ msgstr "Opções:"
|
||||
msgid "Open developer tools"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, 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:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Remover sala dos favoritos"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Marcar sala como favorito"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, 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:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Membros"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, 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: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
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, 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:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "%1 Member"
|
||||
#| msgid_plural "%1 Members"
|
||||
@@ -3035,7 +2995,7 @@ msgid_plural "%1 members"
|
||||
msgstr[0] "%1 membro"
|
||||
msgstr[1] "%1 membros"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "No Member Count"
|
||||
msgid "No member count"
|
||||
@@ -3569,6 +3529,14 @@ 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"
|
||||
@@ -3716,6 +3684,12 @@ msgstr "Na barra lateral"
|
||||
msgid "Color theme"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:52
|
||||
#, kde-format
|
||||
msgctxt "@label"
|
||||
msgid "%1, Last activity: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:61
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Edit device name"
|
||||
@@ -3891,9 +3865,8 @@ msgid "General settings"
|
||||
msgstr "Configurações gerais:"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgstr "Fechar para a área de notificação"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
143
po/ru/neochat.po
143
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-01 00:46+0000\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+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"
|
||||
@@ -127,17 +127,17 @@ msgstr "Назначение"
|
||||
msgid "Network Error"
|
||||
msgstr "Ошибка соединения"
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr "NeoChat"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr "Клиент Matrix"
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "© 2018-2020 Black Hat, 2020-2022 KDE Community"
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
@@ -145,84 +145,79 @@ msgstr ""
|
||||
"© Black Hat 2018-2020\n"
|
||||
"© Сообщество KDE 2020-2022"
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr "Carl Schwan"
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr "Сопровождающий"
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr "Tobias Fella"
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr "James Graham"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr "Black Hat"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr "Первоначальный автор Spectral"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr "Алексей Русаков"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr "Сопровождающий Quotient"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr "Александр Яворский, Павел Чернышов, Олеся Герасименко"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr "kekcuha@gmail.com, farline99@yandex.ru, translation-team@basealt.ru"
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr "Библиотека Qt5 для написания кроссплатформенных клиентов Matrix"
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (собрано с версией %2)"
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Клиент для протокола связи Matrix"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:327
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Адрес, соответствующий схеме Matrix"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, 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"
|
||||
@@ -1109,7 +1104,7 @@ msgstr ""
|
||||
msgid "Encrypted Message"
|
||||
msgstr "Зашифрованное сообщение"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr "%1: %2"
|
||||
@@ -1213,7 +1208,7 @@ msgstr "Задать подпись для вложения…"
|
||||
msgid "Send a message…"
|
||||
msgstr "Введите текст сообщения…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1352,7 +1347,7 @@ msgstr ""
|
||||
msgid "View Location"
|
||||
msgstr "Отправить приглашение"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Закрыть"
|
||||
@@ -1383,14 +1378,14 @@ msgstr "Отклонить"
|
||||
msgid "Accept"
|
||||
msgstr "Принять"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Notifications"
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Уведомления"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "You are already in this room."
|
||||
msgid "There are no locations shared in this room."
|
||||
@@ -1418,7 +1413,7 @@ msgid "Url:"
|
||||
msgstr "Адрес:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1445,19 +1440,13 @@ msgstr "Введите свой идентификатор Matrix"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Идентификатор Matrix:"
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Загрузка..."
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Вход уже выполнен"
|
||||
@@ -1512,13 +1501,6 @@ 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"
|
||||
@@ -2057,18 +2039,18 @@ msgstr "Открыть личный чат"
|
||||
msgid "Copy link"
|
||||
msgstr "Копировать ссылку"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr "Проверка сеанса"
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr "Согласие пользователя"
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
@@ -2078,17 +2060,17 @@ msgstr ""
|
||||
"условиями, прежде чем сможете его использовать. Нажмите на кнопку, "
|
||||
"расположенную ниже, ниже, чтобы прочитать их."
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "Открыть"
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr "Начать общение"
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr "Начать чат с %1?"
|
||||
@@ -2706,25 +2688,12 @@ msgstr "Чтобы начать, войдите в комнату"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Искать в каталоге комнат"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Уведомления отключены"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Настроить комнату"
|
||||
@@ -2866,56 +2835,49 @@ msgstr "Параметры"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Открыть инструменты разработчика"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Искать в этой комнате"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Поиск"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Убрать комнату из избранного"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Добавить комнату в избранное"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Search in this room"
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Искать в этой комнате"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Участники"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Искать пользователя в комнате"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Пригласить пользователя в комнату"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, fuzzy, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
@@ -2924,7 +2886,7 @@ msgstr[1] "%1 участника"
|
||||
msgstr[2] "%1 участников"
|
||||
msgstr[3] "%1 участник"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, fuzzy, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Количество участников не подсчитывается"
|
||||
@@ -3436,6 +3398,12 @@ 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"
|
||||
@@ -3573,6 +3541,12 @@ msgstr "В боковой панели"
|
||||
msgid "Color theme"
|
||||
msgstr "Цветовая схема"
|
||||
|
||||
#: 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"
|
||||
@@ -3743,9 +3717,8 @@ msgid "General settings"
|
||||
msgstr "Основные параметры"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgstr "Сворачивать в системный лоток"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
147
po/sk/neochat.po
147
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-01 00:46+0000\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+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"
|
||||
@@ -130,101 +130,96 @@ msgstr "Odoslať pozvanie"
|
||||
msgid "Network Error"
|
||||
msgstr "Chyba siete"
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr "NeoChat"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr "Matrix client"
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "© 2018-2020 Black Hat, 2020 KDE Community"
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr "© 2018-2020 Black Hat, 2020 KDE komunita"
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr "Carl Schwan"
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr "Tobias Fella"
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr "Black Hat"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr "Roman Paholík"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr "wizzardsk@gmail.com"
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Klient pre komunikačný protokol matrix"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:327
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Supports appstream: url scheme"
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Podporuje appstream: url schému"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, 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"
|
||||
@@ -1206,7 +1201,7 @@ msgstr ""
|
||||
msgid "Encrypted Message"
|
||||
msgstr "Upraviť správu"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr "%1: %2"
|
||||
@@ -1316,7 +1311,7 @@ msgstr ""
|
||||
msgid "Send a message…"
|
||||
msgstr "Odoslať správu"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Cancel"
|
||||
msgctxt "@action:button"
|
||||
@@ -1463,7 +1458,7 @@ msgstr ""
|
||||
msgid "View Location"
|
||||
msgstr "Odoslať pozvanie"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Zatvoriť"
|
||||
@@ -1494,14 +1489,14 @@ msgstr "Odmietnuť"
|
||||
msgid "Accept"
|
||||
msgstr "Prijať"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Show notifications"
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Zobraziť upozornenia"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Open NeoChat in this room"
|
||||
msgid "There are no locations shared in this room."
|
||||
@@ -1529,7 +1524,7 @@ msgid "Url:"
|
||||
msgstr "Url:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1556,19 +1551,13 @@ msgstr "Zadajte svoje Matrix ID"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Matrix ID:"
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 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:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr ""
|
||||
@@ -1623,15 +1612,6 @@ 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"
|
||||
@@ -2167,19 +2147,19 @@ msgstr "Otvoriť súkromný chat"
|
||||
msgid "Copy link"
|
||||
msgstr "Kopírovať"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Show notifications"
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr "Zobraziť upozornenia"
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr "Používateľský súhlas"
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
@@ -2189,17 +2169,17 @@ msgstr ""
|
||||
"zmluvnými podmienkami. Ak si ich chcete prečítať, kliknite na tlačidlo "
|
||||
"nižšie."
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "Otvoriť"
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr "Začať rozhovor"
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr "Chcete začať rozhovor s %1?"
|
||||
@@ -2837,26 +2817,13 @@ 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/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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Muted"
|
||||
msgid "Muted room"
|
||||
msgstr "Stlmený"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Nastaviť miestnosť"
|
||||
@@ -3004,59 +2971,52 @@ msgstr "Voľby:"
|
||||
msgid "Open developer tools"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, 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:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Odstrániť miestnosť z obľúbených"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Nastaviť miestnosť ako pbľúbenú"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, 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:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Členovia"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, 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: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
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "invited %1 to the room"
|
||||
msgid "Invite user to room"
|
||||
msgstr "pozval %1 do miestnosti"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "%1 Member"
|
||||
#| msgid_plural "%1 Members"
|
||||
@@ -3066,7 +3026,7 @@ msgstr[0] "%1 Člen"
|
||||
msgstr[1] "%1 Členovia"
|
||||
msgstr[2] "%1 Členov"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "No Member Count"
|
||||
msgid "No member count"
|
||||
@@ -3595,6 +3555,14 @@ 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"
|
||||
@@ -3740,6 +3708,12 @@ msgstr ""
|
||||
msgid "Color theme"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:52
|
||||
#, kde-format
|
||||
msgctxt "@label"
|
||||
msgid "%1, Last activity: %2"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:61
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Edit device name"
|
||||
@@ -3911,9 +3885,8 @@ msgid "General settings"
|
||||
msgstr "Všeobecné nastavenia:"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgstr "Zatvoriť do systémovej lišty"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
150
po/sl/neochat.po
150
po/sl/neochat.po
@@ -8,16 +8,16 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-01 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-07-31 06:15+0200\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"PO-Revision-Date: 2023-08-06 08:32+0200\n"
|
||||
"Last-Translator: Matjaž Jeran <matjaz.jeran@amis.net>\n"
|
||||
"Language-Team: Slovenian <lugos-slo@lugos.si>\n"
|
||||
"Language: sl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
|
||||
"%100<=4 ? 2 : 3);\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n"
|
||||
"%100==4 ? 3 : 0);\n"
|
||||
"X-Generator: Poedit 3.3.2\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
@@ -124,99 +124,94 @@ msgstr "Cilj"
|
||||
msgid "Network Error"
|
||||
msgstr "Napaka omrežja"
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr "NeoChat"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr "Matrixov odjemalec"
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, kde-format
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr "© 2018-2020 Black Hat, 2020-2023 skupnost KDE"
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr "Carl Schwan"
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr "Vzdrževalec"
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr "Tobias Fella"
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr "James Graham"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr "Black Hat"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr "Izvorni avtor programa Spectral"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr "Alexey Rusakov"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr "Vzdrževalec programa Quotient"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr "Matjaž Jeran,Martin Srebotnjak"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr "matjaz.jeran@amis.net,miles@filmsi.net"
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr "Knjižnica Qt5 za pisanje odjemalcev za več platform za Matrix"
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (zgrajeno na %2)"
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Odjemalec za komunikacijski protokol matrix"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:327
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Podpira matriko: shema url"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, 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"
|
||||
@@ -1099,7 +1094,7 @@ msgstr "Širina: %1, Dolžina: %2"
|
||||
msgid "Encrypted Message"
|
||||
msgstr "Šifrirano sporočilo"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr "%1: %2"
|
||||
@@ -1203,7 +1198,7 @@ msgstr "Nastavite napis priloge..."
|
||||
msgid "Send a message…"
|
||||
msgstr "Pošlji sporočilo…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1333,7 +1328,7 @@ msgstr "Nalepke"
|
||||
msgid "View Location"
|
||||
msgstr "Poglej lokacijo"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Zapri"
|
||||
@@ -1364,13 +1359,13 @@ msgstr "Zavračam"
|
||||
msgid "Accept"
|
||||
msgstr "Sprejemam"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Lokacije"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "Ni deljenih lokacij v tej sobi."
|
||||
@@ -1397,7 +1392,7 @@ msgid "Url:"
|
||||
msgstr "Spletni naslov:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1424,18 +1419,13 @@ msgstr "Vnesite vaš Matrix ID"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Matrixov ID:"
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 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:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Ste že prijavljeni"
|
||||
@@ -1490,13 +1480,6 @@ 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"
|
||||
@@ -2043,18 +2026,18 @@ msgstr "Odpri zasebni razgovor"
|
||||
msgid "Copy link"
|
||||
msgstr "Kopiraj povezavo"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr "Verifikacija seje"
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr "Privoljenje uporabnika"
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
@@ -2063,17 +2046,17 @@ msgstr ""
|
||||
"Vaš domači strežnik zahteva, da se strinjate s pogoji njegove rabe pred "
|
||||
"dovoljenjem za uporabo. Prosimo, kliknite spodnji gumb, da jih preberete."
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "Odpri"
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr "Začni pogovor"
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr "Ali želite začeti pogovor s %1?"
|
||||
@@ -2689,24 +2672,12 @@ msgstr "Pridruži se nekaj sobam za začetek"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Poišči v imeniku sob"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Utišana soba"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Nastavi sobo"
|
||||
@@ -2796,12 +2767,12 @@ msgstr "Debata"
|
||||
#: src/qml/Page/StartChatPage.qml:93
|
||||
#, kde-format
|
||||
msgid "Join existing chat"
|
||||
msgstr "Pridružite se obstoječem klepetu"
|
||||
msgstr "Pridružite se obstoječemu klepetu"
|
||||
|
||||
#: src/qml/Page/StartChatPage.qml:114
|
||||
#, kde-format
|
||||
msgid "Create new chat"
|
||||
msgstr "Ustvari nov klepet"
|
||||
msgstr "Ustvari novi klepet"
|
||||
|
||||
#: src/qml/Page/WelcomePage.qml:56
|
||||
#, kde-format
|
||||
@@ -2843,55 +2814,48 @@ msgstr "Možnosti"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Odpri razvojna orodja"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Išči v tej sobi"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Išči"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Odstrani sobo izmed priljubljenih"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Proglasi sobo za priljubljeno"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Pokaži lokacije za to sobo"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Člani"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Išči uporabnika v sobi"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invite a User"
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Povabi uporabnika"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Povabite uporabnika v sobo"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
@@ -2900,7 +2864,7 @@ msgstr[1] "%1 člana"
|
||||
msgstr[2] "%1 člani"
|
||||
msgstr[3] "%1 članov"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Ni števila članov"
|
||||
@@ -3398,6 +3362,12 @@ 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"
|
||||
@@ -3535,6 +3505,12 @@ msgstr "V stranski vrstici"
|
||||
msgid "Color theme"
|
||||
msgstr "Barvna tema"
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:52
|
||||
#, kde-format
|
||||
msgctxt "@label"
|
||||
msgid "%1, Last activity: %2"
|
||||
msgstr "%1, Zadnja dejavnost: %2"
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:61
|
||||
#, kde-format
|
||||
msgid "New device name"
|
||||
@@ -3688,8 +3664,8 @@ msgstr "Splošne nastavitve"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Prikaži na sistemskem pladnju"
|
||||
msgid "Close to system tray"
|
||||
msgstr "Zapri na sistemski pladenj"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
#, kde-format
|
||||
|
||||
161
po/sv/neochat.po
161
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-01 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-07-31 20:59+0200\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"PO-Revision-Date: 2023-08-06 06:32+0200\n"
|
||||
"Last-Translator: Stefan Asserhäll <stefan.asserhall@bredband.net>\n"
|
||||
"Language-Team: Swedish <kde-i18n-doc@kde.org>\n"
|
||||
"Language: sv\n"
|
||||
@@ -122,99 +122,94 @@ msgstr "Mål"
|
||||
msgid "Network Error"
|
||||
msgstr "Nätverksfel"
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr "NeoChat"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr "Matrix-klient"
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, kde-format
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr "© 2018-2020 Black Hat, 2020-2023 KDE-gemenskapen"
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr "Carl Schwan"
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr "Underhållsansvarig"
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr "Tobias Fella"
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr "James Graham"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr "Black Hat"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr "Ursprunglig upphovsman till Spectral"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr "Alexey Rusakov"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr "Underhållsansvarig för Quotient"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr "Stefan Asserhäll"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr "stefan.asserhall@bredband.net"
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr "Att Qt5-bibliotek för att skriva Matrix-klienter för flera plattformar"
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (byggd med %2)"
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Klient för kommunikationsprotokollet Matrix"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:327
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Stöder matrix: webbadresschema"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, 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"
|
||||
@@ -1087,7 +1082,7 @@ msgstr "Latitud: %1, Longitud: %2"
|
||||
msgid "Encrypted Message"
|
||||
msgstr "Krypterat meddelande"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr "%1: %2"
|
||||
@@ -1191,7 +1186,7 @@ msgstr "Lägg till en rubrik för bilagan..."
|
||||
msgid "Send a message…"
|
||||
msgstr "Skicka ett meddelande…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1321,7 +1316,7 @@ msgstr "Klistermärken"
|
||||
msgid "View Location"
|
||||
msgstr "Visa plats"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Stäng"
|
||||
@@ -1352,13 +1347,13 @@ msgstr "Avslå"
|
||||
msgid "Accept"
|
||||
msgstr "Acceptera"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Platser"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "Det finns inga platser delade i rummet."
|
||||
@@ -1385,7 +1380,7 @@ msgid "Url:"
|
||||
msgstr "Webbadress:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1412,18 +1407,13 @@ msgstr "Ange Matrix-identifierare"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Matrix-identifierare"
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 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:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Redan inloggad"
|
||||
@@ -1478,13 +1468,6 @@ 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"
|
||||
@@ -2027,18 +2010,18 @@ msgstr "Starta en privat chatt"
|
||||
msgid "Copy link"
|
||||
msgstr "Kopiera länk"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr "Sessionsverifikation"
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr "Användargodkännande"
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
@@ -2047,17 +2030,17 @@ msgstr ""
|
||||
"Din hemserver kräver att du godkänner dess villkor innan den kan användas. "
|
||||
"Klicka på knappen nedan för att läsa dem."
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "Öppna"
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr "Starta en chatt"
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr "Vill du starta en chatt med %1?"
|
||||
@@ -2673,24 +2656,12 @@ 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/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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Tystat rum"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Anpassa rum"
|
||||
@@ -2827,62 +2798,55 @@ msgstr "Alternativ"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Öppna utvecklingsverktyg"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Sök i rummet"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Sök"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Ta bort rum från favoriter"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Gör rum till favorit"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Visa platser för rummet"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Medlemmar"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Sök användare i rummet"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invite a User"
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Bjud in en användare"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Bjöd in användare till ett rum"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "%1 medlem"
|
||||
msgstr[1] "%1 medlemmar"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Ingen medlemsräkning"
|
||||
@@ -3383,6 +3347,12 @@ 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"
|
||||
@@ -3520,6 +3490,12 @@ msgstr "I sidorad"
|
||||
msgid "Color theme"
|
||||
msgstr "Färgtema"
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:52
|
||||
#, kde-format
|
||||
msgctxt "@label"
|
||||
msgid "%1, Last activity: %2"
|
||||
msgstr "%1, senaste aktivitet: %2"
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:61
|
||||
#, kde-format
|
||||
msgid "New device name"
|
||||
@@ -3673,8 +3649,8 @@ msgstr "Allmänna inställningar"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Visa i systembricka"
|
||||
msgid "Close to system tray"
|
||||
msgstr "Stäng till systembricka"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
#, kde-format
|
||||
@@ -4047,6 +4023,25 @@ 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"
|
||||
|
||||
143
po/ta/neochat.po
143
po/ta/neochat.po
@@ -6,8 +6,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: neochat\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-08-01 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-07-30 14:27+0530\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+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"
|
||||
"Language: ta\n"
|
||||
@@ -123,99 +123,94 @@ msgstr "சேருமிடம்"
|
||||
msgid "Network Error"
|
||||
msgstr "பிணைய சிக்கல்"
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr "நியோச்சாட்"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr "Matrix வாங்கி"
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, kde-format
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr "© 2018-2020 பிளாக் ஹாட், 2020-2023 கே.டீ.யீ. சமூகம்"
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr "கார்ல் ஷுவான்"
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr "பராமரிப்பாளர்"
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr "டோபியாஸ் ஃபெல்லா"
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr "ஜேம்சு கிரஹாம்"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr "பிளாக் ஹாட்"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr "Spectral-ஐ முதலில் இயற்றியவர்"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr "அலெக்செய் ருசாக்கொவ்"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr "Quotient-இன் பராமரிப்பாளர்"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr "கோ. கிஷோர்"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr "Kde-l10n-ta@kde.org"
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr "மேட்ரிக்ஸுக்கான பல்லியங்குதள செயலிகளை எழுத உதவும் Qt5 நிரலகம்"
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (%2 கொண்டு தொகுக்கப்பட்டது)"
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Matrix தொடர்பு நெறிமுறைக்கான வாங்கி"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:327
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "matrix: முகவரி திட்டமுறையை ஆதரிக்கும்"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, 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"
|
||||
@@ -1090,7 +1085,7 @@ msgstr "அட்ச: %1, தீர்க்க: %2"
|
||||
msgid "Encrypted Message"
|
||||
msgstr "மறையாக்கப்பட்டுள்ள செய்தி"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr "%1: %2"
|
||||
@@ -1194,7 +1189,7 @@ msgstr "உடனிணைப்புக்கான தலைப்பை அ
|
||||
msgid "Send a message…"
|
||||
msgstr "செய்தியை அனுப்பு…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1324,7 +1319,7 @@ msgstr "ஒட்டிகள்"
|
||||
msgid "View Location"
|
||||
msgstr "இருப்பிடத்தைக் காட்டு"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "மூடு"
|
||||
@@ -1355,13 +1350,13 @@ msgstr "மறு"
|
||||
msgid "Accept"
|
||||
msgstr "ஏற்றுக்கொள்"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "இருப்பிடங்கள்"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "இவ்வரங்கில் எந்த இருப்பிடமும் பகிரப்படவில்லை."
|
||||
@@ -1388,7 +1383,7 @@ msgid "Url:"
|
||||
msgstr "முகவரி:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1415,18 +1410,13 @@ msgstr "உங்கள் Matrix கணக்கின் பெயரை உ
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Matrix கணக்குப்பெயர்:"
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "ஏற்றப்படுகிறது…"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "ஏற்கனவே நுழைந்துள்ளீர்கள்"
|
||||
@@ -1481,13 +1471,6 @@ 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"
|
||||
@@ -2017,18 +2000,18 @@ msgstr "தனிப்பட்ட உரையாடலைத் துவக
|
||||
msgid "Copy link"
|
||||
msgstr "இணைப்பை நகலெடு"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr "அமர்வு உறுதிப்பாடு"
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr "பயனர் ஒப்புதல்"
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
@@ -2037,17 +2020,17 @@ msgstr ""
|
||||
"பயன்படுத்துமுன் அதன் விதிமுறைகளை ஏற்குமாறு உங்கள் தாய் சேவையகம் உங்களை "
|
||||
"கட்டாயப்படுத்துகிறது. அவற்றைப் படிக்க கீழுள்ள பட்டனைத் தட்டுங்கள்."
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "திற"
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr "உரையாடலைத் துவக்கு"
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr "உறுதியாக %1 என்பவருடன் உரையாடலைத் துவக்க வேண்டுமா?"
|
||||
@@ -2663,25 +2646,12 @@ msgstr "தொடங்க, சில அரங்குகளில் சே
|
||||
msgid "Search in room directory"
|
||||
msgstr "அரங்குகளின் பட்டியலில் தேடுங்கள்"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "அடக்கப்பட்டுள்ள அரங்கு"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "அரங்கை அமை"
|
||||
@@ -2818,62 +2788,55 @@ msgstr "விருப்பங்கள்"
|
||||
msgid "Open developer tools"
|
||||
msgstr "நிரலாக்க கருவிகளைத் திற"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "இவ்வரங்கில் தேடு"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "தேடல்"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "பிடித்தவற்றிலிருந்து அரங்கை நீக்கு"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "அரங்கைப் பிடித்ததாகக் குறி"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "இவ்வரங்கிலுள்ள இருப்பிடங்களைக் காட்டு"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "உறுப்பினர்கள்"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "அரங்கில் பயனரை கண்டுபிடி"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "பயனரை ஓர் அரங்குக்கு வரவழை"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "%1 உறுப்பினர்"
|
||||
msgstr[1] "%1 உறுப்பினர்கள்"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "உறுப்பினர்களின் எண்ணிக்கை தெரியாதது"
|
||||
@@ -3367,6 +3330,12 @@ 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"
|
||||
@@ -3504,6 +3473,12 @@ msgstr "ஓரப்பட்டையில்"
|
||||
msgid "Color theme"
|
||||
msgstr "நிறத்திட்டம்"
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:52
|
||||
#, kde-format
|
||||
msgctxt "@label"
|
||||
msgid "%1, Last activity: %2"
|
||||
msgstr "%1, கடைசி செயல்: %2"
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:61
|
||||
#, kde-format
|
||||
msgid "New device name"
|
||||
@@ -3657,8 +3632,8 @@ msgstr "பொதுவான அமைப்புகள்"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Show in System Tray"
|
||||
msgstr "கணினித் தட்டில் காட்டு"
|
||||
msgid "Close to 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-01 00:46+0000\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+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-"
|
||||
@@ -129,97 +129,92 @@ msgstr ""
|
||||
msgid "Network Error"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, kde-format
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr "kulupu pi ante toki pi toki pona"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr ""
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
@@ -1125,7 +1120,7 @@ msgstr ""
|
||||
msgid "Encrypted Message"
|
||||
msgstr "o ante e toki"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr ""
|
||||
@@ -1229,7 +1224,7 @@ msgstr ""
|
||||
msgid "Send a message…"
|
||||
msgstr "o pana e toki"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Cancel"
|
||||
msgctxt "@action:button"
|
||||
@@ -1365,7 +1360,7 @@ msgstr ""
|
||||
msgid "View Location"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "o weka"
|
||||
@@ -1396,13 +1391,13 @@ msgstr ""
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr ""
|
||||
@@ -1429,7 +1424,7 @@ msgid "Url:"
|
||||
msgstr "nasin:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1456,19 +1451,13 @@ msgstr "o pana e nimi sina pi ilo Matrix"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "nimi pi ilo Matrix:"
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 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:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr ""
|
||||
@@ -1523,15 +1512,6 @@ 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"
|
||||
@@ -2064,35 +2044,35 @@ msgstr "o open e tomo toki pi sina tu taso"
|
||||
msgid "Copy link"
|
||||
msgstr "o tu e lipu tawa lipu jo"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
"being able to use it. Please click the button below to read them."
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "o open"
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr ""
|
||||
@@ -2717,24 +2697,12 @@ msgstr ""
|
||||
msgid "Search in room directory"
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr ""
|
||||
@@ -2875,55 +2843,48 @@ msgstr ""
|
||||
msgid "Open developer tools"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
@@ -2932,7 +2893,7 @@ msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
msgstr[3] ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr ""
|
||||
@@ -3433,6 +3394,14 @@ 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"
|
||||
@@ -3572,6 +3541,12 @@ msgstr ""
|
||||
msgid "Color theme"
|
||||
msgstr ""
|
||||
|
||||
#: 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"
|
||||
@@ -3729,7 +3704,7 @@ msgstr ""
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Show in System Tray"
|
||||
msgid "Close to system tray"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
152
po/tr/neochat.po
152
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-01 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-07-31 13:48+0300\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"PO-Revision-Date: 2023-08-07 17:47+0300\n"
|
||||
"Last-Translator: Emir SARI <emir_sari@icloud.com>\n"
|
||||
"Language-Team: Turkish <kde-l10n-tr@kde.org>\n"
|
||||
"Language: tr\n"
|
||||
@@ -123,99 +123,94 @@ msgstr "Hedef"
|
||||
msgid "Network Error"
|
||||
msgstr "Ağ Hatası"
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr "NeoChat"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr "Matrix istemcisi"
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, kde-format
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr "© 2018-2020 Black Hat, 2020-2023 KDE Topluluğu"
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr "Carl Schwan"
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr "Bakımcı"
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr "Tobias Fella"
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr "James Graham"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr "Black Hat"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr "Spectral'in özgün yazarı"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr "Aleksey Rusakov"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr "Quotient bakımcısı"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr "Emir SARI"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr "emir_sari@icloud.com"
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr "Matrix için çapraz platform istemciler yazmak için bir Qt5 kitaplığı"
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (%2 üzerine yapılı)"
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Matrix iletişim protokolü için istemci"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:327
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "matrix: URL şemasını destekler"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, 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"
|
||||
@@ -1088,7 +1083,7 @@ msgstr "Enlem: %1, Boylam: %2"
|
||||
msgid "Encrypted Message"
|
||||
msgstr "Şifreli İleti"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr "%1: %2"
|
||||
@@ -1192,7 +1187,7 @@ msgstr "Bir ek alt yazısı ekle..."
|
||||
msgid "Send a message…"
|
||||
msgstr "Bir ileti gönder…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1322,7 +1317,7 @@ msgstr "Yapışkanlar"
|
||||
msgid "View Location"
|
||||
msgstr "Konumu Görüntüle"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Kapat"
|
||||
@@ -1353,13 +1348,13 @@ msgstr "Reddet"
|
||||
msgid "Accept"
|
||||
msgstr "Kabul Et"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Konumlar"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "Bu odada paylaşılmış bir konum yok."
|
||||
@@ -1386,7 +1381,7 @@ msgid "Url:"
|
||||
msgstr "URL:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1413,18 +1408,13 @@ msgstr "Matrix kimliğinizi girin"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Matrix kimliği:"
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 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:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Halihazırda oturum açıldı"
|
||||
@@ -1479,13 +1469,6 @@ 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"
|
||||
@@ -2028,18 +2011,18 @@ msgstr "Özel bir sohbet aç"
|
||||
msgid "Copy link"
|
||||
msgstr "Bağlantıyı kopyala"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr "Oturum Doğrulama"
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr "Kullanıcı onayı"
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
@@ -2048,17 +2031,17 @@ msgstr ""
|
||||
"Ana sunucunuz, kullanım öncesinde kullanım koşullarını kabul etmenizi "
|
||||
"gerektiriyor. Okumak için aşağıdaki düğmeye tıklayın."
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "Aç"
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr "Bir sohbet başlat"
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr "%1 ile bir sohbet başlatmak istiyor musunuz?"
|
||||
@@ -2674,24 +2657,12 @@ msgstr "Başlamak için odalara katılın"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Oda dizininde ara"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Sessize alınmış oda"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Odayı yapılandır"
|
||||
@@ -2779,14 +2750,16 @@ msgid "Chat"
|
||||
msgstr "Sohbet"
|
||||
|
||||
#: src/qml/Page/StartChatPage.qml:93
|
||||
#, kde-format
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Log in to an existing account"
|
||||
msgid "Join existing chat"
|
||||
msgstr "Var olan sohbete katıl"
|
||||
msgstr "Var olan bir hesaba oturum aç"
|
||||
|
||||
#: src/qml/Page/StartChatPage.qml:114
|
||||
#, kde-format
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Create rooms and chats"
|
||||
msgid "Create new chat"
|
||||
msgstr "Yeni sohbet oluştur"
|
||||
msgstr "Odalar ve sohbetler oluştur"
|
||||
|
||||
#: src/qml/Page/WelcomePage.qml:56
|
||||
#, kde-format
|
||||
@@ -2828,62 +2801,55 @@ msgstr "Seçenekler"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Geliştirici araçlarını aç"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Bu odada ara"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Ara"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Odayı sık kullanılanlardan kaldır"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Odayı sık kullanılanlara ekle"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Bu oda için olan konumları göster"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Üyeler"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Kullanıcıyı odada ara"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Invite a User"
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr "Bir Kullanıcı Davet Et"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Kullanıcıyı odaya davet et"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] "%1 üye"
|
||||
msgstr[1] "%1 üye"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Üye sayısı yok"
|
||||
@@ -3381,6 +3347,12 @@ 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"
|
||||
@@ -3518,6 +3490,12 @@ msgstr "Kenar çubuğunda"
|
||||
msgid "Color theme"
|
||||
msgstr "Renk teması"
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:52
|
||||
#, kde-format
|
||||
msgctxt "@label"
|
||||
msgid "%1, Last activity: %2"
|
||||
msgstr "%1, son etkinlik: %2"
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:61
|
||||
#, kde-format
|
||||
msgid "New device name"
|
||||
@@ -3671,8 +3649,8 @@ msgstr "Genel ayarlar"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Sistem tepsisinde göster"
|
||||
msgid "Close to system tray"
|
||||
msgstr "Sistem tepsisine kapat"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
#, kde-format
|
||||
|
||||
142
po/uk/neochat.po
142
po/uk/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-01 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-07-31 08:52+0300\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+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"
|
||||
"Language: uk\n"
|
||||
@@ -127,101 +127,96 @@ msgstr "Призначення"
|
||||
msgid "Network Error"
|
||||
msgstr "Помилка у мережі"
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr "NeoChat"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr "Клієнт Matrix"
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, kde-format
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr "© Black Hat, 2018-2020, Спільнота KDE, 2020–2023"
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr "Carl Schwan"
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr "Супровідник"
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr "Tobias Fella"
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr "James Graham"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr "Black Hat"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr "Перший автор Spectral"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr "Alexey Rusakov"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr "Супровідник Quotient"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr "Юрій Чорноіван"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr "yurchor@ukr.net"
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr ""
|
||||
"Бібліотека Qt5 для написання багатоплатформових клієнтських програм для "
|
||||
"Matrix"
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (зібрано з %2)"
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Клієнт для протоколу обміну даними matrix"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:327
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "Передбачає підтримку схеми адрес matrix:"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, 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"
|
||||
@@ -1106,7 +1101,7 @@ msgstr "Шир: %1, Довг: %2"
|
||||
msgid "Encrypted Message"
|
||||
msgstr "Зашифроване повідомлення"
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr "%1: %2"
|
||||
@@ -1210,7 +1205,7 @@ msgstr "Встановити підпис до долучення…"
|
||||
msgid "Send a message…"
|
||||
msgstr "Надіслати повідомлення…"
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1340,7 +1335,7 @@ msgstr "Наліпки"
|
||||
msgid "View Location"
|
||||
msgstr "Надіслати дані місця"
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "Закрити"
|
||||
@@ -1371,13 +1366,13 @@ msgstr "Відкинути"
|
||||
msgid "Accept"
|
||||
msgstr "Прийняти"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr "Місця"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr "У цій кімнаті не оприлюднюються місця перебування."
|
||||
@@ -1404,7 +1399,7 @@ msgid "Url:"
|
||||
msgstr "Адреса:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1431,18 +1426,13 @@ msgstr "Введіть ваш ідентифікатор Matrix"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Ідентифікатор Matrix:"
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "Завантаження…"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr "Вже увійшли"
|
||||
@@ -1497,13 +1487,6 @@ 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"
|
||||
@@ -2052,18 +2035,18 @@ msgstr "Відкрити особисте спілкування"
|
||||
msgid "Copy link"
|
||||
msgstr "Копіювати посилання"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr "Перевірка сеансу"
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr "Згода користувача"
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
@@ -2073,17 +2056,17 @@ msgstr ""
|
||||
"використання. Будь ласка, натисніть розташовану нижче кнопку для того, щоб "
|
||||
"ознайомитися з ними."
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "Відкрити"
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr "Почати спілкування"
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr "Хочете розпочати спілкування з %1?"
|
||||
@@ -2699,24 +2682,12 @@ msgstr "Спочатку, приєднайтеся до кімнат"
|
||||
msgid "Search in room directory"
|
||||
msgstr "Шукати у каталозі кімнат"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "Кімната із вимкненим спілкуванням"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "Налаштувати кімнату"
|
||||
@@ -2855,55 +2826,48 @@ msgstr "Параметри"
|
||||
msgid "Open developer tools"
|
||||
msgstr "Відкрити інструменти розробника"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "Шукати у цій кімнаті"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "Пошук"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "Вилучити кімнату з улюблених"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "Зробити кімнату улюбленою"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr "Показувати місця перебування для цієї кімнати"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "Учасники"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr "Шукати користувача у кімнаті"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "Запросити користувача до кімнати"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
@@ -2912,7 +2876,7 @@ msgstr[1] "%1 учасники"
|
||||
msgstr[2] "%1 учасників"
|
||||
msgstr[3] "%1 учасник"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr "Немає лічильника учасників"
|
||||
@@ -3416,6 +3380,12 @@ 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"
|
||||
@@ -3553,6 +3523,12 @@ msgstr "На бічній панелі"
|
||||
msgid "Color theme"
|
||||
msgstr "Тема кольорів"
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:52
|
||||
#, kde-format
|
||||
msgctxt "@label"
|
||||
msgid "%1, Last activity: %2"
|
||||
msgstr "%1, останні дії: %2"
|
||||
|
||||
#: src/qml/Settings/DeviceDelegate.qml:61
|
||||
#, kde-format
|
||||
msgid "New device name"
|
||||
@@ -3708,8 +3684,8 @@ msgstr "Загальні параметри"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Show in System Tray"
|
||||
msgstr "Показувати у системному лотку"
|
||||
msgid "Close to 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-01 00:46+0000\n"
|
||||
"PO-Revision-Date: 2023-07-30 07:10\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+0000\n"
|
||||
"PO-Revision-Date: 2023-08-02 12:45\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Chinese Simplified\n"
|
||||
"Language: zh_CN\n"
|
||||
@@ -14,8 +14,8 @@ msgstr ""
|
||||
"X-Crowdin-Project: kdeorg\n"
|
||||
"X-Crowdin-Project-ID: 269464\n"
|
||||
"X-Crowdin-Language: zh-CN\n"
|
||||
"X-Crowdin-File: /kf5-trunk/messages/neochat/neochat.pot\n"
|
||||
"X-Crowdin-File-ID: 24924\n"
|
||||
"X-Crowdin-File: /kf5-stable/messages/neochat/neochat.pot\n"
|
||||
"X-Crowdin-File-ID: 41945\n"
|
||||
|
||||
#: src/controller.cpp:234
|
||||
#, kde-format
|
||||
@@ -123,62 +123,62 @@ msgstr ""
|
||||
msgid "Network Error"
|
||||
msgstr "网络错误"
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr "NeoChat"
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr "Matrix 客户端"
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, kde-format
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr "Carl Schwan"
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr "维护人员"
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr "Tobias Fella"
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr "James Graham"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr "Black Hat"
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr "Spectral 的原作者"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr "Alexey Rusakov"
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr "Quotient 的维护人员"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
@@ -186,7 +186,7 @@ msgstr ""
|
||||
"KDE China (中国), Guo Yunhe (郭云鹤), Yang Boyuan (杨博远), Coelacanthus, "
|
||||
"Tyson Tan (钛山), Gary Wang"
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
@@ -194,32 +194,27 @@ msgstr ""
|
||||
"kde-china@kde.org, i@guoyunhe.me, 073plan@gmail.com, coelacanthus@kde.org, "
|
||||
"tysontan@tysontan.com, git@blumia.net"
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr "一个用于编写跨平台 Matrix 客户端的 Qt5 库"
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr "%1 (使用 %2 构建)"
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr "Matrix 通信协议客户端"
|
||||
|
||||
#: src/main.cpp:326
|
||||
#: src/main.cpp:327
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr "支持 matrix: URL 协议"
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, 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"
|
||||
@@ -1087,7 +1082,7 @@ msgstr ""
|
||||
msgid "Encrypted Message"
|
||||
msgstr ""
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr ""
|
||||
@@ -1189,7 +1184,7 @@ msgstr ""
|
||||
msgid "Send a message…"
|
||||
msgstr "发送一条消息..."
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1319,7 +1314,7 @@ msgstr ""
|
||||
msgid "View Location"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr "关闭"
|
||||
@@ -1350,13 +1345,13 @@ msgstr "拒绝"
|
||||
msgid "Accept"
|
||||
msgstr "接受"
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr ""
|
||||
@@ -1383,7 +1378,7 @@ msgid "Url:"
|
||||
msgstr "链接:"
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1410,18 +1405,13 @@ msgstr "输入您的 Matrix ID"
|
||||
msgid "Matrix ID:"
|
||||
msgstr "Matrix ID:"
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr "加载中…"
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr ""
|
||||
@@ -1476,13 +1466,6 @@ 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"
|
||||
@@ -1998,18 +1981,18 @@ msgstr "打开私聊"
|
||||
msgid "Copy link"
|
||||
msgstr "复制链接"
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr "用户许可"
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
@@ -2018,17 +2001,17 @@ msgstr ""
|
||||
"您的主服务器需要您同意它的条款和条件,然后才能使用。请点击下面的按钮阅读它"
|
||||
"们。"
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr "打开"
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr "开始聊天"
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr "您想要与 %1 开始聊天吗?"
|
||||
@@ -2642,25 +2625,12 @@ msgstr "加入聊天室,开启畅聊"
|
||||
msgid "Search in room directory"
|
||||
msgstr "在聊天室目录中搜索"
|
||||
|
||||
#: 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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr "已静音的聊天室"
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr "配置聊天室"
|
||||
@@ -2797,61 +2767,54 @@ msgstr "选项"
|
||||
msgid "Open developer tools"
|
||||
msgstr "打开开发者工具"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr "在此聊天室中搜索"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr "搜索"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr "从收藏夹中移除聊天室"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr "收藏聊天室"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr "成员"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr "邀请用户到聊天室"
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr ""
|
||||
@@ -3339,6 +3302,12 @@ 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"
|
||||
@@ -3476,6 +3445,12 @@ msgstr "在侧边栏中"
|
||||
msgid "Color theme"
|
||||
msgstr "颜色主题"
|
||||
|
||||
#: 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"
|
||||
@@ -3628,9 +3603,8 @@ msgid "General settings"
|
||||
msgstr "常规设置"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Close to system tray"
|
||||
msgid "Show in System Tray"
|
||||
#, kde-format
|
||||
msgid "Close to system tray"
|
||||
msgstr "关闭到系统托盘"
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
@@ -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-01 00:46+0000\n"
|
||||
"POT-Creation-Date: 2023-08-08 02:36+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"
|
||||
@@ -124,97 +124,92 @@ msgstr ""
|
||||
msgid "Network Error"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:161
|
||||
#: src/main.cpp:160
|
||||
#, kde-format
|
||||
msgid "NeoChat"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:163
|
||||
#: src/main.cpp:162
|
||||
#, kde-format
|
||||
msgid "Matrix client"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:165
|
||||
#: src/main.cpp:164
|
||||
#, kde-format
|
||||
msgid "© 2018-2020 Black Hat, 2020-2023 KDE Community"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:166
|
||||
#: src/main.cpp:165
|
||||
#, kde-format
|
||||
msgid "Carl Schwan"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:166 src/main.cpp:167 src/main.cpp:168
|
||||
#: src/main.cpp:165 src/main.cpp:166 src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "Maintainer"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:167
|
||||
#: src/main.cpp:166
|
||||
#, kde-format
|
||||
msgid "Tobias Fella"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:168
|
||||
#: src/main.cpp:167
|
||||
#, kde-format
|
||||
msgid "James Graham"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Black Hat"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:169
|
||||
#: src/main.cpp:168
|
||||
#, kde-format
|
||||
msgid "Original author of Spectral"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Alexey Rusakov"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:170
|
||||
#: src/main.cpp:169
|
||||
#, kde-format
|
||||
msgid "Maintainer of Quotient"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
msgid "Your names"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:171
|
||||
#: src/main.cpp:170
|
||||
#, kde-format
|
||||
msgctxt "EMAIL OF TRANSLATORS"
|
||||
msgid "Your emails"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:175
|
||||
#: src/main.cpp:174
|
||||
#, kde-format
|
||||
msgid "A Qt5 library to write cross-platform clients for Matrix"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:177
|
||||
#: src/main.cpp:176
|
||||
#, kde-format
|
||||
msgctxt "<version number> (built against <possibly different version number>)"
|
||||
msgid "%1 (built against %2)"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:325
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Client for the matrix communication protocol"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:326
|
||||
#, kde-format
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr ""
|
||||
|
||||
#: src/main.cpp:327
|
||||
#, kde-format
|
||||
msgid "Ignore all SSL Errors, e.g., unsigned certificates."
|
||||
msgid "Supports matrix: url scheme"
|
||||
msgstr ""
|
||||
|
||||
#: src/matriximageprovider.cpp:38
|
||||
@@ -1084,7 +1079,7 @@ msgstr ""
|
||||
msgid "Encrypted Message"
|
||||
msgstr ""
|
||||
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:258
|
||||
#: src/notificationsmanager.cpp:203 src/qml/main.qml:257
|
||||
#, kde-format
|
||||
msgid "%1: %2"
|
||||
msgstr ""
|
||||
@@ -1186,7 +1181,7 @@ msgstr ""
|
||||
msgid "Send a message…"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:346
|
||||
#: src/qml/Component/ChatBox/ChatBar.qml:344
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel reply"
|
||||
@@ -1316,7 +1311,7 @@ msgstr ""
|
||||
msgid "View Location"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/FullScreenMap.qml:65
|
||||
#: src/qml/Component/FullScreenMap.qml:64
|
||||
#, kde-format
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
@@ -1347,13 +1342,13 @@ msgstr ""
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:200
|
||||
#: src/qml/Component/LocationPage.qml:17 src/qml/Panel/RoomDrawer.qml:201
|
||||
#, kde-format
|
||||
msgctxt "Locations on a map"
|
||||
msgid "Locations"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/LocationPage.qml:52
|
||||
#: src/qml/Component/LocationPage.qml:51
|
||||
#, kde-format
|
||||
msgid "There are no locations shared in this room."
|
||||
msgstr ""
|
||||
@@ -1380,7 +1375,7 @@ msgid "Url:"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Homeserver.qml:57
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgctxt "@action:button"
|
||||
msgid "Continue"
|
||||
@@ -1407,18 +1402,13 @@ msgstr ""
|
||||
msgid "Matrix ID:"
|
||||
msgstr ""
|
||||
|
||||
#: 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/Component/Login/Login.qml:46 src/qml/Component/Login/Sso.qml:45
|
||||
#: src/qml/Page/LoadingPage.qml:9
|
||||
#, kde-format
|
||||
msgid "Loading…"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Component/Login/Login.qml:47
|
||||
#: src/qml/Component/Login/Login.qml:46
|
||||
#, kde-format
|
||||
msgid "Already logged in"
|
||||
msgstr ""
|
||||
@@ -1473,13 +1463,6 @@ 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"
|
||||
@@ -1995,35 +1978,35 @@ msgstr ""
|
||||
msgid "Copy link"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/main.qml:300
|
||||
#: src/qml/main.qml:299
|
||||
#, kde-format
|
||||
msgctxt "@title:window"
|
||||
msgid "Session Verification"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/main.qml:312
|
||||
#: src/qml/main.qml:311
|
||||
#, kde-format
|
||||
msgid "User consent"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/main.qml:317
|
||||
#: src/qml/main.qml:316
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"Your homeserver requires you to agree to its terms and conditions before "
|
||||
"being able to use it. Please click the button below to read them."
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/main.qml:322
|
||||
#: src/qml/main.qml:321
|
||||
#, kde-format
|
||||
msgid "Open"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/main.qml:357
|
||||
#: src/qml/main.qml:356
|
||||
#, kde-format
|
||||
msgid "Start a chat"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/main.qml:359
|
||||
#: src/qml/main.qml:358
|
||||
#, kde-format
|
||||
msgid "Do you want to start a chat with %1?"
|
||||
msgstr ""
|
||||
@@ -2637,24 +2620,12 @@ msgstr ""
|
||||
msgid "Search in room directory"
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:95
|
||||
#, kde-format
|
||||
msgid "Muted room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:128
|
||||
#: src/qml/Page/RoomList/RoomDelegate.qml:127
|
||||
#, kde-format
|
||||
msgid "Configure room"
|
||||
msgstr ""
|
||||
@@ -2791,60 +2762,54 @@ msgstr ""
|
||||
msgid "Open developer tools"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:167
|
||||
#: src/qml/Panel/RoomDrawer.qml:168
|
||||
#, kde-format
|
||||
msgid "Search in this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:175
|
||||
#: src/qml/Panel/RoomDrawer.qml:176
|
||||
#, kde-format
|
||||
msgctxt "@action:title"
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Remove room from favorites"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:184
|
||||
#: src/qml/Panel/RoomDrawer.qml:185
|
||||
#, kde-format
|
||||
msgid "Make room favorite"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:195
|
||||
#: src/qml/Panel/RoomDrawer.qml:196
|
||||
#, kde-format
|
||||
msgid "Show locations for this room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:207
|
||||
#: src/qml/Panel/RoomDrawer.qml:208
|
||||
#, kde-format
|
||||
msgid "Members"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:218
|
||||
#: src/qml/Panel/RoomDrawer.qml:219
|
||||
#, kde-format
|
||||
msgid "Search user in room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:231
|
||||
#, kde-format
|
||||
msgctxt "@title"
|
||||
msgid "Invite a User"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:234
|
||||
#: src/qml/Panel/RoomDrawer.qml:236
|
||||
#, kde-format
|
||||
msgid "Invite user to room"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "%1 member"
|
||||
msgid_plural "%1 members"
|
||||
msgstr[0] ""
|
||||
|
||||
#: src/qml/Panel/RoomDrawer.qml:241
|
||||
#: src/qml/Panel/RoomDrawer.qml:243
|
||||
#, kde-format
|
||||
msgid "No member count"
|
||||
msgstr ""
|
||||
@@ -3332,6 +3297,12 @@ 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"
|
||||
@@ -3469,6 +3440,12 @@ msgstr ""
|
||||
msgid "Color theme"
|
||||
msgstr ""
|
||||
|
||||
#: 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"
|
||||
@@ -3622,7 +3599,7 @@ msgstr ""
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:33
|
||||
#, kde-format
|
||||
msgid "Show in System Tray"
|
||||
msgid "Close to system tray"
|
||||
msgstr ""
|
||||
|
||||
#: src/qml/Settings/GeneralSettingsPage.qml:47
|
||||
|
||||
@@ -10,7 +10,6 @@ configure_file(qml/Dialog/PowerLevelDialog.qml ${CMAKE_CURRENT_BINARY_DIR}/qml/D
|
||||
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)
|
||||
configure_file(qml/Component/Timeline/OsmLocationPlugin.qml ${CMAKE_CURRENT_BINARY_DIR}/qml/Component/Timeline/OsmLocationPlugin.qml)
|
||||
configure_file(qml/Component/NeochatMaximizeComponent.qml ${CMAKE_CURRENT_BINARY_DIR}/qml/Component/NeochatMaximizeComponent.qml)
|
||||
|
||||
configure_file(res.qrc ${CMAKE_CURRENT_SOURCE_DIR}/res.generated.qrc)
|
||||
|
||||
@@ -176,7 +175,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 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 ${QTKEYCHAIN_LIBRARIES} QCoro::Core)
|
||||
kconfig_add_kcfg_files(neochat GENERATE_MOC neochatconfig.kcfgc)
|
||||
|
||||
if(NEOCHAT_FLATPAK)
|
||||
|
||||
10
src/main.cpp
10
src/main.cpp
@@ -4,7 +4,6 @@
|
||||
#include <QCommandLineParser>
|
||||
#include <QIcon>
|
||||
#include <QNetworkProxyFactory>
|
||||
#include <QObject>
|
||||
#include <QQmlApplicationEngine>
|
||||
#include <QQmlContext>
|
||||
#include <QQmlNetworkAccessManagerFactory>
|
||||
@@ -186,8 +185,10 @@ 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
|
||||
@@ -324,18 +325,11 @@ 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);
|
||||
|
||||
|
||||
@@ -5,6 +5,9 @@
|
||||
|
||||
#include "controller.h"
|
||||
|
||||
#include <QDateTime>
|
||||
#include <QLocale>
|
||||
|
||||
#include <KLocalizedString>
|
||||
|
||||
#include <Quotient/csapi/device_management.h>
|
||||
@@ -52,10 +55,17 @@ QVariant DevicesModel::data(const QModelIndex &index, int role) const
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
case TimestampString:
|
||||
if (device.lastSeenTs) {
|
||||
return QDateTime::fromMSecsSinceEpoch(*device.lastSeenTs).toString(QLocale().dateTimeFormat(QLocale::ShortFormat));
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
case Type:
|
||||
if (device.deviceId == m_connection->deviceId()) {
|
||||
return This;
|
||||
}
|
||||
#ifdef Quotient_E2EE_ENABLED
|
||||
if (!m_connection->isKnownE2eeCapableDevice(m_connection->userId(), device.deviceId)) {
|
||||
return Unencrypted;
|
||||
}
|
||||
@@ -64,6 +74,9 @@ QVariant DevicesModel::data(const QModelIndex &index, int role) const
|
||||
} else {
|
||||
return Unverified;
|
||||
}
|
||||
#else
|
||||
return Unverified;
|
||||
#endif
|
||||
}
|
||||
return {};
|
||||
}
|
||||
@@ -81,6 +94,7 @@ QHash<int, QByteArray> DevicesModel::roleNames() const
|
||||
{DisplayName, "displayName"},
|
||||
{LastIp, "lastIp"},
|
||||
{LastTimestamp, "lastTimestamp"},
|
||||
{TimestampString, "timestamp"},
|
||||
{Type, "type"},
|
||||
};
|
||||
}
|
||||
@@ -147,6 +161,7 @@ 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()) {
|
||||
@@ -156,6 +171,7 @@ void DevicesModel::setConnection(Connection *connection)
|
||||
connect(m_connection, &Connection::finishedQueryingKeys, this, [this]() {
|
||||
fetchDevices();
|
||||
});
|
||||
#endif
|
||||
}
|
||||
|
||||
#include "moc_devicesmodel.cpp"
|
||||
|
||||
@@ -40,6 +40,7 @@ public:
|
||||
DisplayName, /**< Display name set by the user for this device. */
|
||||
LastIp, /**< The IP address where this device was last seen. */
|
||||
LastTimestamp, /**< The timestamp when this devices was last seen. */
|
||||
TimestampString, /**< String for the timestamp when this devices was last seen. */
|
||||
Type, /**< The category to sort this device into. */
|
||||
};
|
||||
Q_ENUM(Roles)
|
||||
|
||||
@@ -8,8 +8,6 @@
|
||||
|
||||
#include <QDebug>
|
||||
|
||||
#include <cmath>
|
||||
|
||||
using namespace Quotient;
|
||||
|
||||
bool operator<(const LiveLocationData &lhs, const LiveLocationData &rhs)
|
||||
@@ -90,11 +88,6 @@ 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 {};
|
||||
@@ -108,7 +101,6 @@ 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,7 +49,6 @@ 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)
|
||||
|
||||
|
||||
@@ -54,7 +54,7 @@ Comment[es]=Un cliente para Matrix, el protocolo de comunicaciones descentraliza
|
||||
Comment[eu]=Matrix, deszentralizatutako komunikazio protokolorako, bezero bat
|
||||
Comment[fi]=Hajautetun Matrix-viestintäyhteyskäytännön asiakasohjelma
|
||||
Comment[fr]=Un client pour « Matrix », le protocole décentralisé de communications.
|
||||
Comment[gl]=Un cliente para Matrix, o protocolo de comunicación descentralizada
|
||||
Comment[gl]=Un cliente para Matrix, o protocolo de comunicación descentralizada.
|
||||
Comment[hu]=Kliens a matrixhoz, a decentralizált kommunikációs protokollhoz
|
||||
Comment[ia]=Un cliente per Matrix, le protocollo de communication decentralisate
|
||||
Comment[id]=Sebuah klien untuk matrix, protokol komunikasi terdecentralisasi
|
||||
@@ -133,7 +133,7 @@ Comment[es]=Hay un mensaje nuevo
|
||||
Comment[eu]=Mezu berri bat dago
|
||||
Comment[fi]=Saapui uusi viesti
|
||||
Comment[fr]=Il y a un nouveau message
|
||||
Comment[gl]=Hai unha nova mensaxe
|
||||
Comment[gl]=Hai unha nova mensaxe.
|
||||
Comment[hu]=Új üzenet érkezett
|
||||
Comment[ia]=Il ha un nove message
|
||||
Comment[id]=Ada pesan baru
|
||||
@@ -209,7 +209,7 @@ Comment[es]=Hay una nueva invitación a una sala
|
||||
Comment[eu]=Gela baterako gonbidapen berri bat dago
|
||||
Comment[fi]=Uusi kutsu huoneeseen
|
||||
Comment[fr]=Il y a une nouvelle invitation dans un salon.
|
||||
Comment[gl]=Tes un novo convite para unha sala
|
||||
Comment[gl]=Tes un novo convite para unha sala.
|
||||
Comment[ia]=Il ha un nove invitation a un sala
|
||||
Comment[id]=Ada undangan baru ke sebuah ruangan
|
||||
Comment[ie]=Vu have un nov invitation a un chambre
|
||||
|
||||
@@ -53,7 +53,7 @@ Comment[es]=Buscar salas en NeoChat
|
||||
Comment[eu]=Bilatu gelak NeoChat-en
|
||||
Comment[fi]=Etsi huoneita NeoChatissä
|
||||
Comment[fr]=Trouver des salons dans NeoChat
|
||||
Comment[gl]=Atopa salas en NeoChat
|
||||
Comment[gl]=Atopa salas en NeoChat.
|
||||
Comment[ia]=Trova salas in NeoChat
|
||||
Comment[id]=Cari ruangan di NeoChat
|
||||
Comment[ie]=Trovar chambres in NeoChat
|
||||
|
||||
@@ -167,8 +167,6 @@ QQC2.Control {
|
||||
wrapMode: Text.Wrap
|
||||
readOnly: (currentRoom.usesEncryption && !Controller.encryptionSupported)
|
||||
|
||||
Accessible.description: placeholderText
|
||||
|
||||
Timer {
|
||||
id: repeatTimer
|
||||
interval: 5000
|
||||
|
||||
@@ -46,7 +46,6 @@ ApplicationWindow {
|
||||
asset: root.asset
|
||||
author: root.author
|
||||
isLive: true
|
||||
heading: NaN
|
||||
visible: !isNaN(root.latitude) && !isNaN(root.longitude)
|
||||
}
|
||||
MapItemView {
|
||||
|
||||
@@ -24,14 +24,11 @@ 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"
|
||||
@@ -58,19 +55,5 @@ 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,7 +36,6 @@ Kirigami.Page {
|
||||
}
|
||||
delegate: LocationMapItem {
|
||||
isLive: true
|
||||
heading: NaN
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -28,7 +28,6 @@ LoginStep {
|
||||
id: matrixIdField
|
||||
Kirigami.FormData.label: i18n("Matrix ID:")
|
||||
placeholderText: "@user:matrix.org"
|
||||
Accessible.name: i18n("Matrix ID")
|
||||
onTextChanged: {
|
||||
LoginHelper.matrixId = text
|
||||
}
|
||||
|
||||
@@ -38,7 +38,6 @@ LoginStep {
|
||||
id: passwordField
|
||||
onTextChanged: LoginHelper.password = text
|
||||
enabled: !LoginHelper.isLoggingIn
|
||||
Accessible.name: i18n("Password")
|
||||
|
||||
Component.onCompleted: {
|
||||
passwordField.forceActiveFocus()
|
||||
|
||||
@@ -28,7 +28,7 @@ Components.AlbumMaximizeComponent {
|
||||
|
||||
readonly property var currentJsonSource: model.data(model.index(content.currentIndex, 0), MessageEventModel.SourceRole)
|
||||
|
||||
@QTMULTIMEDIA_AUDIO_AUTOLOAD@
|
||||
autoLoad: false
|
||||
|
||||
downloadAction: Components.DownloadAction {
|
||||
id: downloadAction
|
||||
|
||||
@@ -57,7 +57,6 @@ TimelineContainer {
|
||||
asset: root.asset
|
||||
author: root.author
|
||||
isLive: true
|
||||
heading: NaN
|
||||
}
|
||||
|
||||
TapHandler {
|
||||
|
||||
@@ -27,7 +27,12 @@ TextEdit {
|
||||
/**
|
||||
* @brief Regex for detecting a message with a single emoji.
|
||||
*/
|
||||
readonly property var isEmoji: /^(<span style='.*'>)?(\u00a9|\u00ae|[\u20D0-\u2fff]|[\u3190-\u3300]|\ud83c[\ud000-\udfff]|\ud83d[\ud000-\udfff]|\ud83e[\ud000-\udfff])+(<\/span>)?$/
|
||||
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)
|
||||
|
||||
/**
|
||||
* @brief Regex for detecting a message with a spoiler.
|
||||
@@ -85,7 +90,10 @@ a{
|
||||
color: Kirigami.Theme.textColor
|
||||
selectedTextColor: Kirigami.Theme.highlightedTextColor
|
||||
selectionColor: Kirigami.Theme.highlightColor
|
||||
font.pointSize: !root.isReply && isEmoji.test(textMessage) ? Kirigami.Theme.defaultFont.pointSize * 4 : Kirigami.Theme.defaultFont.pointSize
|
||||
font {
|
||||
pointSize: !root.isReply && root.isEmoji ? Kirigami.Theme.defaultFont.pointSize * 4 : Kirigami.Theme.defaultFont.pointSize
|
||||
family: root.isEmoji ? 'emoji' : Kirigami.Theme.defaultFont.family
|
||||
}
|
||||
selectByMouse: !Kirigami.Settings.isMobile
|
||||
readOnly: true
|
||||
wrapMode: Text.Wrap
|
||||
|
||||
@@ -485,7 +485,7 @@ ColumnLayout {
|
||||
|
||||
Layout.maximumWidth: contentMaxWidth
|
||||
|
||||
active: root.isReply && root.reply
|
||||
active: root.isReply
|
||||
visible: active
|
||||
|
||||
sourceComponent: ReplyComponent {
|
||||
|
||||
@@ -193,12 +193,6 @@ 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,8 +31,6 @@ Delegates.RoundedItemDelegate {
|
||||
|
||||
readonly property bool hasNotifications: notificationCount > 0
|
||||
|
||||
Accessible.name: root.displayName
|
||||
|
||||
onPressAndHold: createRoomListContextMenu()
|
||||
|
||||
TapHandler {
|
||||
@@ -67,6 +65,7 @@ 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
|
||||
|
||||
@@ -156,7 +156,8 @@ Kirigami.OverlayDrawer {
|
||||
Layout.fillWidth: true
|
||||
|
||||
onClicked: {
|
||||
applicationWindow().pageStack.pushDialogLayer("qrc:/DevtoolsPage.qml", {room: room}, {title: i18n("Developer Tools")})
|
||||
applicationWindow().pageStack.layers.push("qrc:/DevtoolsPage.qml", {room: room}, {title: i18n("Developer Tools")})
|
||||
roomDrawer.close();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -228,7 +229,8 @@ Kirigami.OverlayDrawer {
|
||||
icon.name: "list-add-user"
|
||||
|
||||
onClicked: {
|
||||
applicationWindow().pageStack.pushDialogLayer("qrc:/InviteUserPage.qml", {room: roomDrawer.room}, {title: i18nc("@title", "Invite a User")})
|
||||
applicationWindow().pageStack.layers.push("qrc:/InviteUserPage.qml", {room: roomDrawer.room})
|
||||
roomDrawer.close();
|
||||
}
|
||||
|
||||
QQC2.ToolTip.text: i18n("Invite user to room")
|
||||
|
||||
@@ -15,7 +15,7 @@ MobileForm.AbstractFormDelegate {
|
||||
id: deviceDelegate
|
||||
|
||||
required property string id
|
||||
required property int lastTimestamp
|
||||
required property string timestamp
|
||||
required property string displayName
|
||||
|
||||
property bool editDeviceName: false
|
||||
@@ -49,7 +49,7 @@ MobileForm.AbstractFormDelegate {
|
||||
|
||||
QQC2.Label {
|
||||
Layout.fillWidth: true
|
||||
text: deviceDelegate.id + ", Last activity: " + (new Date(deviceDelegate.lastTimestamp)).toLocaleString(Qt.locale(), Locale.ShortFormat)
|
||||
text: i18nc("@label", "%1, Last activity: %2", deviceDelegate.id, deviceDelegate.timestamp)
|
||||
color: Kirigami.Theme.disabledTextColor
|
||||
font: Kirigami.Theme.smallFont
|
||||
elide: Text.ElideRight
|
||||
@@ -131,4 +131,4 @@ MobileForm.AbstractFormDelegate {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -30,7 +30,7 @@ Kirigami.ScrollablePage {
|
||||
|
||||
MobileForm.FormCheckDelegate {
|
||||
id: closeDelegate
|
||||
text: i18n("Show in System Tray")
|
||||
text: i18n("Close to system tray")
|
||||
checked: Config.systemTray
|
||||
visible: Controller.supportSystemTray
|
||||
enabled: !Config.isSystemTrayImmutable
|
||||
|
||||
@@ -242,7 +242,6 @@ Kirigami.ApplicationWindow {
|
||||
|
||||
function onInitiated() {
|
||||
if (Controller.accountCount === 0) {
|
||||
console.warn("9")
|
||||
pageStack.replace("qrc:/WelcomePage.qml", {});
|
||||
} else if (!roomListLoaded) {
|
||||
pageStack.replace(roomListComponent, {
|
||||
|
||||
@@ -27,7 +27,7 @@
|
||||
<file alias="PushNotification.qml">qml/RoomSettings/PushNotification.qml</file>
|
||||
<file alias="Categories.qml">qml/RoomSettings/Categories.qml</file>
|
||||
<file alias="Permissions.qml">qml/RoomSettings/Permissions.qml</file>
|
||||
<file alias="NeochatMaximizeComponent.qml">@CMAKE_CURRENT_BINARY_DIR@/qml/Component/NeochatMaximizeComponent.qml</file>
|
||||
<file alias="NeochatMaximizeComponent.qml">qml/Component/NeochatMaximizeComponent.qml</file>
|
||||
<file alias="FancyEffectsContainer.qml">qml/Component/FancyEffectsContainer.qml</file>
|
||||
<file alias="TypingPane.qml">qml/Component/TypingPane.qml</file>
|
||||
<file alias="ShimmerGradient.qml">qml/Component/ShimmerGradient.qml</file>
|
||||
|
||||
Reference in New Issue
Block a user