freedombox Debian release 22.20
-----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEfWrbdQ+RCFWJSEvmd8DHXntlCAgFAmMf3hoACgkQd8DHXntl CAhlfhAAyuGY0XAS9T9ZXIsrwoTxfD6TA/3VnOnkf8/HJBz6NwjODc37G4flGG7N hwIQTOU2BuG6ElA4fQ3GjzIJMMhkXdw4G5JlE/dygylMzP3VgVvrhXrw7NAHt53N qhCSEWWOHK4B69MDzxy2pGFtETMbonNNXgc4UBVNP3BeY9jCtIU6BK1HqTeDKcff oiH0g0Io2y1LAdWhbLhnaXN450FvgVX6PZ/oQnPPjrIgbSPcVki2SRpp95jDVA0G xLQ8BbQbP1D9+hTDFqNY8+QPTZN7NlBN6xXw5w6H33SCQhrroTx8BlR8ycgTj0TN 9/OXK66L1GyRmWT7T9fGov6QzxSyRR1MeE4SStJUZLxv9Rx017ZMGleCIEAcZaiD ZMsPBIxEgYavlkhegyMIcO/U3OnMbYj7VEhsgflBiQLSI2lZQIwbkQZIQS9ZenP5 1IAeHOG/StM1ElKOwVBkq8wXPAJXSjUUTlaZa58l4sipXxbDjZWC3No76VDy82lg LGXO26NLwKU/V/3L+ZQXdOBJCT9DvLa9Wm0mKFZoENJPkDF/ua/xtyrNije5i38D QPI3osylAvTvtXjiirrXtnret7O5IFg5tznuYOH2HTYyXDbUD9giWf/boJnltXnN CJyJQdUF82sn6VeJG5TJQkqnBmrQImLZdoJ5cXT3X8kSpFK3Q1I= =sqEa -----END PGP SIGNATURE----- gpgsig -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEfWrbdQ+RCFWJSEvmd8DHXntlCAgFAmMju7UACgkQd8DHXntl CAjx8A/7Bf7E5pbSJYXZNnqycs+Ap5tXJB7YR9h1HeA/j8NNdG3L65wO0E/QZYbH vXC9UI9M1zw+/Yt4eYHiCLvIm1R4+6cifiydCiwhJwqlq9gnKNspjyQO+2cWkhzD 7q8OrymFOg99wfAcrXB3kxS25/LGETPZ1MgA95OqAA4o85qokcxlJT9JvoWRtksn QiWxYAww1Xq5zAB5SWk4D7eVgfplylR007c23HGVRZUdvZfY5SomHJKcFBLqzjGt aBF0xEMYDGl/+3Qtrk4VjPcuX5foKVSEZjPGMX/CfgeF6kYUMNA6w56zXZUNmAvU Twi7RnepChB42qZUexx0osf6tXfh4YaFKbc1SBIxEDr0HBL2bZQcG9DvZ+sXAMII C8gOJomoW/8P2SD8YNAt7s2/GmyMITPgV+CJ8JDMSQw1L9YhS5INlHOyJkCKg2Uc 7vglW2ypwSH64Xbrf60p8Eu0wu7b4ajN8rRSetTB46BfK01/JmQBjCVPF0EjnPD3 y4rdN0DUB8z1bbF98RFn7Hhi6liyxq6tnhI+/y3i20CUxke7y+nrVSBxNPspjobQ u0/lP6mR8pjtE/vV865IZyFCfLEMyU4o/K0qiXC30/NUbFiV/UeFK0c4AoxuD6Qu HPHsTRHGh/AmfchWzUCeZkWmCZ0S6V3cqbAyBccEd5jV3PS4sD0= =u6WI -----END PGP SIGNATURE----- Merge tag 'v22.20' into debian/bullseye-backports freedombox Debian release 22.20 Signed-off-by: James Valleroy <jvalleroy@mailbox.org>
@ -12,20 +12,20 @@ import shutil
|
|||||||
import socket
|
import socket
|
||||||
import subprocess
|
import subprocess
|
||||||
import sys
|
import sys
|
||||||
from distutils.version import LooseVersion as LV
|
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
from ruamel.yaml import YAML, scalarstring
|
from ruamel.yaml import YAML, scalarstring
|
||||||
|
|
||||||
from plinth import action_utils
|
from plinth import action_utils
|
||||||
|
from plinth.version import Version
|
||||||
|
|
||||||
EJABBERD_CONFIG = '/etc/ejabberd/ejabberd.yml'
|
EJABBERD_CONFIG = '/etc/ejabberd/ejabberd.yml'
|
||||||
EJABBERD_BACKUP = '/var/log/ejabberd/ejabberd.dump'
|
EJABBERD_BACKUP = '/var/log/ejabberd/ejabberd.dump'
|
||||||
EJABBERD_BACKUP_NEW = '/var/log/ejabberd/ejabberd_new.dump'
|
EJABBERD_BACKUP_NEW = '/var/log/ejabberd/ejabberd_new.dump'
|
||||||
EJABBERD_ORIG_CERT = '/etc/ejabberd/ejabberd.pem'
|
EJABBERD_ORIG_CERT = '/etc/ejabberd/ejabberd.pem'
|
||||||
EJABBERD_MANAGED_COTURN = '/etc/ejabberd/freedombox_managed_coturn'
|
EJABBERD_MANAGED_COTURN = '/etc/ejabberd/freedombox_managed_coturn'
|
||||||
IQDISC_DEPRECATED_VERSION = LV('18.03')
|
IQDISC_DEPRECATED_VERSION = Version('18.03')
|
||||||
MOD_IRC_DEPRECATED_VERSION = LV('18.06')
|
MOD_IRC_DEPRECATED_VERSION = Version('18.06')
|
||||||
|
|
||||||
yaml = YAML()
|
yaml = YAML()
|
||||||
yaml.allow_duplicate_keys = True
|
yaml.allow_duplicate_keys = True
|
||||||
@ -433,7 +433,7 @@ def _get_version():
|
|||||||
version_info = output.strip().split('\n')[-1].split()
|
version_info = output.strip().split('\n')[-1].split()
|
||||||
if version_info:
|
if version_info:
|
||||||
version = str(version_info[1])
|
version = str(version_info[1])
|
||||||
return LV(version)
|
return Version(version)
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -74,6 +74,12 @@ Explanation: python3-unpaddedbase64 >= 2.1.0~
|
|||||||
Package: python3-unpaddedbase64
|
Package: python3-unpaddedbase64
|
||||||
Pin: release a=bullseye-backports
|
Pin: release a=bullseye-backports
|
||||||
Pin-Priority: 500
|
Pin-Priority: 500
|
||||||
|
|
||||||
|
Explanation: matrix-synapse >= 1.65.0-1 requires
|
||||||
|
Explanation: python3-canonicaljson >= 1.6.2~
|
||||||
|
Package: python3-canonicaljson
|
||||||
|
Pin: release a=bullseye-backports
|
||||||
|
Pin-Priority: 500
|
||||||
'''
|
'''
|
||||||
|
|
||||||
DIST_UPGRADE_OBSOLETE_PACKAGES: List[str] = []
|
DIST_UPGRADE_OBSOLETE_PACKAGES: List[str] = []
|
||||||
|
|||||||
59
debian/changelog
vendored
@ -1,3 +1,62 @@
|
|||||||
|
freedombox (22.20) unstable; urgency=medium
|
||||||
|
|
||||||
|
[ atilluF ]
|
||||||
|
* Translated using Weblate (Italian)
|
||||||
|
|
||||||
|
[ Burak Yavuz ]
|
||||||
|
* Translated using Weblate (Turkish)
|
||||||
|
|
||||||
|
[ Eric ]
|
||||||
|
* Translated using Weblate (Chinese (Simplified))
|
||||||
|
|
||||||
|
[ Jiří Podhorecký ]
|
||||||
|
* Translated using Weblate (Czech)
|
||||||
|
|
||||||
|
[ Veiko Aasa ]
|
||||||
|
* tests: functional: Assert app is not installed after uninstallation
|
||||||
|
* samba: Ignore mounted files when listing mounts
|
||||||
|
* samba: Update client apps information
|
||||||
|
|
||||||
|
[ Sunil Mohan Adapa ]
|
||||||
|
* ejabberd: tests: functional: Ensure jsxc is installed
|
||||||
|
* zoph: tests: functional: Simplify finding the form to submit
|
||||||
|
* shaarli: tests: functional: Specify setup form submission button
|
||||||
|
* ikiwiki: tests: functional: Find forms more accurately
|
||||||
|
* gitweb: Use generic form template for create/edit repository
|
||||||
|
* gitweb: tests: functional: Find forms more accurately
|
||||||
|
* gitweb: Fix issue with page not refreshing during uninstall
|
||||||
|
* calibre: tests: functional: Find forms more specifically
|
||||||
|
* bepasty: Use generic form template for add password view
|
||||||
|
* bepasty: tests: functional: Minor refactor for form submission
|
||||||
|
* first_boot: tests: functional: Find form more specifically
|
||||||
|
* sharing: tests: functional: Find forms more accurately
|
||||||
|
* sso: tests: functional: Find forms more accurately
|
||||||
|
* backups: Use generic form template for create and schedule views
|
||||||
|
* backups: tests: functional: Find forms more accurately
|
||||||
|
* templates: form: Specify a form class for use with functional tests
|
||||||
|
* snapshot: tests: functional: Minor refactoring for form submission
|
||||||
|
* wordpress: tests: functional: Find forms more specifically
|
||||||
|
* users: tests: functional: Find forms more accurately
|
||||||
|
* tests: functional: Force specifying form to submit more accurately
|
||||||
|
* tests: functional: Wait for installation to complete fully
|
||||||
|
|
||||||
|
[ James Valleroy ]
|
||||||
|
* debian: Add Italian debconf translation (Closes: #1019157)
|
||||||
|
* version: Compare Debian package version numbers
|
||||||
|
* firewall: Allow upgrade from any version to 1.2.*
|
||||||
|
* locale: Update translation strings
|
||||||
|
* doc: Fetch latest manual
|
||||||
|
|
||||||
|
[ Coucouf ]
|
||||||
|
* Translated using Weblate (French)
|
||||||
|
* Translated using Weblate (French)
|
||||||
|
|
||||||
|
[ nbenedek ]
|
||||||
|
* matrixsynapse: Allow matrix-synapse >= 1.65 to install successfully
|
||||||
|
* d/maintscript: remove tahoe and mldonkey apache conf files
|
||||||
|
|
||||||
|
-- James Valleroy <jvalleroy@mailbox.org> Mon, 12 Sep 2022 21:07:14 -0400
|
||||||
|
|
||||||
freedombox (22.19~bpo11+1) bullseye-backports; urgency=medium
|
freedombox (22.19~bpo11+1) bullseye-backports; urgency=medium
|
||||||
|
|
||||||
* Rebuild for bullseye-backports.
|
* Rebuild for bullseye-backports.
|
||||||
|
|||||||
2
debian/freedombox.maintscript
vendored
@ -16,6 +16,8 @@ rm_conffile /etc/plinth/modules-enabled/coquelicot 20.14~
|
|||||||
rm_conffile /etc/plinth/modules-enabled/diaspora 21.16~
|
rm_conffile /etc/plinth/modules-enabled/diaspora 21.16~
|
||||||
rm_conffile /etc/plinth/modules-enabled/monkeysphere 21.16~
|
rm_conffile /etc/plinth/modules-enabled/monkeysphere 21.16~
|
||||||
rm_conffile /etc/plinth/modules-enabled/tahoe 21.16~
|
rm_conffile /etc/plinth/modules-enabled/tahoe 21.16~
|
||||||
|
rm_conffile /etc/apache2/conf-available/tahoe-plinth.conf 21.16~
|
||||||
rm_conffile /etc/plinth/modules-enabled/mldonkey 22.4~
|
rm_conffile /etc/plinth/modules-enabled/mldonkey 22.4~
|
||||||
|
rm_conffile /etc/apache2/conf-available/mldonkey-freedombox.conf 22.4~
|
||||||
rm_conffile /etc/apache2/sites-available/plinth.conf 22.16~
|
rm_conffile /etc/apache2/sites-available/plinth.conf 22.16~
|
||||||
rm_conffile /etc/apache2/sites-available/plinth-ssl.conf 22.16~
|
rm_conffile /etc/apache2/sites-available/plinth-ssl.conf 22.16~
|
||||||
|
|||||||
35
debian/po/it.po
vendored
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
# freedombox po-debconf italian translation
|
||||||
|
# Copyright (C) 2022 freedombox's copyright holder
|
||||||
|
# This file is distributed under the same license as the freedombox package.
|
||||||
|
# Ceppo <ceppo@oziosi.org>, 2022.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: freedombox\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2022-08-18 16:09+0000\n"
|
||||||
|
"PO-Revision-Date: 2022-08-25 00:00+0000\n"
|
||||||
|
"Last-Translator: Ceppo <ceppo@oziosi.org>\n"
|
||||||
|
"Language-Team: Italian <debian-l10n-italian@lists.debian.org>\n"
|
||||||
|
"Language: it\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#. Type: note
|
||||||
|
#. Description
|
||||||
|
#: ../freedombox.templates:1001
|
||||||
|
msgid "FreedomBox first wizard secret - ${secret}"
|
||||||
|
msgstr "Codice del primo wizard di FreedomBox - ${secret}"
|
||||||
|
|
||||||
|
#. Type: note
|
||||||
|
#. Description
|
||||||
|
#: ../freedombox.templates:1001
|
||||||
|
msgid ""
|
||||||
|
"Please note down the above secret. You will be asked to enter this in the "
|
||||||
|
"first screen after you launch the FreedomBox web interface. In case you lose "
|
||||||
|
"it, you can retrieve it by running the following command:"
|
||||||
|
msgstr ""
|
||||||
|
"Annotare il codice indicato sopra. Sarà richiesto di inserirlo nella prima "
|
||||||
|
"schermata dopo l'avvio dell'interfaccia web di FreedomBox. Qualora venisse "
|
||||||
|
"perso, sarebbe possibile recuperarlo eseguendo il comando seguente:"
|
||||||
@ -8,6 +8,44 @@ For more technical details, see the [[https://salsa.debian.org/freedombox-team/f
|
|||||||
|
|
||||||
The following are the release notes for each !FreedomBox version.
|
The following are the release notes for each !FreedomBox version.
|
||||||
|
|
||||||
|
== FreedomBox 22.20 (2022-09-12) ==
|
||||||
|
|
||||||
|
=== Highlights ===
|
||||||
|
|
||||||
|
* matrixsynapse: Allow matrix-synapse >= 1.65 to install successfully
|
||||||
|
|
||||||
|
=== Other Changes ===
|
||||||
|
|
||||||
|
* backups: Use generic form template for create and schedule views
|
||||||
|
* backups: tests: functional: Find forms more accurately
|
||||||
|
* bepasty: Use generic form template for add password view
|
||||||
|
* bepasty: tests: functional: Minor refactor for form submission
|
||||||
|
* calibre: tests: functional: Find forms more specifically
|
||||||
|
* d/maintscript: remove tahoe and mldonkey apache conf files
|
||||||
|
* debian: Add Italian debconf translation
|
||||||
|
* ejabberd: tests: functional: Ensure jsxc is installed
|
||||||
|
* firewall: Allow upgrade from any version to 1.2.*
|
||||||
|
* first_boot: tests: functional: Find form more specifically
|
||||||
|
* gitweb: Fix issue with page not refreshing during uninstall
|
||||||
|
* gitweb: Use generic form template for create/edit repository
|
||||||
|
* gitweb: tests: functional: Find forms more accurately
|
||||||
|
* ikiwiki: tests: functional: Find forms more accurately
|
||||||
|
* locale: Update translations for Chinese (Simplified), Czech, French, Italian, Turkish
|
||||||
|
* samba: Ignore mounted files when listing mounts
|
||||||
|
* samba: Update client apps information
|
||||||
|
* shaarli: tests: functional: Specify setup form submission button
|
||||||
|
* sharing: tests: functional: Find forms more accurately
|
||||||
|
* snapshot: tests: functional: Minor refactoring for form submission
|
||||||
|
* sso: tests: functional: Find forms more accurately
|
||||||
|
* templates: form: Specify a form class for use with functional tests
|
||||||
|
* tests: functional: Assert app is not installed after uninstallation
|
||||||
|
* tests: functional: Force specifying form to submit more accurately
|
||||||
|
* tests: functional: Wait for installation to complete fully
|
||||||
|
* users: tests: functional: Find forms more accurately
|
||||||
|
* version: Compare Debian package version numbers
|
||||||
|
* wordpress: tests: functional: Find forms more specifically
|
||||||
|
* zoph: tests: functional: Simplify finding the form to submit
|
||||||
|
|
||||||
== FreedomBox 22.19 (2022-08-29) ==
|
== FreedomBox 22.19 (2022-08-29) ==
|
||||||
|
|
||||||
=== Highlights ===
|
=== Highlights ===
|
||||||
|
|||||||
@ -14,7 +14,7 @@ Configurar tiene algunas opciones generales de configuración:
|
|||||||
. ''Hostname'' es el nombre local por el que otros dispositivos pueden alcanzar tu !FreedomBox desde la red local. El ''hostname'' por defecto es ''freedombox''.
|
. ''Hostname'' es el nombre local por el que otros dispositivos pueden alcanzar tu !FreedomBox desde la red local. El ''hostname'' por defecto es ''freedombox''.
|
||||||
|
|
||||||
=== Nombre de Dominio ===
|
=== Nombre de Dominio ===
|
||||||
. El Nombre de Dominio es el nombre global por el que otros dispositivos pueden alcanzar tu !FreedomBox desde la Internet. El valor que se asigne aquí es el que usarán [[FreedomBox/Manual/ejabberd|Chat Server (XMPP)]], [[FreedomBox/Manual/MatrixSynapse|Matrix Synapse]], [[FreedomBox/Manual/LetsEncrypt|Certificates (Let's Encrypt)]], y [[FreedomBox/Manual/Monkeysphere|Monkeysphere]].
|
. El Nombre de Dominio es el nombre global por el que otros dispositivos pueden alcanzar tu !FreedomBox desde la Internet. El valor que se asigne aquí es el que usarán [[FreedomBox/Manual/ejabberd|Chat Server (XMPP)]], [[FreedomBox/Manual/MatrixSynapse|Matrix Synapse]] y [[FreedomBox/Manual/LetsEncrypt|Certificates (Let's Encrypt)]].
|
||||||
|
|
||||||
=== Página Principal (home) del Servidor Web ===
|
=== Página Principal (home) del Servidor Web ===
|
||||||
. Esta es una opción avanzada que te permite establecer como ''home'' algo diferente al servicio !FreedomBox para que se sirva a quien acceda con el navegador al nombre de dominio de !FreedomBox. Por ejemplo, si el nombre de dominio de tu !FreedomBox es https://myfreedombox.rocks y estableces a !MediaWiki como ''home'', al visitar https://mifreedombox.mola te llevará a https://myfreedombox.rocks/mediawiki/ en vez de a https://mifreedombox.mola/plinth/.
|
. Esta es una opción avanzada que te permite establecer como ''home'' algo diferente al servicio !FreedomBox para que se sirva a quien acceda con el navegador al nombre de dominio de !FreedomBox. Por ejemplo, si el nombre de dominio de tu !FreedomBox es https://myfreedombox.rocks y estableces a !MediaWiki como ''home'', al visitar https://mifreedombox.mola te llevará a https://myfreedombox.rocks/mediawiki/ en vez de a https://mifreedombox.mola/plinth/.
|
||||||
|
|||||||
@ -1,30 +0,0 @@
|
|||||||
#language es
|
|
||||||
|
|
||||||
~- [[DebianWiki/EditorGuide#translation|Translation(s)]]: [[FreedomBox/Manual/Monkeysphere|English]] - Español -~
|
|
||||||
|
|
||||||
<<TableOfContents()>>
|
|
||||||
|
|
||||||
## BEGIN_INCLUDE
|
|
||||||
|
|
||||||
== Monkeysphere ==
|
|
||||||
|
|
||||||
Con Monkeysphere se puede generar una clave ''OpenPGP'' para cada dominio configurado para servir SSH. La clave pública OpenPGP se puede subir entonces a los servidores de claves OpenPGP. Los usuarios que se conecten mediante SSH podrán verificar que se están conectando a la máquina correcta. Para que los usuarios puedan confiar en la clave alguien (generalmente el dueño de la máquina) tiene que firmarla siguiendo el proceso normal de firmado de claves OpenPGP. Para más detalles, ver la [[http://web.monkeysphere.info/getting-started-ssh/|documentación de Monkeysphere SSH]].
|
|
||||||
|
|
||||||
Monkeysphere también puede generar una clave OpenPGP para cada certificado de servidor web seguro (HTTPS) instalado en esta máquina. La clave pública OpenPGP se puede subir entonces a los servidores de claves OpenPGP. Los usuarios que se conecten mediante HTTPS podrán verificar que se están conectando a la máquina correcta. Para validar el certificado el usuario deberá instalar cierto software disponible en el [[https://web.monkeysphere.info/download/|sitio web de Monkeysphere]].
|
|
||||||
|
|
||||||
|
|
||||||
=== Enlaces externos ===
|
|
||||||
|
|
||||||
* Proyecto original: http://web.monkeysphere.info
|
|
||||||
* Documentación de uso: http://web.monkeysphere.info/doc/
|
|
||||||
|
|
||||||
|
|
||||||
## END_INCLUDE
|
|
||||||
|
|
||||||
Volver a la [[es/FreedomBox/Features|descripción de Funcionalidades]] o a las páginas del [[es/FreedomBox/Manual|manual]].
|
|
||||||
|
|
||||||
|
|
||||||
<<Include(es/FreedomBox/Portal)>>
|
|
||||||
|
|
||||||
----
|
|
||||||
CategoryFreedomBox
|
|
||||||
56
doc/manual/es/RSSBridge.raw.wiki
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
#language es
|
||||||
|
|
||||||
|
<<Include(FreedomBox/Manual/RSSBridge, ,from="^##TAG:TRANSLATION-HEADER-START",to="^##TAG:TRANSLATION-HEADER-END")>>
|
||||||
|
|
||||||
|
<<TableOfContents()>>
|
||||||
|
|
||||||
|
## BEGIN_INCLUDE
|
||||||
|
|
||||||
|
== RSS Bridge (Generador de feeds RSS) ==
|
||||||
|
||<tablestyle="float: right;"> {{attachment:FreedomBox/Manual/RSSBridge/rssbridge-icon_en_V01.png|Icono de RSS Bridge}} ||
|
||||||
|
|
||||||
|
'''Disponible desde''': versión 22.16
|
||||||
|
|
||||||
|
=== ¿Qué es RSS Bridge? ===
|
||||||
|
RSS-Bridge es una aplicación web capaz de generar feeds RSS y Atom para sitios web que no los tienen. Por ejemplo, con ayuda de RSS Bridge puedes suscribirte a canales de !YouTube sin necesidad de darte de alta.
|
||||||
|
|
||||||
|
=== Ejemplo de uso ===
|
||||||
|
==== Suscribirse a una cuenta de YouTube ====
|
||||||
|
En este ejemplo veremos una de las maneras de suscribirse a un canal de !YouTube dado.
|
||||||
|
|
||||||
|
1. Visita el canal de !YouTube y copia su nombre al portapapeles.
|
||||||
|
{{attachment:FreedomBox/Manual/RSSBridge/copy_channel_name.png|Copiar el nombre del canal de YouTube|width=800}}
|
||||||
|
2.#2 Encuentra "!YouTube Bridge" y haz clic en '''mostrar más'''.
|
||||||
|
{{attachment:FreedomBox/Manual/RSSBridge/show_more.png|Mostrar más|width=800}}
|
||||||
|
3.#3 Pega el nombre del canal en la sección '''Nombre personalizado''' y haz clic en '''Generar Feed'''.
|
||||||
|
{{attachment:FreedomBox/Manual/RSSBridge/paste_channel_name.png|Pegar el nombre del canal|width=800}}
|
||||||
|
4.#4 De entre los tipos de feed disponibles selecciona '''Atom'''. Si empleas un navegador basado en Chromium esto abrirá el feed Atom en una pestaña nueva, que podrás copiar fácilmente a un lector de feeds como [[es/FreedomBox/Manual/TinyTinyRSS|Tiny Tiny RSS]].
|
||||||
|
{{attachment:FreedomBox/Manual/RSSBridge/select_atom_feed.png|Seleccionar feed Atom|width=800}}
|
||||||
|
|
||||||
|
=== Suscribirse a un feed con Tiny Tiny RSS ===
|
||||||
|
1. Copia la URL que generó RSS Bridge.
|
||||||
|
{{attachment:FreedomBox/Manual/RSSBridge/copy_url.png|Copiar la URL|width=800}}
|
||||||
|
2.#2 En Tiny Tiny RSS selecciona '''Suscribirse a un feed''' en el menú desplegable de la derecha.
|
||||||
|
3. Pega el enlace generado del paso 1 en la caja de texto y selecciona '''Este feed requiere autenticación'''.
|
||||||
|
4. Envía el nombre de usuario en !FreedomBox y la contraseña, y haz clic en '''Suscribirse'''.
|
||||||
|
{{attachment:FreedomBox/Manual/RSSBridge/subscribe_to_feed.png|Suscribirse a un feed|width=800}}
|
||||||
|
|
||||||
|
Para una descripción más detallada de Tiny Tiny RSS, visita [[es/FreedomBox/Manual/TinyTinyRSS|su página en el manual]].
|
||||||
|
|
||||||
|
|
||||||
|
=== Enlaces externos ===
|
||||||
|
|
||||||
|
* Sitio web: https://rss-bridge.github.io/rss-bridge/
|
||||||
|
* Documentación de usuario: https://rss-bridge.github.io/rss-bridge/General/Project_goals.html
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## END_INCLUDE
|
||||||
|
|
||||||
|
Volver a la [[es/FreedomBox/Features|descripción de Funcionalidades]] o a las páginas del [[es/FreedomBox/Manual|manual]].
|
||||||
|
|
||||||
|
|
||||||
|
<<Include(es/FreedomBox/Portal)>>
|
||||||
|
|
||||||
|
----
|
||||||
|
CategoryFreedomBox
|
||||||
@ -8,6 +8,44 @@ For more technical details, see the [[https://salsa.debian.org/freedombox-team/f
|
|||||||
|
|
||||||
The following are the release notes for each !FreedomBox version.
|
The following are the release notes for each !FreedomBox version.
|
||||||
|
|
||||||
|
== FreedomBox 22.20 (2022-09-12) ==
|
||||||
|
|
||||||
|
=== Highlights ===
|
||||||
|
|
||||||
|
* matrixsynapse: Allow matrix-synapse >= 1.65 to install successfully
|
||||||
|
|
||||||
|
=== Other Changes ===
|
||||||
|
|
||||||
|
* backups: Use generic form template for create and schedule views
|
||||||
|
* backups: tests: functional: Find forms more accurately
|
||||||
|
* bepasty: Use generic form template for add password view
|
||||||
|
* bepasty: tests: functional: Minor refactor for form submission
|
||||||
|
* calibre: tests: functional: Find forms more specifically
|
||||||
|
* d/maintscript: remove tahoe and mldonkey apache conf files
|
||||||
|
* debian: Add Italian debconf translation
|
||||||
|
* ejabberd: tests: functional: Ensure jsxc is installed
|
||||||
|
* firewall: Allow upgrade from any version to 1.2.*
|
||||||
|
* first_boot: tests: functional: Find form more specifically
|
||||||
|
* gitweb: Fix issue with page not refreshing during uninstall
|
||||||
|
* gitweb: Use generic form template for create/edit repository
|
||||||
|
* gitweb: tests: functional: Find forms more accurately
|
||||||
|
* ikiwiki: tests: functional: Find forms more accurately
|
||||||
|
* locale: Update translations for Chinese (Simplified), Czech, French, Italian, Turkish
|
||||||
|
* samba: Ignore mounted files when listing mounts
|
||||||
|
* samba: Update client apps information
|
||||||
|
* shaarli: tests: functional: Specify setup form submission button
|
||||||
|
* sharing: tests: functional: Find forms more accurately
|
||||||
|
* snapshot: tests: functional: Minor refactoring for form submission
|
||||||
|
* sso: tests: functional: Find forms more accurately
|
||||||
|
* templates: form: Specify a form class for use with functional tests
|
||||||
|
* tests: functional: Assert app is not installed after uninstallation
|
||||||
|
* tests: functional: Force specifying form to submit more accurately
|
||||||
|
* tests: functional: Wait for installation to complete fully
|
||||||
|
* users: tests: functional: Find forms more accurately
|
||||||
|
* version: Compare Debian package version numbers
|
||||||
|
* wordpress: tests: functional: Find forms more specifically
|
||||||
|
* zoph: tests: functional: Simplify finding the form to submit
|
||||||
|
|
||||||
== FreedomBox 22.19 (2022-08-29) ==
|
== FreedomBox 22.19 (2022-08-29) ==
|
||||||
|
|
||||||
=== Highlights ===
|
=== Highlights ===
|
||||||
|
|||||||
@ -14,9 +14,9 @@ También permite a !FreedomBox detectar otros dispositivos y servicios que está
|
|||||||
|
|
||||||
La Detección de Servicios no es esencial y solo funciona en redes internas. Se puede deshabilitar para mejorar la seguridad especialmente cuando la conectas a una red local hostil.
|
La Detección de Servicios no es esencial y solo funciona en redes internas. Se puede deshabilitar para mejorar la seguridad especialmente cuando la conectas a una red local hostil.
|
||||||
|
|
||||||
== Resolución de problemas ==
|
=== Resolución de problemas ===
|
||||||
|
|
||||||
=== No se accede con <hostname>.local ===
|
==== No se accede con <hostname>.local ====
|
||||||
|
|
||||||
Si <hostname>.local no responde, quizá solo haya que reactivar en !FreedomBox la funcionalidad de Detección de Servicios.
|
Si <hostname>.local no responde, quizá solo haya que reactivar en !FreedomBox la funcionalidad de Detección de Servicios.
|
||||||
Vé a '''Sistema -> Detección de Servicios''', desliza el interruptor a la izquierda para deshabilitarla (se vuelve gris) y luego otra vez a la derecha para volver a habilitarla (se vuelve azul).
|
Vé a '''Sistema -> Detección de Servicios''', desliza el interruptor a la izquierda para deshabilitarla (se vuelve gris) y luego otra vez a la derecha para volver a habilitarla (se vuelve azul).
|
||||||
|
|||||||
@ -37,6 +37,7 @@
|
|||||||
<<Include(es/FreedomBox/Manual/Quassel, , from="## BEGIN_INCLUDE", to="## END_INCLUDE")>>
|
<<Include(es/FreedomBox/Manual/Quassel, , from="## BEGIN_INCLUDE", to="## END_INCLUDE")>>
|
||||||
<<Include(es/FreedomBox/Manual/Radicale, , from="## BEGIN_INCLUDE", to="## END_INCLUDE")>>
|
<<Include(es/FreedomBox/Manual/Radicale, , from="## BEGIN_INCLUDE", to="## END_INCLUDE")>>
|
||||||
<<Include(es/FreedomBox/Manual/Roundcube, , from="## BEGIN_INCLUDE", to="## END_INCLUDE")>>
|
<<Include(es/FreedomBox/Manual/Roundcube, , from="## BEGIN_INCLUDE", to="## END_INCLUDE")>>
|
||||||
|
<<Include(es/FreedomBox/Manual/RSSBridge, , from="## BEGIN_INCLUDE", to="## END_INCLUDE")>>
|
||||||
<<Include(es/FreedomBox/Manual/Samba, , from="## BEGIN_INCLUDE", to="## END_INCLUDE")>>
|
<<Include(es/FreedomBox/Manual/Samba, , from="## BEGIN_INCLUDE", to="## END_INCLUDE")>>
|
||||||
<<Include(es/FreedomBox/Manual/Searx, , from="## BEGIN_INCLUDE", to="## END_INCLUDE")>>
|
<<Include(es/FreedomBox/Manual/Searx, , from="## BEGIN_INCLUDE", to="## END_INCLUDE")>>
|
||||||
<<Include(es/FreedomBox/Manual/Shadowsocks, , from="## BEGIN_INCLUDE", to="## END_INCLUDE")>>
|
<<Include(es/FreedomBox/Manual/Shadowsocks, , from="## BEGIN_INCLUDE", to="## END_INCLUDE")>>
|
||||||
@ -65,7 +66,6 @@
|
|||||||
<<Include(es/FreedomBox/Manual/Diagnostics, , from="## BEGIN_INCLUDE", to="## END_INCLUDE")>>
|
<<Include(es/FreedomBox/Manual/Diagnostics, , from="## BEGIN_INCLUDE", to="## END_INCLUDE")>>
|
||||||
<<Include(es/FreedomBox/Manual/DateTime, , from="## BEGIN_INCLUDE", to="## END_INCLUDE")>>
|
<<Include(es/FreedomBox/Manual/DateTime, , from="## BEGIN_INCLUDE", to="## END_INCLUDE")>>
|
||||||
<<Include(es/FreedomBox/Manual/LetsEncrypt, , from="## BEGIN_INCLUDE", to="## END_INCLUDE")>>
|
<<Include(es/FreedomBox/Manual/LetsEncrypt, , from="## BEGIN_INCLUDE", to="## END_INCLUDE")>>
|
||||||
<<Include(es/FreedomBox/Manual/Monkeysphere, , from="## BEGIN_INCLUDE", to="## END_INCLUDE")>>
|
|
||||||
<<Include(es/FreedomBox/Manual/PageKite, , from="## BEGIN_INCLUDE", to="## END_INCLUDE")>>
|
<<Include(es/FreedomBox/Manual/PageKite, , from="## BEGIN_INCLUDE", to="## END_INCLUDE")>>
|
||||||
<<Include(es/FreedomBox/Manual/Performance, , from="## BEGIN_INCLUDE", to="## END_INCLUDE")>>
|
<<Include(es/FreedomBox/Manual/Performance, , from="## BEGIN_INCLUDE", to="## END_INCLUDE")>>
|
||||||
<<Include(es/FreedomBox/Manual/Security, , from="## BEGIN_INCLUDE", to="## END_INCLUDE")>>
|
<<Include(es/FreedomBox/Manual/Security, , from="## BEGIN_INCLUDE", to="## END_INCLUDE")>>
|
||||||
|
|||||||
BIN
doc/manual/es/images/copy_channel_name.png
Normal file
|
After Width: | Height: | Size: 192 KiB |
BIN
doc/manual/es/images/copy_url.png
Normal file
|
After Width: | Height: | Size: 325 KiB |
BIN
doc/manual/es/images/paste_channel_name.png
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
doc/manual/es/images/rssbridge-icon_en_V01.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
doc/manual/es/images/select_atom_feed.png
Normal file
|
After Width: | Height: | Size: 206 KiB |
BIN
doc/manual/es/images/show_more.png
Normal file
|
After Width: | Height: | Size: 67 KiB |
BIN
doc/manual/es/images/subscribe_to_feed.png
Normal file
|
After Width: | Height: | Size: 38 KiB |
@ -3,4 +3,4 @@
|
|||||||
Package init file.
|
Package init file.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__version__ = '22.19'
|
__version__ = '22.20'
|
||||||
|
|||||||
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2022-03-31 09:12+0000\n"
|
"PO-Revision-Date: 2022-03-31 09:12+0000\n"
|
||||||
"Last-Translator: abidin toumi <abidin24@disroot.org>\n"
|
"Last-Translator: abidin toumi <abidin24@disroot.org>\n"
|
||||||
"Language-Team: Arabic <https://hosted.weblate.org/projects/freedombox/"
|
"Language-Team: Arabic <https://hosted.weblate.org/projects/freedombox/"
|
||||||
@ -406,7 +406,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -455,7 +455,7 @@ msgid "Create Location"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -472,19 +472,6 @@ msgstr ""
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -511,7 +498,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -595,99 +582,99 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -845,20 +832,20 @@ msgid "Configuration updated."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1043,12 +1030,12 @@ msgstr ""
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2181,19 +2168,19 @@ msgstr ""
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -3985,6 +3972,15 @@ msgstr ""
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "How is Your %(box_name)s Connected to the Internet?"
|
msgid "How is Your %(box_name)s Connected to the Internet?"
|
||||||
@ -4949,18 +4945,22 @@ msgid "Android Samba Client"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5014,36 +5014,36 @@ msgstr ""
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -7458,38 +7458,38 @@ msgstr ""
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr "ثُبت التطبيق."
|
msgstr "ثُبت التطبيق."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
"removed if you proceed:"
|
"removed if you proceed:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2020-06-10 15:41+0000\n"
|
"PO-Revision-Date: 2020-06-10 15:41+0000\n"
|
||||||
"Last-Translator: aiman an <an1f3@hotmail.com>\n"
|
"Last-Translator: aiman an <an1f3@hotmail.com>\n"
|
||||||
"Language-Team: Arabic (Saudi Arabia) <https://hosted.weblate.org/projects/"
|
"Language-Team: Arabic (Saudi Arabia) <https://hosted.weblate.org/projects/"
|
||||||
@ -406,7 +406,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -455,7 +455,7 @@ msgid "Create Location"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -472,19 +472,6 @@ msgstr ""
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -511,7 +498,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -595,99 +582,99 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -845,20 +832,20 @@ msgid "Configuration updated."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1043,12 +1030,12 @@ msgstr ""
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2183,19 +2170,19 @@ msgstr ""
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -3989,6 +3976,15 @@ msgstr ""
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "How is Your %(box_name)s Connected to the Internet?"
|
msgid "How is Your %(box_name)s Connected to the Internet?"
|
||||||
@ -4953,18 +4949,22 @@ msgid "Android Samba Client"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5018,36 +5018,36 @@ msgstr ""
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -7462,38 +7462,38 @@ msgstr ""
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr "تم تثبيت التطبيق."
|
msgstr "تم تثبيت التطبيق."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
"removed if you proceed:"
|
"removed if you proceed:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2022-08-18 17:21+0000\n"
|
"PO-Revision-Date: 2022-08-18 17:21+0000\n"
|
||||||
"Last-Translator: 109247019824 <stoyan@gmx.com>\n"
|
"Last-Translator: 109247019824 <stoyan@gmx.com>\n"
|
||||||
"Language-Team: Bulgarian <https://hosted.weblate.org/projects/freedombox/"
|
"Language-Team: Bulgarian <https://hosted.weblate.org/projects/freedombox/"
|
||||||
@ -444,7 +444,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr "Хранилище на {box_name}"
|
msgstr "Хранилище на {box_name}"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr "Създаване на резервно копие"
|
msgstr "Създаване на резервно копие"
|
||||||
|
|
||||||
@ -496,7 +496,7 @@ msgid "Create Location"
|
|||||||
msgstr "Добавяне на хранилище"
|
msgstr "Добавяне на хранилище"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
msgstr "Създаване на хранилище"
|
msgstr "Създаване на хранилище"
|
||||||
|
|
||||||
@ -513,19 +513,6 @@ msgstr "Време"
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr "Премахване на архива %(name)s"
|
msgstr "Премахване на архива %(name)s"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr "Изпращане"
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr "Хранилището е шифровано"
|
msgstr "Хранилището е шифровано"
|
||||||
@ -554,7 +541,7 @@ msgstr "Изтегляне"
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr "Възстановяване"
|
msgstr "Възстановяване"
|
||||||
|
|
||||||
@ -656,99 +643,99 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr "Проверяване на хоста"
|
msgstr "Проверяване на хоста"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr "Графикът за резервни копия е променен."
|
msgstr "Графикът за резервни копия е променен."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr "Резервни копия по график"
|
msgstr "Резервни копия по график"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr "Архивът е създаден."
|
msgstr "Архивът е създаден."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr "Премахване на архив"
|
msgstr "Премахване на архив"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr "Архивът е премахнат."
|
msgstr "Архивът е премахнат."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr "Качване и възстановяване от резервно копие"
|
msgstr "Качване и възстановяване от резервно копие"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr "Файловете от резервното копие са възстановени."
|
msgstr "Файловете от резервното копие са възстановени."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr "Не е намерено резервно копие."
|
msgstr "Не е намерено резервно копие."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr "Възстановяване от качен файл"
|
msgstr "Възстановяване от качен файл"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr "Няма допълнителни дискове, на които да бъде създадено хранилище."
|
msgstr "Няма допълнителни дискове, на които да бъде създадено хранилище."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr "Създаване на хранилище за резервни копия"
|
msgstr "Създаване на хранилище за резервни копия"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr "Създаване на отдалечено хранилище за резервни копия"
|
msgstr "Създаване на отдалечено хранилище за резервни копия"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr "Създадено е отдалечено хранилище с достъп през SSH."
|
msgstr "Създадено е отдалечено хранилище с достъп през SSH."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr "Проверяване на ключа за SSH на хоста"
|
msgstr "Проверяване на ключа за SSH на хоста"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr "SSH на хоста вече е проверен."
|
msgstr "SSH на хоста вече е проверен."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr "Ключът на хоста е проверен."
|
msgstr "Ключът на хоста е проверен."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr "Публичният ключ за SSH на хоста не може да бъде проверен."
|
msgstr "Публичният ключ за SSH на хоста не може да бъде проверен."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr "Удостоверяването на отдалечения сървър е неуспешно."
|
msgstr "Удостоверяването на отдалечения сървър е неуспешно."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr "Грешка при свързване със сървъра: {}"
|
msgstr "Грешка при свързване със сървъра: {}"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr "Хранилището е премахнато."
|
msgstr "Хранилището е премахнато."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr "Премахване на хранилище"
|
msgstr "Премахване на хранилище"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr "Хранилището е премахнато. Резервните копия не са премахнати."
|
msgstr "Хранилището е премахнато. Резервните копия не са премахнати."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr "Грешка при размонтиране!"
|
msgstr "Грешка при размонтиране!"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr "Грешка при монтиране"
|
msgstr "Грешка при монтиране"
|
||||||
|
|
||||||
@ -906,20 +893,20 @@ msgid "Configuration updated."
|
|||||||
msgstr "Настройките са променени."
|
msgstr "Настройките са променени."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr "Възникна грешка по време на настройване."
|
msgstr "Възникна грешка по време на настройване."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1106,12 +1093,12 @@ msgstr ""
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2290,19 +2277,19 @@ msgstr ""
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr "Хранилището е променено."
|
msgstr "Хранилището е променено."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
msgstr "Промяна на хранилище"
|
msgstr "Промяна на хранилище"
|
||||||
|
|
||||||
@ -4104,6 +4091,15 @@ msgstr ""
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr "Обновяване…"
|
msgstr "Обновяване…"
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr "Изпращане"
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "How is Your %(box_name)s Connected to the Internet?"
|
msgid "How is Your %(box_name)s Connected to the Internet?"
|
||||||
@ -5079,18 +5075,22 @@ msgid "Android Samba Client"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5144,36 +5144,36 @@ msgstr ""
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr "Диск с OS на FreedomBox"
|
msgstr "Диск с OS на FreedomBox"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr "Домашен дял"
|
msgstr "Домашен дял"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr "Грешка при разрешаване на споделянето: {error_message}"
|
msgstr "Грешка при разрешаване на споделянето: {error_message}"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
msgstr "Грешка при забраняване на споделянето: {error_message}"
|
msgstr "Грешка при забраняване на споделянето: {error_message}"
|
||||||
@ -7694,27 +7694,27 @@ msgstr ""
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr "Приложението е инсталирано."
|
msgstr "Приложението е инсталирано."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr "В момента това приложение не е налично в дистрибуцията."
|
msgstr "В момента това приложение не е налично в дистрибуцията."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr "Повторна проверка"
|
msgstr "Повторна проверка"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
@ -7724,11 +7724,11 @@ msgstr ""
|
|||||||
"са в конфликт с инсталирането на това приложение. Ако продължите, следните "
|
"са в конфликт с инсталирането на това приложение. Ако продължите, следните "
|
||||||
"пакети ще бъдат премахнати:"
|
"пакети ще бъдат премахнати:"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr "Инсталиране"
|
msgstr "Инсталиране"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "Обновяване"
|
msgstr "Обновяване"
|
||||||
|
|
||||||
|
|||||||
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2021-06-16 07:33+0000\n"
|
"PO-Revision-Date: 2021-06-16 07:33+0000\n"
|
||||||
"Last-Translator: Oymate <dhruboadittya96@gmail.com>\n"
|
"Last-Translator: Oymate <dhruboadittya96@gmail.com>\n"
|
||||||
"Language-Team: Bengali <https://hosted.weblate.org/projects/freedombox/"
|
"Language-Team: Bengali <https://hosted.weblate.org/projects/freedombox/"
|
||||||
@ -405,7 +405,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -454,7 +454,7 @@ msgid "Create Location"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -471,19 +471,6 @@ msgstr ""
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr "জমা দাও"
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -510,7 +497,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -594,99 +581,99 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -844,20 +831,20 @@ msgid "Configuration updated."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1042,12 +1029,12 @@ msgstr ""
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2195,19 +2182,19 @@ msgstr ""
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4001,6 +3988,15 @@ msgstr ""
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr "জমা দাও"
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "How is Your %(box_name)s Connected to the Internet?"
|
msgid "How is Your %(box_name)s Connected to the Internet?"
|
||||||
@ -4965,18 +4961,22 @@ msgid "Android Samba Client"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5030,38 +5030,38 @@ msgstr ""
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "FreedomBox"
|
#| msgid "FreedomBox"
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr "ফ্রিডমবক্স"
|
msgstr "ফ্রিডমবক্স"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -7467,38 +7467,38 @@ msgstr ""
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
"removed if you proceed:"
|
"removed if you proceed:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -7,8 +7,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2022-08-20 15:15+0000\n"
|
"PO-Revision-Date: 2022-09-03 14:18+0000\n"
|
||||||
"Last-Translator: Jiří Podhorecký <j.podhorecky@volny.cz>\n"
|
"Last-Translator: Jiří Podhorecký <j.podhorecky@volny.cz>\n"
|
||||||
"Language-Team: Czech <https://hosted.weblate.org/projects/freedombox/"
|
"Language-Team: Czech <https://hosted.weblate.org/projects/freedombox/"
|
||||||
"freedombox/cs/>\n"
|
"freedombox/cs/>\n"
|
||||||
@ -17,7 +17,7 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||||
"X-Generator: Weblate 4.14-dev\n"
|
"X-Generator: Weblate 4.14.1-dev\n"
|
||||||
|
|
||||||
#: doc/dev/_templates/layout.html:11
|
#: doc/dev/_templates/layout.html:11
|
||||||
msgid "Page source"
|
msgid "Page source"
|
||||||
@ -54,17 +54,15 @@ msgstr "Nedaří se připojit k {host}:{port}"
|
|||||||
|
|
||||||
#: plinth/forms.py:36
|
#: plinth/forms.py:36
|
||||||
msgid "Backup app before uninstall"
|
msgid "Backup app before uninstall"
|
||||||
msgstr ""
|
msgstr "Zálohování aplikace před odinstalací"
|
||||||
|
|
||||||
#: plinth/forms.py:37
|
#: plinth/forms.py:37
|
||||||
msgid "Restoring from the backup will restore app data."
|
msgid "Restoring from the backup will restore app data."
|
||||||
msgstr ""
|
msgstr "Obnovením ze zálohy se obnoví data aplikace."
|
||||||
|
|
||||||
#: plinth/forms.py:39
|
#: plinth/forms.py:39
|
||||||
#, fuzzy
|
|
||||||
#| msgid "Repository not found"
|
|
||||||
msgid "Repository to backup to"
|
msgid "Repository to backup to"
|
||||||
msgstr "Repozitář nenalezen"
|
msgstr "Úložiště, do kterého se má zálohovat"
|
||||||
|
|
||||||
#: plinth/forms.py:56
|
#: plinth/forms.py:56
|
||||||
msgid "Select a domain name to be used with this application"
|
msgid "Select a domain name to be used with this application"
|
||||||
@ -439,7 +437,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr "Úložiště {box_name}"
|
msgstr "Úložiště {box_name}"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr "Vytvořit novou zálohu"
|
msgstr "Vytvořit novou zálohu"
|
||||||
|
|
||||||
@ -491,7 +489,7 @@ msgid "Create Location"
|
|||||||
msgstr "Vytvořit umístění"
|
msgstr "Vytvořit umístění"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
msgstr "Vytvořit repozitář"
|
msgstr "Vytvořit repozitář"
|
||||||
|
|
||||||
@ -508,19 +506,6 @@ msgstr "Čas"
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr "Smazat archiv %(name)s"
|
msgstr "Smazat archiv %(name)s"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr "Potvrdit"
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr "Tento repozitář je šifrovaný"
|
msgstr "Tento repozitář je šifrovaný"
|
||||||
@ -548,7 +533,7 @@ msgstr "Stáhnout"
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr "Obnovit"
|
msgstr "Obnovit"
|
||||||
|
|
||||||
@ -649,99 +634,99 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr "Ověřit stroj"
|
msgstr "Ověřit stroj"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr "Plán zálohování aktualizován."
|
msgstr "Plán zálohování aktualizován."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr "Plánování záloh"
|
msgstr "Plánování záloh"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr "Archiv vytvořen."
|
msgstr "Archiv vytvořen."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr "Smazat archiv"
|
msgstr "Smazat archiv"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr "Archiv smazán."
|
msgstr "Archiv smazán."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr "Nahrát zálohu a obnovit z ní"
|
msgstr "Nahrát zálohu a obnovit z ní"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr "Soubory obnovené ze zálohy."
|
msgstr "Soubory obnovené ze zálohy."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr "Nebyl nalezen žádný soubor se zálohou."
|
msgstr "Nebyl nalezen žádný soubor se zálohou."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr "Obnovit z nahraného souboru"
|
msgstr "Obnovit z nahraného souboru"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr "Nejsou k dispozici žádná další úložiště pro přidání repozitáře."
|
msgstr "Nejsou k dispozici žádná další úložiště pro přidání repozitáře."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr "Vytvořit repozitář pro zálohy"
|
msgstr "Vytvořit repozitář pro zálohy"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr "Vytvořit repozitář pro zálohy na protějšku"
|
msgstr "Vytvořit repozitář pro zálohy na protějšku"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr "Přidán nový vzdálený SSH repozitář."
|
msgstr "Přidán nový vzdálený SSH repozitář."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr "Ověřit SSH klíč stroje"
|
msgstr "Ověřit SSH klíč stroje"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr "SSH stroj už je ověřen."
|
msgstr "SSH stroj už je ověřen."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr "SSH stroj ověřen."
|
msgstr "SSH stroj ověřen."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr "Veřejný klíč SSH stroje se nepodařilo ověřit."
|
msgstr "Veřejný klíč SSH stroje se nepodařilo ověřit."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr "Ověření vůči vzdálenému serveru se nezdařilo."
|
msgstr "Ověření vůči vzdálenému serveru se nezdařilo."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr "Chyba při navazování spojení se serverem: {}"
|
msgstr "Chyba při navazování spojení se serverem: {}"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr "Repozitář odstraněn."
|
msgstr "Repozitář odstraněn."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr "Odebrat repozitář"
|
msgstr "Odebrat repozitář"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr "Repozitář odebrán. Zálohy jako takové smazány nebyly."
|
msgstr "Repozitář odebrán. Zálohy jako takové smazány nebyly."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr "Odpojení se nezdařilo!"
|
msgstr "Odpojení se nezdařilo!"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr "Připojení (mount) se nezdařilo"
|
msgstr "Připojení (mount) se nezdařilo"
|
||||||
|
|
||||||
@ -910,20 +895,20 @@ msgid "Configuration updated."
|
|||||||
msgstr "Nastavení aktualizována."
|
msgstr "Nastavení aktualizována."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr "Při nastavování se vyskytla chyba."
|
msgstr "Při nastavování se vyskytla chyba."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr "Heslo přidáno."
|
msgstr "Heslo přidáno."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr "Přidat heslo"
|
msgstr "Přidat heslo"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
msgstr "Heslo smazáno."
|
msgstr "Heslo smazáno."
|
||||||
|
|
||||||
@ -1129,12 +1114,12 @@ msgstr "Knihovna vytvořena."
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr "Při vytváření knihovny došlo k chybě."
|
msgstr "Při vytváření knihovny došlo k chybě."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr "{name} smazáno."
|
msgstr "{name} smazáno."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr "{name} se nepodařilo smazat: {error}"
|
msgstr "{name} se nepodařilo smazat: {error}"
|
||||||
@ -2429,19 +2414,19 @@ msgstr "Smazat Git repozitář <em>%(name)s</em>"
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr "Nevratně smazat tento repozitář?"
|
msgstr "Nevratně smazat tento repozitář?"
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr "Repozitář vytvořen."
|
msgstr "Repozitář vytvořen."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr "Při vytváření úložiště došlo k chybě."
|
msgstr "Při vytváření úložiště došlo k chybě."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr "Repozitář upraven."
|
msgstr "Repozitář upraven."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
msgstr "Upravit repozitář"
|
msgstr "Upravit repozitář"
|
||||||
|
|
||||||
@ -4547,6 +4532,15 @@ msgstr ""
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr "Aktualizovat..."
|
msgstr "Aktualizovat..."
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr "Potvrdit"
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "How is Your %(box_name)s Connected to the Internet?"
|
msgid "How is Your %(box_name)s Connected to the Internet?"
|
||||||
@ -5683,18 +5677,24 @@ msgid "Android Samba Client"
|
|||||||
msgstr "Android Samba Client"
|
msgstr "Android Samba Client"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
#, fuzzy
|
||||||
|
#| msgid "Ghost Commander - Samba plugin"
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr "Ghost Commander - Samba plugin"
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr "Ghost Commander - Samba plugin"
|
msgstr "Ghost Commander - Samba plugin"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr "VLC media player"
|
msgstr "VLC media player"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr "GNOME soubory"
|
msgstr "GNOME soubory"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr "Dolphin"
|
msgstr "Dolphin"
|
||||||
|
|
||||||
@ -5759,36 +5759,36 @@ msgstr "Sdílet název"
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr "Akce"
|
msgstr "Akce"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr "FreedomBox OS disk"
|
msgstr "FreedomBox OS disk"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr "Otevřít sdílení"
|
msgstr "Otevřít sdílení"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr "Skupinové sdílení"
|
msgstr "Skupinové sdílení"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr "Domácí sdílení"
|
msgstr "Domácí sdílení"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr "Sdílení povoleno."
|
msgstr "Sdílení povoleno."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr "Chyba při povolování sdílení: {error_message}"
|
msgstr "Chyba při povolování sdílení: {error_message}"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr "Sdílení upraveno."
|
msgstr "Sdílení upraveno."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
msgstr "Chyba při zakázání sdílení: {error_message}"
|
msgstr "Chyba při zakázání sdílení: {error_message}"
|
||||||
@ -6957,16 +6957,13 @@ msgid "Ports"
|
|||||||
msgstr "Porty"
|
msgstr "Porty"
|
||||||
|
|
||||||
#: plinth/modules/tor/views.py:55
|
#: plinth/modules/tor/views.py:55
|
||||||
#, fuzzy
|
|
||||||
#| msgid "An error occurred during configuration."
|
|
||||||
msgid "Updating configuration"
|
msgid "Updating configuration"
|
||||||
msgstr "Při nastavování se vyskytla chyba."
|
msgstr "Aktualizace konfigurace"
|
||||||
|
|
||||||
#: plinth/modules/tor/views.py:72
|
#: plinth/modules/tor/views.py:72
|
||||||
#, fuzzy, python-brace-format
|
#, python-brace-format
|
||||||
#| msgid "Error updating app: {error}"
|
|
||||||
msgid "Error configuring app: {error}"
|
msgid "Error configuring app: {error}"
|
||||||
msgstr "Chyba při aktualizaci aplikace: {error}"
|
msgstr "Chyba při konfiguraci aplikace: {error}"
|
||||||
|
|
||||||
#: plinth/modules/transmission/__init__.py:23
|
#: plinth/modules/transmission/__init__.py:23
|
||||||
msgid "Transmission is a BitTorrent client with a web interface."
|
msgid "Transmission is a BitTorrent client with a web interface."
|
||||||
@ -7271,10 +7268,8 @@ msgid "Show recent update logs"
|
|||||||
msgstr "Zobrazit protokoly posledních aktualizací"
|
msgstr "Zobrazit protokoly posledních aktualizací"
|
||||||
|
|
||||||
#: plinth/modules/upgrades/templates/upgrades_configure.html:138
|
#: plinth/modules/upgrades/templates/upgrades_configure.html:138
|
||||||
#, fuzzy
|
|
||||||
#| msgid "Distribution upgrade enabled"
|
|
||||||
msgid "Test Distribution Upgrade"
|
msgid "Test Distribution Upgrade"
|
||||||
msgstr "Upgrade distribuce povoleno"
|
msgstr "Upgrade testovací distribuce"
|
||||||
|
|
||||||
#: plinth/modules/upgrades/templates/upgrades_configure.html:140
|
#: plinth/modules/upgrades/templates/upgrades_configure.html:140
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -7283,10 +7278,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/upgrades/templates/upgrades_configure.html:150
|
#: plinth/modules/upgrades/templates/upgrades_configure.html:150
|
||||||
#, fuzzy
|
|
||||||
#| msgid "Distribution upgrade enabled"
|
|
||||||
msgid "Test distribution upgrade now"
|
msgid "Test distribution upgrade now"
|
||||||
msgstr "Upgrade distribuce povoleno"
|
msgstr "Otestujte aktualizaci distribuce"
|
||||||
|
|
||||||
#: plinth/modules/upgrades/views.py:68
|
#: plinth/modules/upgrades/views.py:68
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
@ -7322,10 +7315,8 @@ msgid "Frequent feature updates activated."
|
|||||||
msgstr "Aktivovány časté aktualizace funkcí."
|
msgstr "Aktivovány časté aktualizace funkcí."
|
||||||
|
|
||||||
#: plinth/modules/upgrades/views.py:223
|
#: plinth/modules/upgrades/views.py:223
|
||||||
#, fuzzy
|
|
||||||
#| msgid "Distribution upgrade enabled"
|
|
||||||
msgid "Starting distribution upgrade test."
|
msgid "Starting distribution upgrade test."
|
||||||
msgstr "Upgrade distribuce povoleno"
|
msgstr "Zahájení testu aktualizace distribuce."
|
||||||
|
|
||||||
#: plinth/modules/users/__init__.py:29
|
#: plinth/modules/users/__init__.py:29
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -8108,10 +8099,8 @@ msgid "Package {package_name} is the latest version ({latest_version})"
|
|||||||
msgstr "Balíček {package_name} je nejnovější verze ({latest_version})"
|
msgstr "Balíček {package_name} je nejnovější verze ({latest_version})"
|
||||||
|
|
||||||
#: plinth/package.py:367
|
#: plinth/package.py:367
|
||||||
#, fuzzy
|
|
||||||
#| msgid "Error During Backup"
|
|
||||||
msgid "Error running apt-get"
|
msgid "Error running apt-get"
|
||||||
msgstr "Chyba při zálohování"
|
msgstr "Chyba při spuštění apt-get"
|
||||||
|
|
||||||
#: plinth/package.py:389
|
#: plinth/package.py:389
|
||||||
msgid "installing"
|
msgid "installing"
|
||||||
@ -8171,28 +8160,22 @@ msgid "App updated"
|
|||||||
msgstr "Aplikace aktualizována"
|
msgstr "Aplikace aktualizována"
|
||||||
|
|
||||||
#: plinth/setup.py:104
|
#: plinth/setup.py:104
|
||||||
#, fuzzy
|
|
||||||
#| msgid "Installing app"
|
|
||||||
msgid "Uninstalling app"
|
msgid "Uninstalling app"
|
||||||
msgstr "Instalace aplikací"
|
msgstr "Odinstalování aplikace"
|
||||||
|
|
||||||
#: plinth/setup.py:122
|
#: plinth/setup.py:122
|
||||||
#, fuzzy, python-brace-format
|
#, python-brace-format
|
||||||
#| msgid "Error installing app: {string} {details}"
|
|
||||||
msgid "Error uninstalling app: {string} {details}"
|
msgid "Error uninstalling app: {string} {details}"
|
||||||
msgstr "Chyba instalace aplikace: {string} {details}"
|
msgstr "Chyba odinstalace aplikace: {string} {details}"
|
||||||
|
|
||||||
#: plinth/setup.py:128
|
#: plinth/setup.py:128
|
||||||
#, fuzzy, python-brace-format
|
#, python-brace-format
|
||||||
#| msgid "Error installing app: {error}"
|
|
||||||
msgid "Error uninstalling app: {error}"
|
msgid "Error uninstalling app: {error}"
|
||||||
msgstr "Chyba při instalaci aplikace: {error}"
|
msgstr "Chyba při odinstalaci aplikace: {error}"
|
||||||
|
|
||||||
#: plinth/setup.py:131
|
#: plinth/setup.py:131
|
||||||
#, fuzzy
|
|
||||||
#| msgid "App installed."
|
|
||||||
msgid "App uninstalled."
|
msgid "App uninstalled."
|
||||||
msgstr "Aplikace nainstalována."
|
msgstr "Aplikace odinstalována."
|
||||||
|
|
||||||
#: plinth/setup.py:451
|
#: plinth/setup.py:451
|
||||||
msgid "Updating app packages"
|
msgid "Updating app packages"
|
||||||
@ -8513,29 +8496,29 @@ msgstr "Z portů směrovače/sítě LAN"
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr "Na %(box_name)s Porty"
|
msgstr "Na %(box_name)s Porty"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr "Aplikace nainstalována."
|
msgstr "Aplikace nainstalována."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr "Nainstalovat tuto aplikaci?"
|
msgstr "Nainstalovat tuto aplikaci?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr "Tato aplikace potřebuje aktualizovat. Provést nyní?"
|
msgstr "Tato aplikace potřebuje aktualizovat. Provést nyní?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Tato aplikace v současnosti není dostupná v repozitářích vámi používané "
|
"Tato aplikace v současnosti není dostupná v repozitářích vámi používané "
|
||||||
"distribuce."
|
"distribuce."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr "Znovu zkontrolovat"
|
msgstr "Znovu zkontrolovat"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
@ -8545,36 +8528,35 @@ msgstr ""
|
|||||||
"jsou v konfliktu s instalací této aplikace. Následující balíčky budou v "
|
"jsou v konfliktu s instalací této aplikace. Následující balíčky budou v "
|
||||||
"případě pokračování odstraněny:"
|
"případě pokračování odstraněny:"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr "Instalace"
|
msgstr "Instalace"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "Aktualizovat"
|
msgstr "Aktualizovat"
|
||||||
|
|
||||||
#: plinth/templates/toolbar.html:39 plinth/templates/toolbar.html:40
|
#: plinth/templates/toolbar.html:39 plinth/templates/toolbar.html:40
|
||||||
#: plinth/templates/uninstall.html:36
|
#: plinth/templates/uninstall.html:36
|
||||||
#, fuzzy
|
|
||||||
#| msgid "Install"
|
|
||||||
msgid "Uninstall"
|
msgid "Uninstall"
|
||||||
msgstr "Instalace"
|
msgstr "Odinstalace"
|
||||||
|
|
||||||
#: plinth/templates/uninstall.html:11
|
#: plinth/templates/uninstall.html:11
|
||||||
#, fuzzy, python-format
|
#, python-format
|
||||||
#| msgid "Edit User <em>%(username)s</em>"
|
|
||||||
msgid "Uninstall App <em>%(app_name)s</em>?"
|
msgid "Uninstall App <em>%(app_name)s</em>?"
|
||||||
msgstr "Upravit uživatele %(username)s"
|
msgstr "Odinstalovat aplikaci <em>%(app_name)s</em>?"
|
||||||
|
|
||||||
#: plinth/templates/uninstall.html:17
|
#: plinth/templates/uninstall.html:17
|
||||||
msgid "Uninstalling an app is an exprimental feature."
|
msgid "Uninstalling an app is an exprimental feature."
|
||||||
msgstr ""
|
msgstr "Odinstalování aplikace je exprimentální funkce."
|
||||||
|
|
||||||
#: plinth/templates/uninstall.html:23
|
#: plinth/templates/uninstall.html:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"All app data and configuration will be permanently lost. App may be "
|
"All app data and configuration will be permanently lost. App may be "
|
||||||
"installed freshly again."
|
"installed freshly again."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Všechna data a konfigurace aplikace budou trvale ztraceny. Aplikaci lze "
|
||||||
|
"nainstalovat znovu."
|
||||||
|
|
||||||
#: plinth/views.py:221
|
#: plinth/views.py:221
|
||||||
msgid "Setting unchanged"
|
msgid "Setting unchanged"
|
||||||
@ -8583,7 +8565,7 @@ msgstr "Nastavení se nezměnila"
|
|||||||
#: plinth/views.py:401
|
#: plinth/views.py:401
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "before uninstall of {app_id}"
|
msgid "before uninstall of {app_id}"
|
||||||
msgstr ""
|
msgstr "před odinstalací {app_id}"
|
||||||
|
|
||||||
#: plinth/web_framework.py:114
|
#: plinth/web_framework.py:114
|
||||||
msgid "Gujarati"
|
msgid "Gujarati"
|
||||||
|
|||||||
@ -9,7 +9,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: FreedomBox UI\n"
|
"Project-Id-Version: FreedomBox UI\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2022-05-10 02:10+0000\n"
|
"PO-Revision-Date: 2022-05-10 02:10+0000\n"
|
||||||
"Last-Translator: ikmaak <info@ikmaak.nl>\n"
|
"Last-Translator: ikmaak <info@ikmaak.nl>\n"
|
||||||
"Language-Team: Danish <https://hosted.weblate.org/projects/freedombox/"
|
"Language-Team: Danish <https://hosted.weblate.org/projects/freedombox/"
|
||||||
@ -434,7 +434,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr "Lagring af {box_name}"
|
msgstr "Lagring af {box_name}"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr "Opret en ny sikkerhedskopi"
|
msgstr "Opret en ny sikkerhedskopi"
|
||||||
|
|
||||||
@ -490,7 +490,7 @@ msgid "Create Location"
|
|||||||
msgstr "Opret sted"
|
msgstr "Opret sted"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
msgstr "Opret lager"
|
msgstr "Opret lager"
|
||||||
|
|
||||||
@ -507,19 +507,6 @@ msgstr "Tid"
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr "Slet arkivet %(name)s"
|
msgstr "Slet arkivet %(name)s"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr "Send"
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr "Dette arkiv er krypteret"
|
msgstr "Dette arkiv er krypteret"
|
||||||
@ -548,7 +535,7 @@ msgstr "Downloader"
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr "Genopret"
|
msgstr "Genopret"
|
||||||
|
|
||||||
@ -654,101 +641,101 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr "Verificér vært"
|
msgstr "Verificér vært"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Create Backup"
|
#| msgid "Create Backup"
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr "Opret sikkerhedskopi"
|
msgstr "Opret sikkerhedskopi"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr "Arkiv oprettet."
|
msgstr "Arkiv oprettet."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr "Slet arkiv"
|
msgstr "Slet arkiv"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr "Arkiv slettet."
|
msgstr "Arkiv slettet."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr "Upload og genopret en sikkerhedskopi"
|
msgstr "Upload og genopret en sikkerhedskopi"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr "Filer genoprettet fra sikkerhedskopi."
|
msgstr "Filer genoprettet fra sikkerhedskopi."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr "Ingen sikkerhedskopi fundet."
|
msgstr "Ingen sikkerhedskopi fundet."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr "Genopret fra overført fil"
|
msgstr "Genopret fra overført fil"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr "Ingen yderligere diske er tilgængelige til oprettelse af et lager."
|
msgstr "Ingen yderligere diske er tilgængelige til oprettelse af et lager."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr "Opret lager til sikkerhedskopier"
|
msgstr "Opret lager til sikkerhedskopier"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr "Opret fjernlager til sikkerhedskopier"
|
msgstr "Opret fjernlager til sikkerhedskopier"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr "Tilføjede et nyt SSH-fjernlager."
|
msgstr "Tilføjede et nyt SSH-fjernlager."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr "Verificér SSH-værtsnøgle"
|
msgstr "Verificér SSH-værtsnøgle"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr "SSH-vært er allerede verificeret."
|
msgstr "SSH-vært er allerede verificeret."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr "SSH-vært verificeret."
|
msgstr "SSH-vært verificeret."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr "SSH-værtens offentlige nøgle kunne ikke verificeres."
|
msgstr "SSH-værtens offentlige nøgle kunne ikke verificeres."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr "Godkendelse til serveren mislykkedes."
|
msgstr "Godkendelse til serveren mislykkedes."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr "Fejl ved oprettelse af forbindelse til serveren: {}"
|
msgstr "Fejl ved oprettelse af forbindelse til serveren: {}"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr "Lager fjernet."
|
msgstr "Lager fjernet."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr "Fjern lager"
|
msgstr "Fjern lager"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr "Lager fjernet. Sikkerhedskopier slettedes ikke."
|
msgstr "Lager fjernet. Sikkerhedskopier slettedes ikke."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr "Afmontering mislykkedes!"
|
msgstr "Afmontering mislykkedes!"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr "Montering mislykkedes"
|
msgstr "Montering mislykkedes"
|
||||||
|
|
||||||
@ -922,20 +909,20 @@ msgid "Configuration updated."
|
|||||||
msgstr "Konfiguration opdateret."
|
msgstr "Konfiguration opdateret."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr "Der opstod en fejl under konfigurationen."
|
msgstr "Der opstod en fejl under konfigurationen."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr "Kodeord tilføjet."
|
msgstr "Kodeord tilføjet."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr "Tilføj Kodeord"
|
msgstr "Tilføj Kodeord"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
msgstr "Kodeord slettet"
|
msgstr "Kodeord slettet"
|
||||||
|
|
||||||
@ -1140,12 +1127,12 @@ msgstr "Samling oprettet."
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr "Der opstod en fejl under oprettelse af samlingen."
|
msgstr "Der opstod en fejl under oprettelse af samlingen."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr "{name} slettet."
|
msgstr "{name} slettet."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr "Kunne ikke slette {name}: {error}"
|
msgstr "Kunne ikke slette {name}: {error}"
|
||||||
@ -2481,25 +2468,25 @@ msgstr "Slet Wiki eller Blog <em>%(name)s</em>"
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr "Slet bruger permanent?"
|
msgstr "Slet bruger permanent?"
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "packages not found"
|
#| msgid "packages not found"
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr "pakker ikke fundet"
|
msgstr "pakker ikke fundet"
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "An error occurred during configuration."
|
#| msgid "An error occurred during configuration."
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr "Der opstod en fejl under konfigurationen."
|
msgstr "Der opstod en fejl under konfigurationen."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "packages not found"
|
#| msgid "packages not found"
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr "pakker ikke fundet"
|
msgstr "pakker ikke fundet"
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Create User"
|
#| msgid "Create User"
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
@ -4547,6 +4534,15 @@ msgstr ""
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr "Opdater"
|
msgstr "Opdater"
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr "Send"
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
#| msgid "Direct connection to the Internet."
|
#| msgid "Direct connection to the Internet."
|
||||||
@ -5734,18 +5730,22 @@ msgid "Android Samba Client"
|
|||||||
msgstr "Quassel IRC-klient"
|
msgstr "Quassel IRC-klient"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5807,47 +5807,47 @@ msgstr "Kite-navn"
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr "Handlinger"
|
msgstr "Handlinger"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr "FreedomBox OS disk"
|
msgstr "FreedomBox OS disk"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Add Service"
|
#| msgid "Add Service"
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr "Tilføj Service"
|
msgstr "Tilføj Service"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Add Service"
|
#| msgid "Add Service"
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr "Tilføj Service"
|
msgstr "Tilføj Service"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Add Service"
|
#| msgid "Add Service"
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr "Tilføj Service"
|
msgstr "Tilføj Service"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "{name} deleted."
|
#| msgid "{name} deleted."
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr "{name} slettet."
|
msgstr "{name} slettet."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, fuzzy, python-brace-format
|
#, fuzzy, python-brace-format
|
||||||
#| msgid "Error installing application: {error}"
|
#| msgid "Error installing application: {error}"
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr "Kunne ikke installere applikation: {error}"
|
msgstr "Kunne ikke installere applikation: {error}"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "{name} deleted."
|
#| msgid "{name} deleted."
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr "{name} slettet."
|
msgstr "{name} slettet."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, fuzzy, python-brace-format
|
#, fuzzy, python-brace-format
|
||||||
#| msgid "Error installing application: {error}"
|
#| msgid "Error installing application: {error}"
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
@ -8629,38 +8629,38 @@ msgstr ""
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr "%(box_name)s Konfiguration"
|
msgstr "%(box_name)s Konfiguration"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr "Applikation installeret."
|
msgstr "Applikation installeret."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr "Installer denne applikation?"
|
msgstr "Installer denne applikation?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr "Denne applikation har brug for en opdatering. Opdater nu?"
|
msgstr "Denne applikation har brug for en opdatering. Opdater nu?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
"removed if you proceed:"
|
"removed if you proceed:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr "Installer"
|
msgstr "Installer"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "Opdater"
|
msgstr "Opdater"
|
||||||
|
|
||||||
|
|||||||
@ -9,7 +9,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: FreedomBox UI\n"
|
"Project-Id-Version: FreedomBox UI\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2022-08-18 17:21+0000\n"
|
"PO-Revision-Date: 2022-08-18 17:21+0000\n"
|
||||||
"Last-Translator: nautilusx <translate@disroot.org>\n"
|
"Last-Translator: nautilusx <translate@disroot.org>\n"
|
||||||
"Language-Team: German <https://hosted.weblate.org/projects/freedombox/"
|
"Language-Team: German <https://hosted.weblate.org/projects/freedombox/"
|
||||||
@ -446,7 +446,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr "{box_name}-Speichermedien"
|
msgstr "{box_name}-Speichermedien"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr "Neue Sicherung erstellen"
|
msgstr "Neue Sicherung erstellen"
|
||||||
|
|
||||||
@ -499,7 +499,7 @@ msgid "Create Location"
|
|||||||
msgstr "Standort anlegen"
|
msgstr "Standort anlegen"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
msgstr "Archiv anlegen"
|
msgstr "Archiv anlegen"
|
||||||
|
|
||||||
@ -516,19 +516,6 @@ msgstr "Zeit"
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr "Archiv %(name)s löschen"
|
msgstr "Archiv %(name)s löschen"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr "Absenden"
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr "Dieses Repository ist verschlüsselt"
|
msgstr "Dieses Repository ist verschlüsselt"
|
||||||
@ -557,7 +544,7 @@ msgstr "Herunterladen"
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr "Wiederherstellen"
|
msgstr "Wiederherstellen"
|
||||||
|
|
||||||
@ -662,102 +649,102 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr "Host verifizieren"
|
msgstr "Host verifizieren"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr "Sicherungsplan aktualisiert."
|
msgstr "Sicherungsplan aktualisiert."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr "Zeitplan für Sicherungen"
|
msgstr "Zeitplan für Sicherungen"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr "Archiv angelegt."
|
msgstr "Archiv angelegt."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr "Archiv löschen"
|
msgstr "Archiv löschen"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr "Archiv gelöscht."
|
msgstr "Archiv gelöscht."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr "Hochladen und Wiederherstellen einer Sicherung"
|
msgstr "Hochladen und Wiederherstellen einer Sicherung"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr "Dateien aus Sicherung wiederhergestellt."
|
msgstr "Dateien aus Sicherung wiederhergestellt."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr "Keine Sicherungsdatei gefunden."
|
msgstr "Keine Sicherungsdatei gefunden."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr "Wiederherstellen aus hochgeladener Datei"
|
msgstr "Wiederherstellen aus hochgeladener Datei"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Es sind keine zusätzlichen Festplatten verfügbar, um ein Repository "
|
"Es sind keine zusätzlichen Festplatten verfügbar, um ein Repository "
|
||||||
"hinzuzufügen."
|
"hinzuzufügen."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr "Sicherungs-Repository erstellen"
|
msgstr "Sicherungs-Repository erstellen"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr "Remote-Sicherungs-Archiv anlegen"
|
msgstr "Remote-Sicherungs-Archiv anlegen"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr "Neue Remote-SSH-Archiv hinzugefügt."
|
msgstr "Neue Remote-SSH-Archiv hinzugefügt."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr "Verifiziere SSH-Schlüssel des Hosts"
|
msgstr "Verifiziere SSH-Schlüssel des Hosts"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr "SSH-Host bereits verifiziert."
|
msgstr "SSH-Host bereits verifiziert."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr "SSH-Host verifiziert."
|
msgstr "SSH-Host verifiziert."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Der öffentliche SSH-Schlüssel des Hosts konnte nicht verifiziert werden."
|
"Der öffentliche SSH-Schlüssel des Hosts konnte nicht verifiziert werden."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr "Authentifizierung am Server fehlgeschlagen."
|
msgstr "Authentifizierung am Server fehlgeschlagen."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr "Fehler beim Verbinden mit Server: {}"
|
msgstr "Fehler beim Verbinden mit Server: {}"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr "Archiv gelöscht."
|
msgstr "Archiv gelöscht."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr "Archiv entfernen"
|
msgstr "Archiv entfernen"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr "Repository entfernt. Sicherungen wurden nicht gelöscht."
|
msgstr "Repository entfernt. Sicherungen wurden nicht gelöscht."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr "Aushängen fehlgeschlagen!"
|
msgstr "Aushängen fehlgeschlagen!"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr "Einhängen fehlgeschlagen"
|
msgstr "Einhängen fehlgeschlagen"
|
||||||
|
|
||||||
@ -934,20 +921,20 @@ msgid "Configuration updated."
|
|||||||
msgstr "Konfiguration aktualisiert."
|
msgstr "Konfiguration aktualisiert."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr "Ein Fehler ist bei der Konfiguration aufgetreten."
|
msgstr "Ein Fehler ist bei der Konfiguration aufgetreten."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr "Passwort hinzugefügt."
|
msgstr "Passwort hinzugefügt."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr "Passwort hinzufügen"
|
msgstr "Passwort hinzufügen"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
msgstr "Passwort gelöscht."
|
msgstr "Passwort gelöscht."
|
||||||
|
|
||||||
@ -1156,12 +1143,12 @@ msgstr "Bibliothek erstellt."
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr "Beim Erstellen der Bibliothek ist ein Fehler aufgetreten."
|
msgstr "Beim Erstellen der Bibliothek ist ein Fehler aufgetreten."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr "{name} gelöscht."
|
msgstr "{name} gelöscht."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr "{name} konnte nicht gelöscht werden: {error}"
|
msgstr "{name} konnte nicht gelöscht werden: {error}"
|
||||||
@ -2480,19 +2467,19 @@ msgstr "Git Repository <em>%(name)s</em> löschen"
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr "Dieses respository permanent löschen?"
|
msgstr "Dieses respository permanent löschen?"
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr "Archiv erstellt."
|
msgstr "Archiv erstellt."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr "Beim Erstellen des Repository ist ein Fehler aufgetreten."
|
msgstr "Beim Erstellen des Repository ist ein Fehler aufgetreten."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr "Archiv bearbeitet."
|
msgstr "Archiv bearbeitet."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
msgstr "Archiv bearbeiten"
|
msgstr "Archiv bearbeiten"
|
||||||
|
|
||||||
@ -4639,6 +4626,15 @@ msgstr "Ich weiss nicht, welche Art von Verbindung mein ISP anbietet."
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr "aktualisieren..."
|
msgstr "aktualisieren..."
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr "Absenden"
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "How is Your %(box_name)s Connected to the Internet?"
|
msgid "How is Your %(box_name)s Connected to the Internet?"
|
||||||
@ -5795,18 +5791,24 @@ msgid "Android Samba Client"
|
|||||||
msgstr "Android-Samba-Klient"
|
msgstr "Android-Samba-Klient"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
#, fuzzy
|
||||||
|
#| msgid "Ghost Commander - Samba plugin"
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr "Ghost Commander - Samba-Plugin"
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr "Ghost Commander - Samba-Plugin"
|
msgstr "Ghost Commander - Samba-Plugin"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr "VLC-Mediaplayer"
|
msgstr "VLC-Mediaplayer"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr "GNOME-Dateinen"
|
msgstr "GNOME-Dateinen"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr "Dolphin"
|
msgstr "Dolphin"
|
||||||
|
|
||||||
@ -5870,36 +5872,36 @@ msgstr "Freigabename"
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr "Aktion"
|
msgstr "Aktion"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr "FreedomBox OS Datenträger"
|
msgstr "FreedomBox OS Datenträger"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr "Open Share"
|
msgstr "Open Share"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr "Group Share"
|
msgstr "Group Share"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr "Home Share"
|
msgstr "Home Share"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr "Freigabe aktiviert."
|
msgstr "Freigabe aktiviert."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr "Fehler beim Aktivieren der Freigabe: {error_message}"
|
msgstr "Fehler beim Aktivieren der Freigabe: {error_message}"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr "Freigabe deaktiviert."
|
msgstr "Freigabe deaktiviert."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
msgstr "Fehler beim Deaktivieren der Freigabe: {error_message}"
|
msgstr "Fehler beim Deaktivieren der Freigabe: {error_message}"
|
||||||
@ -8692,27 +8694,27 @@ msgstr "Von Router-/WAN-Ports"
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr "Zu %(box_name)s Ports"
|
msgstr "Zu %(box_name)s Ports"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr "Anwendung installiert."
|
msgstr "Anwendung installiert."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr "Diese Anwendung installieren?"
|
msgstr "Diese Anwendung installieren?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr "Die Anwendung muss aktualisiert werden! Jetzt aktualisieren?"
|
msgstr "Die Anwendung muss aktualisiert werden! Jetzt aktualisieren?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr "Diese Anwendung ist in Ihrer Distribution derzeit nicht erhältlich."
|
msgstr "Diese Anwendung ist in Ihrer Distribution derzeit nicht erhältlich."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr "Erneut prüfen"
|
msgstr "Erneut prüfen"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
@ -8722,11 +8724,11 @@ msgstr ""
|
|||||||
"Pakete stehen in Konflikt mit der Installation dieser App. Die folgenden "
|
"Pakete stehen in Konflikt mit der Installation dieser App. Die folgenden "
|
||||||
"Pakete werden entfernt, wenn Sie fortfahren:"
|
"Pakete werden entfernt, wenn Sie fortfahren:"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr "Installieren"
|
msgstr "Installieren"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "Aktualisieren"
|
msgstr "Aktualisieren"
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -403,7 +403,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -452,7 +452,7 @@ msgid "Create Location"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -469,19 +469,6 @@ msgstr ""
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -508,7 +495,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -592,99 +579,99 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -842,20 +829,20 @@ msgid "Configuration updated."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1040,12 +1027,12 @@ msgstr ""
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2178,19 +2165,19 @@ msgstr ""
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -3982,6 +3969,15 @@ msgstr ""
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "How is Your %(box_name)s Connected to the Internet?"
|
msgid "How is Your %(box_name)s Connected to the Internet?"
|
||||||
@ -4946,18 +4942,22 @@ msgid "Android Samba Client"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5011,36 +5011,36 @@ msgstr ""
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -7442,38 +7442,38 @@ msgstr ""
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
"removed if you proceed:"
|
"removed if you proceed:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2022-04-21 09:08+0000\n"
|
"PO-Revision-Date: 2022-04-21 09:08+0000\n"
|
||||||
"Last-Translator: Giannis <accounts@giannis.anonaddy.me>\n"
|
"Last-Translator: Giannis <accounts@giannis.anonaddy.me>\n"
|
||||||
"Language-Team: Greek <https://hosted.weblate.org/projects/freedombox/"
|
"Language-Team: Greek <https://hosted.weblate.org/projects/freedombox/"
|
||||||
@ -443,7 +443,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr "Αποθηκευτικός χώρος {box_name}"
|
msgstr "Αποθηκευτικός χώρος {box_name}"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr "Δημιουργία νέου αντιγράφου ασφαλείας"
|
msgstr "Δημιουργία νέου αντιγράφου ασφαλείας"
|
||||||
|
|
||||||
@ -500,7 +500,7 @@ msgid "Create Location"
|
|||||||
msgstr "Δημιουργία τοποθεσίας"
|
msgstr "Δημιουργία τοποθεσίας"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
msgstr "Δημιουργία Αποθετηρίου"
|
msgstr "Δημιουργία Αποθετηρίου"
|
||||||
|
|
||||||
@ -517,19 +517,6 @@ msgstr "Ώρα"
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr "Διαγραφή αρχείου %(name)s"
|
msgstr "Διαγραφή αρχείου %(name)s"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr "Υποβολή"
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Existing repository is not encrypted."
|
#| msgid "Existing repository is not encrypted."
|
||||||
@ -564,7 +551,7 @@ msgstr "Λήψη"
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr "Επαναφορά"
|
msgstr "Επαναφορά"
|
||||||
|
|
||||||
@ -677,102 +664,102 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr "Επαλήθευση υπολογιστή"
|
msgstr "Επαλήθευση υπολογιστή"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Create Backup"
|
#| msgid "Create Backup"
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr "Δημιουργία αντιγράφου ασφαλείας"
|
msgstr "Δημιουργία αντιγράφου ασφαλείας"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr "Το αρχείο δημιουργήθηκε."
|
msgstr "Το αρχείο δημιουργήθηκε."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr "Διαγραφή αρχείου"
|
msgstr "Διαγραφή αρχείου"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr "Το αρχείο διαγράφηκε."
|
msgstr "Το αρχείο διαγράφηκε."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr "Ανεβάστε και επαναφέρετε ένα αντίγραφο ασφαλείας"
|
msgstr "Ανεβάστε και επαναφέρετε ένα αντίγραφο ασφαλείας"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr "Επαναφορά αρχείων από τα αντίγραφα ασφαλείας."
|
msgstr "Επαναφορά αρχείων από τα αντίγραφα ασφαλείας."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr "Δεν βρέθηκε αντίγραφο ασφαλείας."
|
msgstr "Δεν βρέθηκε αντίγραφο ασφαλείας."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr "Επαναφορά από το αρχείο που ανεβάσατε"
|
msgstr "Επαναφορά από το αρχείο που ανεβάσατε"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Δεν υπάρχουν επιπλέον δίσκοι διαθέσιμοι για να προσθέσετε ένα αποθετήριο."
|
"Δεν υπάρχουν επιπλέον δίσκοι διαθέσιμοι για να προσθέσετε ένα αποθετήριο."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr "Δημιουργία αποθετηρίου αντιγράφων ασφαλείας"
|
msgstr "Δημιουργία αποθετηρίου αντιγράφων ασφαλείας"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr "Δημιουργία απομακρυσμένου αποθετηρίου αντιγράφων ασφαλείας"
|
msgstr "Δημιουργία απομακρυσμένου αποθετηρίου αντιγράφων ασφαλείας"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr "Προστέθηκε νέο απομακρυσμένο αποθετήριο SSH."
|
msgstr "Προστέθηκε νέο απομακρυσμένο αποθετήριο SSH."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr "Επιβεβαίωση κεντρικού κλειδιού SSH"
|
msgstr "Επιβεβαίωση κεντρικού κλειδιού SSH"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr "Ο υπολογιστής SSH έχει ήδη επαληθευτεί."
|
msgstr "Ο υπολογιστής SSH έχει ήδη επαληθευτεί."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr "Ο υπολογιστής SSH επιβεβαιώθηκε."
|
msgstr "Ο υπολογιστής SSH επιβεβαιώθηκε."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr "Το δημόσιο κλειδί του υπολογιστή SSH δεν μπόρεσε να επαληθευτεί."
|
msgstr "Το δημόσιο κλειδί του υπολογιστή SSH δεν μπόρεσε να επαληθευτεί."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr "Ο έλεγχος ταυτότητας στον απομακρυσμένο διακομιστή απέτυχε."
|
msgstr "Ο έλεγχος ταυτότητας στον απομακρυσμένο διακομιστή απέτυχε."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr "Σφάλμα κατά τη δημιουργία σύνδεσης στο διακομιστή: {}"
|
msgstr "Σφάλμα κατά τη δημιουργία σύνδεσης στο διακομιστή: {}"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr "Το αποθετήριο αφαιρέθηκε."
|
msgstr "Το αποθετήριο αφαιρέθηκε."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr "Κατάργηση αποθετηρίου"
|
msgstr "Κατάργηση αποθετηρίου"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr "Αποθετήριο που καταργήθηκε. Τα αντίγραφα ασφαλείας δεν διαγράφηκαν."
|
msgstr "Αποθετήριο που καταργήθηκε. Τα αντίγραφα ασφαλείας δεν διαγράφηκαν."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr "Η αφαίρεση δίσκου απέτυχε!"
|
msgstr "Η αφαίρεση δίσκου απέτυχε!"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr "Η προσθήκη δίσκου απέτυχε"
|
msgstr "Η προσθήκη δίσκου απέτυχε"
|
||||||
|
|
||||||
@ -944,24 +931,24 @@ msgid "Configuration updated."
|
|||||||
msgstr "Η ρύθμιση παραμέτρων Ενημερώθηκε."
|
msgstr "Η ρύθμιση παραμέτρων Ενημερώθηκε."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr "Παρουσιάστηκε σφάλμα κατά τη ρύθμιση παραμέτρων."
|
msgstr "Παρουσιάστηκε σφάλμα κατά τη ρύθμιση παραμέτρων."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Password updated"
|
#| msgid "Password updated"
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr "Ενημερώθηκε ο κωδικός πρόσβασης"
|
msgstr "Ενημερώθηκε ο κωδικός πρόσβασης"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Password"
|
#| msgid "Password"
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr "Κωδικός"
|
msgstr "Κωδικός"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Password updated"
|
#| msgid "Password updated"
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
@ -1182,12 +1169,12 @@ msgstr "Το αποθετήριο δημιουργήθηκε."
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr "Παρουσιάστηκε σφάλμα κατά τη δημιουργία του αποθετηρίου."
|
msgstr "Παρουσιάστηκε σφάλμα κατά τη δημιουργία του αποθετηρίου."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr "το {name} διαγράφηκε."
|
msgstr "το {name} διαγράφηκε."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr "Δεν ήταν δυνατή η διαγραφή του {name}: {error}"
|
msgstr "Δεν ήταν δυνατή η διαγραφή του {name}: {error}"
|
||||||
@ -2524,19 +2511,19 @@ msgstr "Διαγραφή αποθετηρίου Git <em>%(name)s</em>"
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr "Να διαγραφεί μόνιμα αυτό το αποθετήριο;"
|
msgstr "Να διαγραφεί μόνιμα αυτό το αποθετήριο;"
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr "Το αποθετήριο δημιουργήθηκε."
|
msgstr "Το αποθετήριο δημιουργήθηκε."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr "Παρουσιάστηκε σφάλμα κατά τη δημιουργία του αποθετηρίου."
|
msgstr "Παρουσιάστηκε σφάλμα κατά τη δημιουργία του αποθετηρίου."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr "To αποθετήριο τροποποιήθηκε."
|
msgstr "To αποθετήριο τροποποιήθηκε."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
msgstr "Τροποποίηση αποθετηρίου"
|
msgstr "Τροποποίηση αποθετηρίου"
|
||||||
|
|
||||||
@ -4649,6 +4636,15 @@ msgstr ""
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr "Ενημερωμένη έκδοση"
|
msgstr "Ενημερωμένη έκδοση"
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr "Υποβολή"
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
#| msgid "Direct connection to the Internet."
|
#| msgid "Direct connection to the Internet."
|
||||||
@ -5852,20 +5848,24 @@ msgid "Android Samba Client"
|
|||||||
msgstr "Πελάτης IRC"
|
msgstr "Πελάτης IRC"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "GNOME Calendar"
|
#| msgid "GNOME Calendar"
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr "GNOME Calendar"
|
msgstr "GNOME Calendar"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5940,38 +5940,38 @@ msgstr "Όνομα μερίσματος"
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr "Ενέργεια"
|
msgstr "Ενέργεια"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "FreedomBox"
|
#| msgid "FreedomBox"
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr "Freedombox"
|
msgstr "Freedombox"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr "Aνοικτό μέρισμα"
|
msgstr "Aνοικτό μέρισμα"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr "Ομαδικό μέρισμα"
|
msgstr "Ομαδικό μέρισμα"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr "Οικιακό μέρισμα"
|
msgstr "Οικιακό μέρισμα"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr "Το μέρισμα ενεργοποιήθηκε."
|
msgstr "Το μέρισμα ενεργοποιήθηκε."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr "Σφάλμα κατά την ενεργοποίηση του μερίσματος: {error_message}"
|
msgstr "Σφάλμα κατά την ενεργοποίηση του μερίσματος: {error_message}"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr "Το μέρισμα απενεργοποιήθηκε."
|
msgstr "Το μέρισμα απενεργοποιήθηκε."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
msgstr "Σφάλμα κατά την απενεργοποίηση του μερίσματος: {error_message}"
|
msgstr "Σφάλμα κατά την απενεργοποίηση του μερίσματος: {error_message}"
|
||||||
@ -8847,39 +8847,39 @@ msgstr ""
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr "Ρύθμιση του %(box_name)s"
|
msgstr "Ρύθμιση του %(box_name)s"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr "Η εφαρμογή εγκαταστάθηκε."
|
msgstr "Η εφαρμογή εγκαταστάθηκε."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr "Να εγκατασταθεί αυτή η εφαρμογή;"
|
msgstr "Να εγκατασταθεί αυτή η εφαρμογή;"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr "Αυτή η εφαρμογή χρειάζεται μια ενημέρωση. Ενημέρωση τώρα?"
|
msgstr "Αυτή η εφαρμογή χρειάζεται μια ενημέρωση. Ενημέρωση τώρα?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Αυτή η εφαρμογή δεν είναι αυτή τη στιγμή διαθέσιμη στο λειτουργικό σας."
|
"Αυτή η εφαρμογή δεν είναι αυτή τη στιγμή διαθέσιμη στο λειτουργικό σας."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
"removed if you proceed:"
|
"removed if you proceed:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr "Εγκατάσταση"
|
msgstr "Εγκατάσταση"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "Ενημερωμένη έκδοση"
|
msgstr "Ενημερωμένη έκδοση"
|
||||||
|
|
||||||
|
|||||||
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2022-08-19 12:58+0000\n"
|
"PO-Revision-Date: 2022-08-19 12:58+0000\n"
|
||||||
"Last-Translator: Fioddor Superconcentrado <fioddor@gmail.com>\n"
|
"Last-Translator: Fioddor Superconcentrado <fioddor@gmail.com>\n"
|
||||||
"Language-Team: Spanish <https://hosted.weblate.org/projects/freedombox/"
|
"Language-Team: Spanish <https://hosted.weblate.org/projects/freedombox/"
|
||||||
@ -446,7 +446,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr "Almacenamiento en {box_name}"
|
msgstr "Almacenamiento en {box_name}"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr "Crear una copia de seguridad nueva"
|
msgstr "Crear una copia de seguridad nueva"
|
||||||
|
|
||||||
@ -498,7 +498,7 @@ msgid "Create Location"
|
|||||||
msgstr "Crear sitio"
|
msgstr "Crear sitio"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
msgstr "Crear repositorio"
|
msgstr "Crear repositorio"
|
||||||
|
|
||||||
@ -515,19 +515,6 @@ msgstr "Hora"
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr "Eliminar el archivo %(name)s"
|
msgstr "Eliminar el archivo %(name)s"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr "Enviar"
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr "Este repositorio está cifrado"
|
msgstr "Este repositorio está cifrado"
|
||||||
@ -554,7 +541,7 @@ msgstr "Descargar"
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr "Restaurar"
|
msgstr "Restaurar"
|
||||||
|
|
||||||
@ -659,99 +646,99 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr "Verificar anfitrión"
|
msgstr "Verificar anfitrión"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr "Calendario de respaldos actualizado."
|
msgstr "Calendario de respaldos actualizado."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr "Agendar respaldos"
|
msgstr "Agendar respaldos"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr "Archivo creado."
|
msgstr "Archivo creado."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr "Borrar archivo"
|
msgstr "Borrar archivo"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr "Archivo borrado."
|
msgstr "Archivo borrado."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr "Subir y restaurar una copia de seguridad"
|
msgstr "Subir y restaurar una copia de seguridad"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr "Archivos restaurados desde la copia de seguridad."
|
msgstr "Archivos restaurados desde la copia de seguridad."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr "No se encontraron copias de seguridad."
|
msgstr "No se encontraron copias de seguridad."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr "Restaurar desde la copia de seguridad subida"
|
msgstr "Restaurar desde la copia de seguridad subida"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr "No hay más discos disponibles para añadir un repositorio."
|
msgstr "No hay más discos disponibles para añadir un repositorio."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr "Crear repositorio de copias de seguridad"
|
msgstr "Crear repositorio de copias de seguridad"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr "Crear repositorio de copias de seguridad remotas"
|
msgstr "Crear repositorio de copias de seguridad remotas"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr "Añadido nuevo repositorio SSH remoto."
|
msgstr "Añadido nuevo repositorio SSH remoto."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr "Verificar la clave de anfitrión SSH"
|
msgstr "Verificar la clave de anfitrión SSH"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr "Clave SSH de anfitrión verificada."
|
msgstr "Clave SSH de anfitrión verificada."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr "Anfitrión SSH verificado."
|
msgstr "Anfitrión SSH verificado."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr "No se pudo verificar la clave pública SSH del anfitrión."
|
msgstr "No se pudo verificar la clave pública SSH del anfitrión."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr "Ha fallado la autenticación en el servidor remoto."
|
msgstr "Ha fallado la autenticación en el servidor remoto."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr "Error al conectar con el servidor: {}"
|
msgstr "Error al conectar con el servidor: {}"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr "Repositorio eliminado."
|
msgstr "Repositorio eliminado."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr "Eliminar repositorio"
|
msgstr "Eliminar repositorio"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr "Repositorio dado de baja. Las copias de seguridad no se han borrado."
|
msgstr "Repositorio dado de baja. Las copias de seguridad no se han borrado."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr "¡No se pudo desmontar!"
|
msgstr "¡No se pudo desmontar!"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr "Montaje fallido"
|
msgstr "Montaje fallido"
|
||||||
|
|
||||||
@ -924,20 +911,20 @@ msgid "Configuration updated."
|
|||||||
msgstr "Configuración actualizada."
|
msgstr "Configuración actualizada."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr "Ha habido un error en la configuración."
|
msgstr "Ha habido un error en la configuración."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr "Contraseña actualizada."
|
msgstr "Contraseña actualizada."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr "Añadir contraseña"
|
msgstr "Añadir contraseña"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
msgstr "Contraseña eliminada."
|
msgstr "Contraseña eliminada."
|
||||||
|
|
||||||
@ -1145,12 +1132,12 @@ msgstr "Biblioteca creada."
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr "Ha habido un error al crear la biblioteca."
|
msgstr "Ha habido un error al crear la biblioteca."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr "{name} eliminado."
|
msgstr "{name} eliminado."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr "No se pudo eliminar {name}: {error}"
|
msgstr "No se pudo eliminar {name}: {error}"
|
||||||
@ -2447,19 +2434,19 @@ msgstr "Borrar Repositorio Git <em>%(name)s</em>"
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr "¿Eliminar este repositorio definitivamente?"
|
msgstr "¿Eliminar este repositorio definitivamente?"
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr "Repositorio creado."
|
msgstr "Repositorio creado."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr "Ha habido un error al crear el repositorio."
|
msgstr "Ha habido un error al crear el repositorio."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr "Repositorio editado."
|
msgstr "Repositorio editado."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
msgstr "Editar repositorio"
|
msgstr "Editar repositorio"
|
||||||
|
|
||||||
@ -4570,6 +4557,15 @@ msgstr "No sé qué tipo de conexión me da mi proveedor de Internet."
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr "Ajustar..."
|
msgstr "Ajustar..."
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr "Enviar"
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "How is Your %(box_name)s Connected to the Internet?"
|
msgid "How is Your %(box_name)s Connected to the Internet?"
|
||||||
@ -5707,18 +5703,24 @@ msgid "Android Samba Client"
|
|||||||
msgstr "Cliente Android Samba"
|
msgstr "Cliente Android Samba"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
#, fuzzy
|
||||||
|
#| msgid "Ghost Commander - Samba plugin"
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr "Ghost Commander - Plugin de Samba"
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr "Ghost Commander - Plugin de Samba"
|
msgstr "Ghost Commander - Plugin de Samba"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr "Reproductor VLC"
|
msgstr "Reproductor VLC"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr "GNOME Archivos"
|
msgstr "GNOME Archivos"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr "Dolphin"
|
msgstr "Dolphin"
|
||||||
|
|
||||||
@ -5783,36 +5785,36 @@ msgstr "Nombre de compartición"
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr "Acción"
|
msgstr "Acción"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr "Disco de sistema de FreedomBox"
|
msgstr "Disco de sistema de FreedomBox"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr "Compartir en abierto"
|
msgstr "Compartir en abierto"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr "Compartir con grupo"
|
msgstr "Compartir con grupo"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr "Compartir con cuenta"
|
msgstr "Compartir con cuenta"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr "Compartición activada."
|
msgstr "Compartición activada."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr "Error al activar compartición: {error_message}"
|
msgstr "Error al activar compartición: {error_message}"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr "Compartición desactivada."
|
msgstr "Compartición desactivada."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
msgstr "Error al desactivar compartición: {error_message}"
|
msgstr "Error al desactivar compartición: {error_message}"
|
||||||
@ -8559,27 +8561,27 @@ msgstr "Desde los puertos externos"
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr "A los puertos de %(box_name)s"
|
msgstr "A los puertos de %(box_name)s"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr "Aplicación instalada."
|
msgstr "Aplicación instalada."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr "¿Instalar esta aplicación?"
|
msgstr "¿Instalar esta aplicación?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr "Esta aplicación necesita actualizarse. ¿Actualizar ahora?"
|
msgstr "Esta aplicación necesita actualizarse. ¿Actualizar ahora?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr "Esta aplicación no está disponible actualmente en su distribución."
|
msgstr "Esta aplicación no está disponible actualmente en su distribución."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr "Volver a coomprobar"
|
msgstr "Volver a coomprobar"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
@ -8589,11 +8591,11 @@ msgstr ""
|
|||||||
"sistema son incompatibles con la instalación de esta app. Si continuas se "
|
"sistema son incompatibles con la instalación de esta app. Si continuas se "
|
||||||
"eliminarán los siguientes paquetes:"
|
"eliminarán los siguientes paquetes:"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr "Instalar"
|
msgstr "Instalar"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "Actualización"
|
msgstr "Actualización"
|
||||||
|
|
||||||
|
|||||||
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2021-09-07 11:34+0000\n"
|
"PO-Revision-Date: 2021-09-07 11:34+0000\n"
|
||||||
"Last-Translator: Seyed mohammad ali Hosseinifard <ali_hosseine@yahoo.com>\n"
|
"Last-Translator: Seyed mohammad ali Hosseinifard <ali_hosseine@yahoo.com>\n"
|
||||||
"Language-Team: Persian <https://hosted.weblate.org/projects/freedombox/"
|
"Language-Team: Persian <https://hosted.weblate.org/projects/freedombox/"
|
||||||
@ -435,7 +435,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr "کتاب راهنمای {box_name}"
|
msgstr "کتاب راهنمای {box_name}"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Create Connection"
|
#| msgid "Create Connection"
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
@ -498,7 +498,7 @@ msgid "Create Location"
|
|||||||
msgstr "ساختن اتصال"
|
msgstr "ساختن اتصال"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Create Connection"
|
#| msgid "Create Connection"
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
@ -520,20 +520,6 @@ msgstr "منطقهٔ زمانی"
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr "پاککردن %(name)s"
|
msgstr "پاککردن %(name)s"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
#, fuzzy
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr "فرستادن"
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -566,7 +552,7 @@ msgstr "کتاب راهنمای {box_name}"
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -654,109 +640,109 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Create Connection"
|
#| msgid "Create Connection"
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr "ساختن اتصال"
|
msgstr "ساختن اتصال"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Delete"
|
#| msgid "Delete"
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr "پاککردن"
|
msgstr "پاککردن"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "{name} deleted."
|
#| msgid "{name} deleted."
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr "{name} پاک شد."
|
msgstr "{name} پاک شد."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Create Connection"
|
#| msgid "Create Connection"
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr "ساختن اتصال"
|
msgstr "ساختن اتصال"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Error installing application: {error}"
|
#| msgid "Error installing application: {error}"
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr "خطا هنگام نصب برنامه: {error}"
|
msgstr "خطا هنگام نصب برنامه: {error}"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -922,24 +908,24 @@ msgid "Configuration updated."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Password"
|
#| msgid "Password"
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr "رمز"
|
msgstr "رمز"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Password"
|
#| msgid "Password"
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr "رمز"
|
msgstr "رمز"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Password"
|
#| msgid "Password"
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
@ -1150,12 +1136,12 @@ msgstr ""
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr "هنگام انتشار کلید خطایی رخ داد."
|
msgstr "هنگام انتشار کلید خطایی رخ داد."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr "{name} پاک شد."
|
msgstr "{name} پاک شد."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr "نشد که {name} پاک شود: {error}"
|
msgstr "نشد که {name} پاک شود: {error}"
|
||||||
@ -2453,21 +2439,21 @@ msgstr "پاککردن ویکی یا وبلاگ <em>%(name)s</em>"
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr "اتصال <strong>%(name)s</strong> را برای همیشه پاک میکنید؟"
|
msgstr "اتصال <strong>%(name)s</strong> را برای همیشه پاک میکنید؟"
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Error occurred while publishing key."
|
#| msgid "Error occurred while publishing key."
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr "هنگام انتشار کلید خطایی رخ داد."
|
msgstr "هنگام انتشار کلید خطایی رخ داد."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Create Connection"
|
#| msgid "Create Connection"
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
@ -4453,6 +4439,16 @@ msgstr ""
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr "ساختن..."
|
msgstr "ساختن..."
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr "فرستادن"
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
#| msgid "Direct connection to the Internet."
|
#| msgid "Direct connection to the Internet."
|
||||||
@ -5481,18 +5477,22 @@ msgid "Android Samba Client"
|
|||||||
msgstr "برنامهٔ DNS متغیر (Dynamic DNS Client)"
|
msgstr "برنامهٔ DNS متغیر (Dynamic DNS Client)"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5554,48 +5554,48 @@ msgstr "مشترک"
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr "کنشها"
|
msgstr "کنشها"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr "FreedomBox"
|
msgstr "FreedomBox"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Shared"
|
#| msgid "Shared"
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr "مشترک"
|
msgstr "مشترک"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Shared"
|
#| msgid "Shared"
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr "مشترک"
|
msgstr "مشترک"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Shared"
|
#| msgid "Shared"
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr "مشترک"
|
msgstr "مشترک"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "{name} deleted."
|
#| msgid "{name} deleted."
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr "{name} پاک شد."
|
msgstr "{name} پاک شد."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, fuzzy, python-brace-format
|
#, fuzzy, python-brace-format
|
||||||
#| msgid "Error installing application: {error}"
|
#| msgid "Error installing application: {error}"
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr "خطا هنگام نصب برنامه: {error}"
|
msgstr "خطا هنگام نصب برنامه: {error}"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Shared"
|
#| msgid "Shared"
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr "مشترک"
|
msgstr "مشترک"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, fuzzy, python-brace-format
|
#, fuzzy, python-brace-format
|
||||||
#| msgid "Error installing application: {error}"
|
#| msgid "Error installing application: {error}"
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
@ -8195,39 +8195,39 @@ msgstr ""
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr "راهاندازی %(box_name)s"
|
msgstr "راهاندازی %(box_name)s"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr "برنامه نصب شد."
|
msgstr "برنامه نصب شد."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
"removed if you proceed:"
|
"removed if you proceed:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Plinth 0.6\n"
|
"Project-Id-Version: Plinth 0.6\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2016-01-31 22:24+0530\n"
|
"PO-Revision-Date: 2016-01-31 22:24+0530\n"
|
||||||
"Last-Translator: Sunil Mohan Adapa <sunil@medhas.org>\n"
|
"Last-Translator: Sunil Mohan Adapa <sunil@medhas.org>\n"
|
||||||
"Language-Team: Plinth Developers <freedombox-discuss@lists.alioth.debian."
|
"Language-Team: Plinth Developers <freedombox-discuss@lists.alioth.debian."
|
||||||
@ -451,7 +451,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr "{box_name} MANUAL"
|
msgstr "{box_name} MANUAL"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "PageKite Account"
|
#| msgid "PageKite Account"
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
@ -518,7 +518,7 @@ msgid "Create Location"
|
|||||||
msgstr "CREATE CONNECTION"
|
msgstr "CREATE CONNECTION"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Create User"
|
#| msgid "Create User"
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
@ -542,19 +542,6 @@ msgstr "TIME ZONE"
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr "DELETE %(name)s"
|
msgstr "DELETE %(name)s"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr "SUBMIT"
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "packages not found"
|
#| msgid "packages not found"
|
||||||
@ -589,7 +576,7 @@ msgstr "{box_name} MANUAL"
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "reStore"
|
#| msgid "reStore"
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
@ -681,113 +668,113 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "PageKite Account"
|
#| msgid "PageKite Account"
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr "PAGEKITE ACCOUNT"
|
msgstr "PAGEKITE ACCOUNT"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Delete"
|
#| msgid "Delete"
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr "DELETE"
|
msgstr "DELETE"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "{name} deleted."
|
#| msgid "{name} deleted."
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr "{name} DELETED."
|
msgstr "{name} DELETED."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Create User"
|
#| msgid "Create User"
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr "CREATE USER"
|
msgstr "CREATE USER"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Create User"
|
#| msgid "Create User"
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr "CREATE USER"
|
msgstr "CREATE USER"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Error installing packages: {string} {details}"
|
#| msgid "Error installing packages: {string} {details}"
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr "ERROR INSTALLING PACKAGES: {string} {details}"
|
msgstr "ERROR INSTALLING PACKAGES: {string} {details}"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "packages not found"
|
#| msgid "packages not found"
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr "PACKAGES NOT FOUND"
|
msgstr "PACKAGES NOT FOUND"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -963,24 +950,24 @@ msgid "Configuration updated."
|
|||||||
msgstr "CONFIGURATION UPDATED."
|
msgstr "CONFIGURATION UPDATED."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr "AN ERROR OCCURRED DURING CONFIGURATION."
|
msgstr "AN ERROR OCCURRED DURING CONFIGURATION."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Password"
|
#| msgid "Password"
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr "PASSWORD"
|
msgstr "PASSWORD"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Password"
|
#| msgid "Password"
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr "PASSWORD"
|
msgstr "PASSWORD"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Password"
|
#| msgid "Password"
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
@ -1195,12 +1182,12 @@ msgstr "PACKAGES NOT FOUND"
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr "AN ERROR OCCURRED DURING CONFIGURATION."
|
msgstr "AN ERROR OCCURRED DURING CONFIGURATION."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr "{name} DELETED."
|
msgstr "{name} DELETED."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr "COULD NOT DELETE {name}: {error}"
|
msgstr "COULD NOT DELETE {name}: {error}"
|
||||||
@ -2563,25 +2550,25 @@ msgstr "DELETE WIKI OR BLOG <em>%(name)s</em>"
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr "DELETE USER PERMANENTLY?"
|
msgstr "DELETE USER PERMANENTLY?"
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "packages not found"
|
#| msgid "packages not found"
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr "PACKAGES NOT FOUND"
|
msgstr "PACKAGES NOT FOUND"
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "An error occurred during configuration."
|
#| msgid "An error occurred during configuration."
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr "AN ERROR OCCURRED DURING CONFIGURATION."
|
msgstr "AN ERROR OCCURRED DURING CONFIGURATION."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "packages not found"
|
#| msgid "packages not found"
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr "PACKAGES NOT FOUND"
|
msgstr "PACKAGES NOT FOUND"
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Create User"
|
#| msgid "Create User"
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
@ -4605,6 +4592,15 @@ msgstr ""
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr "UPDATE URL"
|
msgstr "UPDATE URL"
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr "SUBMIT"
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
#| msgid "Direct connection to the Internet."
|
#| msgid "Direct connection to the Internet."
|
||||||
@ -5806,18 +5802,22 @@ msgid "Android Samba Client"
|
|||||||
msgstr "QUASSEL IRC CLIENT"
|
msgstr "QUASSEL IRC CLIENT"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5879,49 +5879,49 @@ msgstr "KITE NAME"
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr "ACTIONS"
|
msgstr "ACTIONS"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "FreedomBox"
|
#| msgid "FreedomBox"
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr "FREEDOMBOX"
|
msgstr "FREEDOMBOX"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Add Service"
|
#| msgid "Add Service"
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr "ADD SERVICE"
|
msgstr "ADD SERVICE"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Add Service"
|
#| msgid "Add Service"
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr "ADD SERVICE"
|
msgstr "ADD SERVICE"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Add Service"
|
#| msgid "Add Service"
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr "ADD SERVICE"
|
msgstr "ADD SERVICE"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "{name} deleted."
|
#| msgid "{name} deleted."
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr "{name} DELETED."
|
msgstr "{name} DELETED."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, fuzzy, python-brace-format
|
#, fuzzy, python-brace-format
|
||||||
#| msgid "Error installing packages: {string} {details}"
|
#| msgid "Error installing packages: {string} {details}"
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr "ERROR INSTALLING PACKAGES: {string} {details}"
|
msgstr "ERROR INSTALLING PACKAGES: {string} {details}"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "{name} deleted."
|
#| msgid "{name} deleted."
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr "{name} DELETED."
|
msgstr "{name} DELETED."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, fuzzy, python-brace-format
|
#, fuzzy, python-brace-format
|
||||||
#| msgid "Error installing packages: {string} {details}"
|
#| msgid "Error installing packages: {string} {details}"
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
@ -8708,42 +8708,42 @@ msgstr ""
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr "%(box_name)s SETUP"
|
msgstr "%(box_name)s SETUP"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Applications"
|
#| msgid "Applications"
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr "APPLICATIONS"
|
msgstr "APPLICATIONS"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Installation"
|
#| msgid "Installation"
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr "INSTALLATION"
|
msgstr "INSTALLATION"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
"removed if you proceed:"
|
"removed if you proceed:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr "INSTALL"
|
msgstr "INSTALL"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Update URL"
|
#| msgid "Update URL"
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
|
|||||||
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2021-01-18 12:32+0000\n"
|
"PO-Revision-Date: 2021-01-18 12:32+0000\n"
|
||||||
"Last-Translator: ikmaak <info@ikmaak.nl>\n"
|
"Last-Translator: ikmaak <info@ikmaak.nl>\n"
|
||||||
"Language-Team: Galician <https://hosted.weblate.org/projects/freedombox/"
|
"Language-Team: Galician <https://hosted.weblate.org/projects/freedombox/"
|
||||||
@ -409,7 +409,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -458,7 +458,7 @@ msgid "Create Location"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -475,19 +475,6 @@ msgstr ""
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -514,7 +501,7 @@ msgstr "Descargar"
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -598,99 +585,99 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -848,20 +835,20 @@ msgid "Configuration updated."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1046,12 +1033,12 @@ msgstr ""
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2186,19 +2173,19 @@ msgstr ""
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -3996,6 +3983,15 @@ msgstr ""
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "How is Your %(box_name)s Connected to the Internet?"
|
msgid "How is Your %(box_name)s Connected to the Internet?"
|
||||||
@ -4962,18 +4958,22 @@ msgid "Android Samba Client"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5027,39 +5027,39 @@ msgstr ""
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "FreedomBox"
|
#| msgid "FreedomBox"
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr "FreedomBox"
|
msgstr "FreedomBox"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, fuzzy, python-brace-format
|
#, fuzzy, python-brace-format
|
||||||
#| msgid "Error installing application: {error}"
|
#| msgid "Error installing application: {error}"
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr "Produciuse un erro ao instalar o aplicativo: {error}"
|
msgstr "Produciuse un erro ao instalar o aplicativo: {error}"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, fuzzy, python-brace-format
|
#, fuzzy, python-brace-format
|
||||||
#| msgid "Error installing application: {error}"
|
#| msgid "Error installing application: {error}"
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
@ -7488,38 +7488,38 @@ msgstr ""
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr "Aplicativo instalado."
|
msgstr "Aplicativo instalado."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
"removed if you proceed:"
|
"removed if you proceed:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2021-01-18 12:32+0000\n"
|
"PO-Revision-Date: 2021-01-18 12:32+0000\n"
|
||||||
"Last-Translator: ikmaak <info@ikmaak.nl>\n"
|
"Last-Translator: ikmaak <info@ikmaak.nl>\n"
|
||||||
"Language-Team: Gujarati <https://hosted.weblate.org/projects/freedombox/"
|
"Language-Team: Gujarati <https://hosted.weblate.org/projects/freedombox/"
|
||||||
@ -424,7 +424,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -479,7 +479,7 @@ msgid "Create Location"
|
|||||||
msgstr "દસ્તાવેજીકરણ"
|
msgstr "દસ્તાવેજીકરણ"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Documentation"
|
#| msgid "Documentation"
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
@ -500,19 +500,6 @@ msgstr "સમય વિસ્તાર"
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr "સમર્પિત કરો"
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -545,7 +532,7 @@ msgstr "માર્ગદર્શિકા ડાઉનલોડ"
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -631,101 +618,101 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Error installing application: {error}"
|
#| msgid "Error installing application: {error}"
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr "એપ્લીકેશન પ્રસ્થાપિત કરતાં ભૂલ થઇ છે: {error}"
|
msgstr "એપ્લીકેશન પ્રસ્થાપિત કરતાં ભૂલ થઇ છે: {error}"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -889,24 +876,24 @@ msgid "Configuration updated."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Password"
|
#| msgid "Password"
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr "પાસવર્ડ"
|
msgstr "પાસવર્ડ"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Password"
|
#| msgid "Password"
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr "પાસવર્ડ"
|
msgstr "પાસવર્ડ"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Password"
|
#| msgid "Password"
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
@ -1106,12 +1093,12 @@ msgstr ""
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2396,19 +2383,19 @@ msgstr ""
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Documentation"
|
#| msgid "Documentation"
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
@ -4243,6 +4230,15 @@ msgstr ""
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr "URL અપડેટ કરો"
|
msgstr "URL અપડેટ કરો"
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr "સમર્પિત કરો"
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
#| msgid "Direct connection to the Internet."
|
#| msgid "Direct connection to the Internet."
|
||||||
@ -5228,18 +5224,22 @@ msgid "Android Samba Client"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5293,41 +5293,41 @@ msgstr ""
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "FreedomBox"
|
#| msgid "FreedomBox"
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr "ફ્રિડમબોક્ષ"
|
msgstr "ફ્રિડમબોક્ષ"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, fuzzy, python-brace-format
|
#, fuzzy, python-brace-format
|
||||||
#| msgid "Error installing application: {error}"
|
#| msgid "Error installing application: {error}"
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr "એપ્લીકેશન પ્રસ્થાપિત કરતાં ભૂલ થઇ છે: {error}"
|
msgstr "એપ્લીકેશન પ્રસ્થાપિત કરતાં ભૂલ થઇ છે: {error}"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Application disabled"
|
#| msgid "Application disabled"
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr "એપ્લિકેશન અક્ષમ છે"
|
msgstr "એપ્લિકેશન અક્ષમ છે"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, fuzzy, python-brace-format
|
#, fuzzy, python-brace-format
|
||||||
#| msgid "Error installing application: {error}"
|
#| msgid "Error installing application: {error}"
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
@ -7838,38 +7838,38 @@ msgstr ""
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr "એપ્લીકેશન પ્રસ્થાપિત થઇ ગઈ છે."
|
msgstr "એપ્લીકેશન પ્રસ્થાપિત થઇ ગઈ છે."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
"removed if you proceed:"
|
"removed if you proceed:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2021-01-18 12:32+0000\n"
|
"PO-Revision-Date: 2021-01-18 12:32+0000\n"
|
||||||
"Last-Translator: ikmaak <info@ikmaak.nl>\n"
|
"Last-Translator: ikmaak <info@ikmaak.nl>\n"
|
||||||
"Language-Team: Hindi <https://hosted.weblate.org/projects/freedombox/"
|
"Language-Team: Hindi <https://hosted.weblate.org/projects/freedombox/"
|
||||||
@ -440,7 +440,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr "{box_name} मैनुअल"
|
msgstr "{box_name} मैनुअल"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Create Account"
|
#| msgid "Create Account"
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
@ -509,7 +509,7 @@ msgid "Create Location"
|
|||||||
msgstr "कनेक्शन बनाएँ"
|
msgstr "कनेक्शन बनाएँ"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Create User"
|
#| msgid "Create User"
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
@ -528,19 +528,6 @@ msgstr "समय"
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr "पुरालेख हटाईये %(name)s"
|
msgstr "पुरालेख हटाईये %(name)s"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr "जमा करें"
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -573,7 +560,7 @@ msgstr "डाउनलोडिंग"
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "reStore"
|
#| msgid "reStore"
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
@ -665,111 +652,111 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Create Account"
|
#| msgid "Create Account"
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr "अकाउंट बनाएँ"
|
msgstr "अकाउंट बनाएँ"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr "पुरालेख बनाया गया."
|
msgstr "पुरालेख बनाया गया."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr "पुरालेख हटाईये"
|
msgstr "पुरालेख हटाईये"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr "पुरालेख हटा गया है."
|
msgstr "पुरालेख हटा गया है."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Name for new backup archive."
|
#| msgid "Name for new backup archive."
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr "नया बैकअप पुरालेख के लिये नाम."
|
msgstr "नया बैकअप पुरालेख के लिये नाम."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Name for new backup archive."
|
#| msgid "Name for new backup archive."
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr "नया बैकअप पुरालेख के लिये नाम."
|
msgstr "नया बैकअप पुरालेख के लिये नाम."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Create Snapshot"
|
#| msgid "Create Snapshot"
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr "स्नैपशॉट बनाइये"
|
msgstr "स्नैपशॉट बनाइये"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Add new introducer"
|
#| msgid "Add new introducer"
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr "नया इंट्रोड्यूसर जोड़ें"
|
msgstr "नया इंट्रोड्यूसर जोड़ें"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Error installing application: {error}"
|
#| msgid "Error installing application: {error}"
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr "एप्लिकेशन नहीं इंस्टॉल जा सकता: {error}"
|
msgstr "एप्लिकेशन नहीं इंस्टॉल जा सकता: {error}"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "The operation failed."
|
#| msgid "The operation failed."
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
@ -943,24 +930,24 @@ msgid "Configuration updated."
|
|||||||
msgstr "कॉन्फ़िगरेशन अपडेट किया."
|
msgstr "कॉन्फ़िगरेशन अपडेट किया."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr "कॉंफ़िगरेशन के दौरान कूछ त्रुटि हुई."
|
msgstr "कॉंफ़िगरेशन के दौरान कूछ त्रुटि हुई."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Password updated"
|
#| msgid "Password updated"
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr "पासवर्ड अपडेट"
|
msgstr "पासवर्ड अपडेट"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Password"
|
#| msgid "Password"
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr "पासवर्ड"
|
msgstr "पासवर्ड"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Password updated"
|
#| msgid "Password updated"
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
@ -1176,12 +1163,12 @@ msgstr "पुरालेख बनाया गया."
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr "कॉंफ़िगरेशन के दौरान कूछ त्रुटि हुई."
|
msgstr "कॉंफ़िगरेशन के दौरान कूछ त्रुटि हुई."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr "{name} हटा गया है."
|
msgstr "{name} हटा गया है."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr "{name} नहीं हटा गया है: {error}"
|
msgstr "{name} नहीं हटा गया है: {error}"
|
||||||
@ -2519,21 +2506,21 @@ msgstr "विकी और ब्लॉग हटाईये <em>%(name)s</em
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr "इस स्नैपशॉट को स्थाई रूप से हटाएं?"
|
msgstr "इस स्नैपशॉट को स्थाई रूप से हटाएं?"
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "An error occurred during configuration."
|
#| msgid "An error occurred during configuration."
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr "कॉंफ़िगरेशन के दौरान कूछ त्रुटि हुई."
|
msgstr "कॉंफ़िगरेशन के दौरान कूछ त्रुटि हुई."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Create User"
|
#| msgid "Create User"
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
@ -4528,6 +4515,15 @@ msgstr ""
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr "अपडेट"
|
msgstr "अपडेट"
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr "जमा करें"
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
#| msgid "Direct connection to the Internet."
|
#| msgid "Direct connection to the Internet."
|
||||||
@ -5703,20 +5699,24 @@ msgid "Android Samba Client"
|
|||||||
msgstr "आईआरसी क्लाइंट"
|
msgstr "आईआरसी क्लाइंट"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "GNOME Calendar"
|
#| msgid "GNOME Calendar"
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr "गनोम कैलेंडर"
|
msgstr "गनोम कैलेंडर"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5778,49 +5778,49 @@ msgstr "शेयर जोड़ा गया."
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr "एक्सआयन"
|
msgstr "एक्सआयन"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "FreedomBox"
|
#| msgid "FreedomBox"
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr "फ्रीडमबोएक्स"
|
msgstr "फ्रीडमबोएक्स"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Add Share"
|
#| msgid "Add Share"
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr "शेयर जोड़ें"
|
msgstr "शेयर जोड़ें"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Add Share"
|
#| msgid "Add Share"
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr "शेयर जोड़ें"
|
msgstr "शेयर जोड़ें"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Homepage"
|
#| msgid "Homepage"
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr "होमपेज"
|
msgstr "होमपेज"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Share deleted."
|
#| msgid "Share deleted."
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr "शेयर हटाया गया."
|
msgstr "शेयर हटाया गया."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, fuzzy, python-brace-format
|
#, fuzzy, python-brace-format
|
||||||
#| msgid "Error ejecting device: {error_message}"
|
#| msgid "Error ejecting device: {error_message}"
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr "एेरर इजेक्टिग्न डिवाइस: {error_message}"
|
msgstr "एेरर इजेक्टिग्न डिवाइस: {error_message}"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Share edited."
|
#| msgid "Share edited."
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr "शेयर संपादित किया गया."
|
msgstr "शेयर संपादित किया गया."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, fuzzy, python-brace-format
|
#, fuzzy, python-brace-format
|
||||||
#| msgid "Error ejecting device: {error_message}"
|
#| msgid "Error ejecting device: {error_message}"
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
@ -8628,38 +8628,38 @@ msgstr ""
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr "%(box_name)s सेटअप"
|
msgstr "%(box_name)s सेटअप"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr "एप्लिकेशन इंस्टॉल हो गया."
|
msgstr "एप्लिकेशन इंस्टॉल हो गया."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr "यह एप्लिकेशन इंस्टॉल करें?"
|
msgstr "यह एप्लिकेशन इंस्टॉल करें?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr "इस ऐप्लिकेशन को अप्डेट चाहिये. अभी अप्डेट करें?"
|
msgstr "इस ऐप्लिकेशन को अप्डेट चाहिये. अभी अप्डेट करें?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr "यह एप्लिकेशन अभी अापका वितरण में उपलब्ध नहीं है."
|
msgstr "यह एप्लिकेशन अभी अापका वितरण में उपलब्ध नहीं है."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
"removed if you proceed:"
|
"removed if you proceed:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr "इंस्टॉल करें"
|
msgstr "इंस्टॉल करें"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "अपडेट"
|
msgstr "अपडेट"
|
||||||
|
|
||||||
|
|||||||
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2022-05-10 02:10+0000\n"
|
"PO-Revision-Date: 2022-05-10 02:10+0000\n"
|
||||||
"Last-Translator: ikmaak <info@ikmaak.nl>\n"
|
"Last-Translator: ikmaak <info@ikmaak.nl>\n"
|
||||||
"Language-Team: Hungarian <https://hosted.weblate.org/projects/freedombox/"
|
"Language-Team: Hungarian <https://hosted.weblate.org/projects/freedombox/"
|
||||||
@ -442,7 +442,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr "{box_name} Tárhely"
|
msgstr "{box_name} Tárhely"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr "Új biztonsági mentés létrehozása"
|
msgstr "Új biztonsági mentés létrehozása"
|
||||||
|
|
||||||
@ -495,7 +495,7 @@ msgid "Create Location"
|
|||||||
msgstr "Hely létrehozása"
|
msgstr "Hely létrehozása"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
msgstr "Tároló létrehozása"
|
msgstr "Tároló létrehozása"
|
||||||
|
|
||||||
@ -512,19 +512,6 @@ msgstr "Idő"
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr "%(name)s archívum törlése"
|
msgstr "%(name)s archívum törlése"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr "Küldés"
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr "Ez a tároló titkosított"
|
msgstr "Ez a tároló titkosított"
|
||||||
@ -553,7 +540,7 @@ msgstr "Letöltés"
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr "Visszaállítás"
|
msgstr "Visszaállítás"
|
||||||
|
|
||||||
@ -656,99 +643,99 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr "Állomás ellenőrzése"
|
msgstr "Állomás ellenőrzése"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr "A biztonsági mentések készítésének ütemezése frissítve."
|
msgstr "A biztonsági mentések készítésének ütemezése frissítve."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr "Biztonsági mentések ütemezése"
|
msgstr "Biztonsági mentések ütemezése"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr "Archívum létrehozva."
|
msgstr "Archívum létrehozva."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr "Archívum törlése"
|
msgstr "Archívum törlése"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr "Archívum törölve."
|
msgstr "Archívum törölve."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr "Biztonsági mentések feltöltése és visszaállítása"
|
msgstr "Biztonsági mentések feltöltése és visszaállítása"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr "Visszaállított fájlok a biztonsági mentésből."
|
msgstr "Visszaállított fájlok a biztonsági mentésből."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr "Nem található biztonsági mentési fájl."
|
msgstr "Nem található biztonsági mentési fájl."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr "Visszaállítás a feltöltött fájlból"
|
msgstr "Visszaállítás a feltöltött fájlból"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr "Nincs további lemez amit a tárolóhoz lehetne adni."
|
msgstr "Nincs további lemez amit a tárolóhoz lehetne adni."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr "Biztonsági mentési tároló létrehozása"
|
msgstr "Biztonsági mentési tároló létrehozása"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr "Távoli biztonsági mentési tároló létrehozása"
|
msgstr "Távoli biztonsági mentési tároló létrehozása"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr "Új távoli SSH tároló hozzáadva."
|
msgstr "Új távoli SSH tároló hozzáadva."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr "SSH-állomáskulcs ellenőrzése"
|
msgstr "SSH-állomáskulcs ellenőrzése"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr "Az SSH-állomás már ellenőrzött."
|
msgstr "Az SSH-állomás már ellenőrzött."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr "SSH-állomás leellenőrizve."
|
msgstr "SSH-állomás leellenőrizve."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr "SSH-állomás nyilvános kulcsa nem ellenőrizhető le."
|
msgstr "SSH-állomás nyilvános kulcsa nem ellenőrizhető le."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr "A távoli szerverrel végzett hitelesítés sikertelen."
|
msgstr "A távoli szerverrel végzett hitelesítés sikertelen."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr "Hiba lépett fel a szerverhez kapcsolódás során: {}"
|
msgstr "Hiba lépett fel a szerverhez kapcsolódás során: {}"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr "Tároló eltávolítva."
|
msgstr "Tároló eltávolítva."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr "Tároló eltávolítása"
|
msgstr "Tároló eltávolítása"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr "Tároló eltávolítva. A biztonsági mentések nem lettek törölve."
|
msgstr "Tároló eltávolítva. A biztonsági mentések nem lettek törölve."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr "Lecsatolás sikertelen!"
|
msgstr "Lecsatolás sikertelen!"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr "Felcsatolás sikertelen"
|
msgstr "Felcsatolás sikertelen"
|
||||||
|
|
||||||
@ -922,20 +909,20 @@ msgid "Configuration updated."
|
|||||||
msgstr "Beállítások frissítve."
|
msgstr "Beállítások frissítve."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr "Hiba történt a beállítás során."
|
msgstr "Hiba történt a beállítás során."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr "Jelszó hozzáadva."
|
msgstr "Jelszó hozzáadva."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr "Jelszó hozzáadása"
|
msgstr "Jelszó hozzáadása"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
msgstr "Jelszó törölve."
|
msgstr "Jelszó törölve."
|
||||||
|
|
||||||
@ -1148,12 +1135,12 @@ msgstr "Könyvtár létrehozva."
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr "Hiba történt a könyvtár létrehozása közben."
|
msgstr "Hiba történt a könyvtár létrehozása közben."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr "{name} törölve."
|
msgstr "{name} törölve."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr "{name} nem törölhető: {error}"
|
msgstr "{name} nem törölhető: {error}"
|
||||||
@ -2455,19 +2442,19 @@ msgstr "<em>%(name)s</em> Git-tároló törlése"
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr "Véglegesen törlöd ezt a tárolót?"
|
msgstr "Véglegesen törlöd ezt a tárolót?"
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr "Tároló létrehozva."
|
msgstr "Tároló létrehozva."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr "Hiba történt a tároló létrehozása közben."
|
msgstr "Hiba történt a tároló létrehozása közben."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr "Tároló szerkesztve."
|
msgstr "Tároló szerkesztve."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
msgstr "Tároló szerkesztése"
|
msgstr "Tároló szerkesztése"
|
||||||
|
|
||||||
@ -4610,6 +4597,15 @@ msgstr "Nem tudom, milyen típusú kapcsolatot biztosít az internetszolgáltat
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr "Frissítés…"
|
msgstr "Frissítés…"
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr "Küldés"
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "How is Your %(box_name)s Connected to the Internet?"
|
msgid "How is Your %(box_name)s Connected to the Internet?"
|
||||||
@ -5760,18 +5756,24 @@ msgid "Android Samba Client"
|
|||||||
msgstr "Android Samba-kliens"
|
msgstr "Android Samba-kliens"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
#, fuzzy
|
||||||
|
#| msgid "Ghost Commander - Samba plugin"
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr "Ghost Commander - Samba plugin"
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr "Ghost Commander - Samba plugin"
|
msgstr "Ghost Commander - Samba plugin"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr "VLC media player"
|
msgstr "VLC media player"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr "GNOME Fájlok"
|
msgstr "GNOME Fájlok"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr "Dolphin"
|
msgstr "Dolphin"
|
||||||
|
|
||||||
@ -5836,36 +5838,36 @@ msgstr "Megosztás neve"
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr "Művelet"
|
msgstr "Művelet"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr "FreedomBox OS lemez"
|
msgstr "FreedomBox OS lemez"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr "Nyílt megosztás"
|
msgstr "Nyílt megosztás"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr "Csoport megosztás"
|
msgstr "Csoport megosztás"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr "Saját könyvtár megosztása"
|
msgstr "Saját könyvtár megosztása"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr "Megosztás engedélyezve."
|
msgstr "Megosztás engedélyezve."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr "Hiba történt a megosztás engedélyezése során: {error_message}"
|
msgstr "Hiba történt a megosztás engedélyezése során: {error_message}"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr "Megosztás letiltva."
|
msgstr "Megosztás letiltva."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
msgstr "Hiba történt a megosztás letiltásakor: {error_message}"
|
msgstr "Hiba történt a megosztás letiltásakor: {error_message}"
|
||||||
@ -8648,27 +8650,27 @@ msgstr "Router/WAN-portokról"
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr "A %(box_name)s portokhoz"
|
msgstr "A %(box_name)s portokhoz"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr "Alkalmazás telepítve."
|
msgstr "Alkalmazás telepítve."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr "Alkalmazás telepítése?"
|
msgstr "Alkalmazás telepítése?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr "Ennek az alkalmazásnak frissítésre van szüksége. Frissítés most?"
|
msgstr "Ennek az alkalmazásnak frissítésre van szüksége. Frissítés most?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr "Ez az alkalmazás jelenleg nem hozzáférhető ebben a disztribúcióban."
|
msgstr "Ez az alkalmazás jelenleg nem hozzáférhető ebben a disztribúcióban."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr "Ellenörzés ismét"
|
msgstr "Ellenörzés ismét"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
@ -8678,11 +8680,11 @@ msgstr ""
|
|||||||
"csomagok ütköznek ennek az alkalmazásnak a telepítésével. A következő "
|
"csomagok ütköznek ennek az alkalmazásnak a telepítésével. A következő "
|
||||||
"csomagok törlődnek, ha folytatod:"
|
"csomagok törlődnek, ha folytatod:"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr "Telepítés"
|
msgstr "Telepítés"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "Frissítés"
|
msgstr "Frissítés"
|
||||||
|
|
||||||
|
|||||||
@ -2,7 +2,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Indonesian (FreedomBox)\n"
|
"Project-Id-Version: Indonesian (FreedomBox)\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2021-06-24 00:42+0000\n"
|
"PO-Revision-Date: 2021-06-24 00:42+0000\n"
|
||||||
"Last-Translator: Reza Almanda <rezaalmanda27@gmail.com>\n"
|
"Last-Translator: Reza Almanda <rezaalmanda27@gmail.com>\n"
|
||||||
"Language-Team: Indonesian <https://hosted.weblate.org/projects/freedombox/"
|
"Language-Team: Indonesian <https://hosted.weblate.org/projects/freedombox/"
|
||||||
@ -434,7 +434,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr "{box_name} Penyimpanan"
|
msgstr "{box_name} Penyimpanan"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr "Buat cadangan baru"
|
msgstr "Buat cadangan baru"
|
||||||
|
|
||||||
@ -490,7 +490,7 @@ msgid "Create Location"
|
|||||||
msgstr "Buat Lokasi"
|
msgstr "Buat Lokasi"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
msgstr "Buat Repositori"
|
msgstr "Buat Repositori"
|
||||||
|
|
||||||
@ -507,19 +507,6 @@ msgstr "Waktu"
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr "Hapus arsip %(name)s"
|
msgstr "Hapus arsip %(name)s"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr "Kirimkan"
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr "Repositori ini dienkripsi"
|
msgstr "Repositori ini dienkripsi"
|
||||||
@ -546,7 +533,7 @@ msgstr "Unduh"
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr "Mengembalikan"
|
msgstr "Mengembalikan"
|
||||||
|
|
||||||
@ -647,99 +634,99 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr "Verifikasi Host"
|
msgstr "Verifikasi Host"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr "Jadwal cadangan diperbarui."
|
msgstr "Jadwal cadangan diperbarui."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr "Jadwalkan cadangan"
|
msgstr "Jadwalkan cadangan"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr "Arsip dibuat."
|
msgstr "Arsip dibuat."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr "Hapus Arsip"
|
msgstr "Hapus Arsip"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr "Arsip dihapus."
|
msgstr "Arsip dihapus."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr "Unggah dan kembalikan cadangan"
|
msgstr "Unggah dan kembalikan cadangan"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr "File yang dipulihkan dari cadangan."
|
msgstr "File yang dipulihkan dari cadangan."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr "Tidak ditemukan file cadangan."
|
msgstr "Tidak ditemukan file cadangan."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr "Kembalikan dari file yang diunggah"
|
msgstr "Kembalikan dari file yang diunggah"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr "Tidak ada disk tambahan yang tersedia untuk menambahkan repositori."
|
msgstr "Tidak ada disk tambahan yang tersedia untuk menambahkan repositori."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr "Buat Repositori Cadangan"
|
msgstr "Buat Repositori Cadangan"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr "Buat Repositori Cadangan Jarak Jauh"
|
msgstr "Buat Repositori Cadangan Jarak Jauh"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr "Menambahkan repositori SSH jarak jauh baru."
|
msgstr "Menambahkan repositori SSH jarak jauh baru."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr "Verifikasi SSH Hostkey"
|
msgstr "Verifikasi SSH Hostkey"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr "Tuan rumah SSH sudah diverifikasi."
|
msgstr "Tuan rumah SSH sudah diverifikasi."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr "Tuan rumah SSH diverifikasi."
|
msgstr "Tuan rumah SSH diverifikasi."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr "Kunci publik tuan rumah SSH tidak dapat diverifikasi."
|
msgstr "Kunci publik tuan rumah SSH tidak dapat diverifikasi."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr "Otentikasi ke server jarak jauh gagal."
|
msgstr "Otentikasi ke server jarak jauh gagal."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr "Kesalahan menetapkan koneksi ke server: {}"
|
msgstr "Kesalahan menetapkan koneksi ke server: {}"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr "Repositori dihapus."
|
msgstr "Repositori dihapus."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr "Hapus Repositori"
|
msgstr "Hapus Repositori"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr "Repositori dihapus. Pencadangan tidak dihapus."
|
msgstr "Repositori dihapus. Pencadangan tidak dihapus."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr "Unmounting gagal!"
|
msgstr "Unmounting gagal!"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr "Pemasangan gagal"
|
msgstr "Pemasangan gagal"
|
||||||
|
|
||||||
@ -910,20 +897,20 @@ msgid "Configuration updated."
|
|||||||
msgstr "Konfigurasi diperbarui."
|
msgstr "Konfigurasi diperbarui."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr "Terjadi kesalahan selama konfigurasi."
|
msgstr "Terjadi kesalahan selama konfigurasi."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr "Kata sandi ditambahkan."
|
msgstr "Kata sandi ditambahkan."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr "Tambahkan Kata Sandi"
|
msgstr "Tambahkan Kata Sandi"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
msgstr "Kata sandi dihapus."
|
msgstr "Kata sandi dihapus."
|
||||||
|
|
||||||
@ -1129,12 +1116,12 @@ msgstr "Perpustakaan yang dibuat."
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr "Terjadi kesalahan saat membuat perpustakaan."
|
msgstr "Terjadi kesalahan saat membuat perpustakaan."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr "{name} dihapus."
|
msgstr "{name} dihapus."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr "Tidak dapat menghapus {name}: {error}"
|
msgstr "Tidak dapat menghapus {name}: {error}"
|
||||||
@ -2455,19 +2442,19 @@ msgstr "Hapus git repositori <em>%(name)s </em>"
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr "Hapus repositori ini secara permanen?"
|
msgstr "Hapus repositori ini secara permanen?"
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr "Repositori dibuat."
|
msgstr "Repositori dibuat."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr "Terjadi kesalahan saat membuat repositori."
|
msgstr "Terjadi kesalahan saat membuat repositori."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr "Diedit repositori."
|
msgstr "Diedit repositori."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
msgstr "Edit Repositori"
|
msgstr "Edit Repositori"
|
||||||
|
|
||||||
@ -4406,6 +4393,15 @@ msgstr ""
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr "Perbaharui..."
|
msgstr "Perbaharui..."
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr "Kirimkan"
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "How is Your %(box_name)s Connected to the Internet?"
|
msgid "How is Your %(box_name)s Connected to the Internet?"
|
||||||
@ -5379,18 +5375,24 @@ msgid "Android Samba Client"
|
|||||||
msgstr "Klien Android Samba"
|
msgstr "Klien Android Samba"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
#, fuzzy
|
||||||
|
#| msgid "Ghost Commander - Samba plugin"
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr "Ghost Commander - plugin Samba"
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr "Ghost Commander - plugin Samba"
|
msgstr "Ghost Commander - plugin Samba"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr "VLC media player"
|
msgstr "VLC media player"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5448,44 +5450,44 @@ msgstr "Shared"
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr "Aksi"
|
msgstr "Aksi"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "FreedomBox"
|
#| msgid "FreedomBox"
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr "FreedomBox"
|
msgstr "FreedomBox"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Add Service"
|
#| msgid "Add Service"
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr "Tambah Layanan"
|
msgstr "Tambah Layanan"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Add Service"
|
#| msgid "Add Service"
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr "Tambah Layanan"
|
msgstr "Tambah Layanan"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Add Service"
|
#| msgid "Add Service"
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr "Tambah Layanan"
|
msgstr "Tambah Layanan"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr "Berbagi diaktifkan."
|
msgstr "Berbagi diaktifkan."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr "Kesalahan pemasangan aplikasi: {error_message}"
|
msgstr "Kesalahan pemasangan aplikasi: {error_message}"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr "Bagikan dinonaktifkan."
|
msgstr "Bagikan dinonaktifkan."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
msgstr "Kesalahan pemasangan aplikasi: {error_message}"
|
msgstr "Kesalahan pemasangan aplikasi: {error_message}"
|
||||||
@ -8003,38 +8005,38 @@ msgstr "Dari port Router/WAN"
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr "Ke %(box_name)s Port"
|
msgstr "Ke %(box_name)s Port"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr "Aplikasi telah terpasang."
|
msgstr "Aplikasi telah terpasang."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr "Pasang aplikasi ini?"
|
msgstr "Pasang aplikasi ini?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr "Aplikasi perlu pembaruan. Perbarui sekarang?"
|
msgstr "Aplikasi perlu pembaruan. Perbarui sekarang?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr "Aplikasi ini belum tersedia dalam distribusi Anda."
|
msgstr "Aplikasi ini belum tersedia dalam distribusi Anda."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr "Periksa kembali"
|
msgstr "Periksa kembali"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
"removed if you proceed:"
|
"removed if you proceed:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr "Pasang"
|
msgstr "Pasang"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "Memperbarui"
|
msgstr "Memperbarui"
|
||||||
|
|
||||||
|
|||||||
@ -7,9 +7,9 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2022-01-06 22:41+0000\n"
|
"PO-Revision-Date: 2022-08-31 11:15+0000\n"
|
||||||
"Last-Translator: Dietmar <sagen@permondes.de>\n"
|
"Last-Translator: atilluF <atilluf@outlook.com>\n"
|
||||||
"Language-Team: Italian <https://hosted.weblate.org/projects/freedombox/"
|
"Language-Team: Italian <https://hosted.weblate.org/projects/freedombox/"
|
||||||
"freedombox/it/>\n"
|
"freedombox/it/>\n"
|
||||||
"Language: it\n"
|
"Language: it\n"
|
||||||
@ -17,7 +17,7 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 4.10.1\n"
|
"X-Generator: Weblate 4.14.1-dev\n"
|
||||||
|
|
||||||
#: doc/dev/_templates/layout.html:11
|
#: doc/dev/_templates/layout.html:11
|
||||||
msgid "Page source"
|
msgid "Page source"
|
||||||
@ -426,7 +426,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr "Creare un nuovo backup"
|
msgstr "Creare un nuovo backup"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgid "Create Location"
|
|||||||
msgstr "Creare la destinazione"
|
msgstr "Creare la destinazione"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
msgstr "Creare Repository"
|
msgstr "Creare Repository"
|
||||||
|
|
||||||
@ -495,19 +495,6 @@ msgstr "Ora"
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr "Cancella archivio %(name)s"
|
msgstr "Cancella archivio %(name)s"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr "Invia"
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr "Il repository è criptato"
|
msgstr "Il repository è criptato"
|
||||||
@ -534,7 +521,7 @@ msgstr "Scarica"
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr "Restaurare"
|
msgstr "Restaurare"
|
||||||
@ -644,99 +631,99 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr "Verificare l'host"
|
msgstr "Verificare l'host"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr "Archivio creato."
|
msgstr "Archivio creato."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr "Cancella archivio"
|
msgstr "Cancella archivio"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr "Archivio cancellato."
|
msgstr "Archivio cancellato."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr "Caricare e ripristinare un backup"
|
msgstr "Caricare e ripristinare un backup"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr "File ripristinati da backup."
|
msgstr "File ripristinati da backup."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr "Nessun file di backup trovato."
|
msgstr "Nessun file di backup trovato."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr "Ripristina dal file caricato"
|
msgstr "Ripristina dal file caricato"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr "Non sono disponibili dischi aggiuntivi per aggiungere un repository."
|
msgstr "Non sono disponibili dischi aggiuntivi per aggiungere un repository."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr "Creare un repository di backup"
|
msgstr "Creare un repository di backup"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr "Creare un repository di backup remoto"
|
msgstr "Creare un repository di backup remoto"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr "Aggiunto nuovo repository SSH remoto."
|
msgstr "Aggiunto nuovo repository SSH remoto."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr "Verificare la chiave host SSH"
|
msgstr "Verificare la chiave host SSH"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr "Host SSH già verificato."
|
msgstr "Host SSH già verificato."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr "Host SSH verificato."
|
msgstr "Host SSH verificato."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr "Non è stato possibile verificare la chiave pubblica dell'host SSH."
|
msgstr "Non è stato possibile verificare la chiave pubblica dell'host SSH."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr "Autenticazione al server remoto fallita."
|
msgstr "Autenticazione al server remoto fallita."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr "Errore di connessione al server: {}"
|
msgstr "Errore di connessione al server: {}"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr "Deposito rimosso."
|
msgstr "Deposito rimosso."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr "Rimuovere il repository"
|
msgstr "Rimuovere il repository"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr "Deposito rimosso. I backup non sono stati cancellati."
|
msgstr "Deposito rimosso. I backup non sono stati cancellati."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr "Smontaggio fallito!"
|
msgstr "Smontaggio fallito!"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr "Montaggio fallito"
|
msgstr "Montaggio fallito"
|
||||||
|
|
||||||
@ -907,20 +894,20 @@ msgid "Configuration updated."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr "Si è verificato un errore durante la configurazione."
|
msgstr "Si è verificato un errore durante la configurazione."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr "Password aggiunta."
|
msgstr "Password aggiunta."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr "Aggiungere password"
|
msgstr "Aggiungere password"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
msgstr "Password eliminata."
|
msgstr "Password eliminata."
|
||||||
|
|
||||||
@ -1115,12 +1102,12 @@ msgstr "Libreria creata."
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr "Si è verificato un errore durante la creazione della libreria."
|
msgstr "Si è verificato un errore durante la creazione della libreria."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr "{name} cancellato."
|
msgstr "{name} cancellato."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr "Non è stato possibile cancellare {name}: {error}"
|
msgstr "Non è stato possibile cancellare {name}: {error}"
|
||||||
@ -2420,19 +2407,19 @@ msgstr "Cancellare Git Repository <em>%(name)s</em>"
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr "Cancellare questo repository in modo permanente?"
|
msgstr "Cancellare questo repository in modo permanente?"
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr "Repository creato."
|
msgstr "Repository creato."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr "Si è verificato un errore durante la creazione del repository."
|
msgstr "Si è verificato un errore durante la creazione del repository."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr "Repository modificato."
|
msgstr "Repository modificato."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
msgstr "Modifica repository"
|
msgstr "Modifica repository"
|
||||||
|
|
||||||
@ -4476,6 +4463,15 @@ msgstr ""
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr "Cambiare..."
|
msgstr "Cambiare..."
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr "Invia"
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "How is Your %(box_name)s Connected to the Internet?"
|
msgid "How is Your %(box_name)s Connected to the Internet?"
|
||||||
@ -5535,18 +5531,22 @@ msgid "Android Samba Client"
|
|||||||
msgstr "Client Android Samba"
|
msgstr "Client Android Samba"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr "Dolphin"
|
msgstr "Dolphin"
|
||||||
|
|
||||||
@ -5600,36 +5600,36 @@ msgstr "Nome Share"
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr "Azione"
|
msgstr "Azione"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr "Apri Share"
|
msgstr "Apri Share"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr "Sharing di file personali"
|
msgstr "Sharing di file personali"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr "Share abilitato."
|
msgstr "Share abilitato."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr "Errore installazione applicazione: {error_message}"
|
msgstr "Errore installazione applicazione: {error_message}"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr "Share disabilitato."
|
msgstr "Share disabilitato."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
msgstr "Errore installazione applicazione: {error_message}"
|
msgstr "Errore installazione applicazione: {error_message}"
|
||||||
@ -6665,10 +6665,8 @@ msgid "Ports"
|
|||||||
msgstr "Ports"
|
msgstr "Ports"
|
||||||
|
|
||||||
#: plinth/modules/tor/views.py:55
|
#: plinth/modules/tor/views.py:55
|
||||||
#, fuzzy
|
|
||||||
#| msgid "An error occurred during configuration."
|
|
||||||
msgid "Updating configuration"
|
msgid "Updating configuration"
|
||||||
msgstr "Si è verificato un errore durante la configurazione."
|
msgstr "Aggiornamento della configurazione"
|
||||||
|
|
||||||
#: plinth/modules/tor/views.py:72
|
#: plinth/modules/tor/views.py:72
|
||||||
#, fuzzy, python-brace-format
|
#, fuzzy, python-brace-format
|
||||||
@ -8080,47 +8078,45 @@ msgstr ""
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr "Alle porte %(box_name)s"
|
msgstr "Alle porte %(box_name)s"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr "Applicazione installata."
|
msgstr "Applicazione installata."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
"removed if you proceed:"
|
"removed if you proceed:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/toolbar.html:39 plinth/templates/toolbar.html:40
|
#: plinth/templates/toolbar.html:39 plinth/templates/toolbar.html:40
|
||||||
#: plinth/templates/uninstall.html:36
|
#: plinth/templates/uninstall.html:36
|
||||||
#, fuzzy
|
|
||||||
#| msgid "Application installed."
|
|
||||||
msgid "Uninstall"
|
msgid "Uninstall"
|
||||||
msgstr "Applicazione installata."
|
msgstr "Disinstalla"
|
||||||
|
|
||||||
#: plinth/templates/uninstall.html:11
|
#: plinth/templates/uninstall.html:11
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
|
|||||||
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2021-05-20 12:32+0000\n"
|
"PO-Revision-Date: 2021-05-20 12:32+0000\n"
|
||||||
"Last-Translator: Jacque Fresco <aidter@use.startmail.com>\n"
|
"Last-Translator: Jacque Fresco <aidter@use.startmail.com>\n"
|
||||||
"Language-Team: Japanese <https://hosted.weblate.org/projects/freedombox/"
|
"Language-Team: Japanese <https://hosted.weblate.org/projects/freedombox/"
|
||||||
@ -405,7 +405,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -454,7 +454,7 @@ msgid "Create Location"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -471,19 +471,6 @@ msgstr ""
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -510,7 +497,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -594,99 +581,99 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -844,20 +831,20 @@ msgid "Configuration updated."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1042,12 +1029,12 @@ msgstr ""
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2180,19 +2167,19 @@ msgstr ""
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -3984,6 +3971,15 @@ msgstr ""
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "How is Your %(box_name)s Connected to the Internet?"
|
msgid "How is Your %(box_name)s Connected to the Internet?"
|
||||||
@ -4948,18 +4944,22 @@ msgid "Android Samba Client"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5013,36 +5013,36 @@ msgstr ""
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -7444,38 +7444,38 @@ msgstr ""
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
"removed if you proceed:"
|
"removed if you proceed:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2020-07-16 16:41+0000\n"
|
"PO-Revision-Date: 2020-07-16 16:41+0000\n"
|
||||||
"Last-Translator: Yogesh <yogesh@karnatakaeducation.org.in>\n"
|
"Last-Translator: Yogesh <yogesh@karnatakaeducation.org.in>\n"
|
||||||
"Language-Team: Kannada <https://hosted.weblate.org/projects/freedombox/"
|
"Language-Team: Kannada <https://hosted.weblate.org/projects/freedombox/"
|
||||||
@ -405,7 +405,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -454,7 +454,7 @@ msgid "Create Location"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -471,19 +471,6 @@ msgstr ""
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -510,7 +497,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -594,99 +581,99 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -844,20 +831,20 @@ msgid "Configuration updated."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1042,12 +1029,12 @@ msgstr ""
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2180,19 +2167,19 @@ msgstr ""
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -3984,6 +3971,15 @@ msgstr ""
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "How is Your %(box_name)s Connected to the Internet?"
|
msgid "How is Your %(box_name)s Connected to the Internet?"
|
||||||
@ -4948,18 +4944,22 @@ msgid "Android Samba Client"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5013,38 +5013,38 @@ msgstr ""
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "FreedomBox"
|
#| msgid "FreedomBox"
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr "ಫ್ರೀಡಂಬಾಕ್ಸ್"
|
msgstr "ಫ್ರೀಡಂಬಾಕ್ಸ್"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -7446,38 +7446,38 @@ msgstr ""
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
"removed if you proceed:"
|
"removed if you proceed:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2021-02-22 10:50+0000\n"
|
"PO-Revision-Date: 2021-02-22 10:50+0000\n"
|
||||||
"Last-Translator: Kornelijus Tvarijanavičius <kornelitvari@protonmail.com>\n"
|
"Last-Translator: Kornelijus Tvarijanavičius <kornelitvari@protonmail.com>\n"
|
||||||
"Language-Team: Lithuanian <https://hosted.weblate.org/projects/freedombox/"
|
"Language-Team: Lithuanian <https://hosted.weblate.org/projects/freedombox/"
|
||||||
@ -406,7 +406,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -455,7 +455,7 @@ msgid "Create Location"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -472,19 +472,6 @@ msgstr ""
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -511,7 +498,7 @@ msgstr "Atsisiųsti"
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -595,99 +582,99 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -845,20 +832,20 @@ msgid "Configuration updated."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1043,12 +1030,12 @@ msgstr ""
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2181,19 +2168,19 @@ msgstr ""
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -3985,6 +3972,15 @@ msgstr ""
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "How is Your %(box_name)s Connected to the Internet?"
|
msgid "How is Your %(box_name)s Connected to the Internet?"
|
||||||
@ -4949,18 +4945,22 @@ msgid "Android Samba Client"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5014,36 +5014,36 @@ msgstr ""
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -7445,38 +7445,38 @@ msgstr ""
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
"removed if you proceed:"
|
"removed if you proceed:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@ -402,7 +402,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -451,7 +451,7 @@ msgid "Create Location"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -468,19 +468,6 @@ msgstr ""
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -507,7 +494,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -591,99 +578,99 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -841,20 +828,20 @@ msgid "Configuration updated."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1039,12 +1026,12 @@ msgstr ""
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2177,19 +2164,19 @@ msgstr ""
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -3981,6 +3968,15 @@ msgstr ""
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "How is Your %(box_name)s Connected to the Internet?"
|
msgid "How is Your %(box_name)s Connected to the Internet?"
|
||||||
@ -4945,18 +4941,22 @@ msgid "Android Samba Client"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5010,36 +5010,36 @@ msgstr ""
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -7441,38 +7441,38 @@ msgstr ""
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
"removed if you proceed:"
|
"removed if you proceed:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -15,7 +15,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: FreedomBox UI\n"
|
"Project-Id-Version: FreedomBox UI\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2022-05-16 14:14+0000\n"
|
"PO-Revision-Date: 2022-05-16 14:14+0000\n"
|
||||||
"Last-Translator: Petter Reinholdtsen <pere-weblate@hungry.com>\n"
|
"Last-Translator: Petter Reinholdtsen <pere-weblate@hungry.com>\n"
|
||||||
"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/"
|
"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/"
|
||||||
@ -442,7 +442,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr "{box_name} lager"
|
msgstr "{box_name} lager"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr "Lag ny sikkerhetskopi"
|
msgstr "Lag ny sikkerhetskopi"
|
||||||
|
|
||||||
@ -498,7 +498,7 @@ msgid "Create Location"
|
|||||||
msgstr "Opprett plassering"
|
msgstr "Opprett plassering"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
msgstr "Opprett kodelager"
|
msgstr "Opprett kodelager"
|
||||||
|
|
||||||
@ -515,19 +515,6 @@ msgstr "Tid"
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr "Slett arkiv %(name)s"
|
msgstr "Slett arkiv %(name)s"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr "Send inn"
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr "Dette kodelageret er kryptert"
|
msgstr "Dette kodelageret er kryptert"
|
||||||
@ -556,7 +543,7 @@ msgstr "Last ned"
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr "Gjenopprett"
|
msgstr "Gjenopprett"
|
||||||
|
|
||||||
@ -664,99 +651,99 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr "Bekreft vert"
|
msgstr "Bekreft vert"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr "Sikkerhetskopieringstidsplan oppdatert."
|
msgstr "Sikkerhetskopieringstidsplan oppdatert."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr "Tidsplan for sikkerhetskopiering"
|
msgstr "Tidsplan for sikkerhetskopiering"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr "Arkiv opprettet."
|
msgstr "Arkiv opprettet."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr "Slett arkiv"
|
msgstr "Slett arkiv"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr "Arkiv slettet."
|
msgstr "Arkiv slettet."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr "Last opp og tilbakefør en sikkerhetskopi"
|
msgstr "Last opp og tilbakefør en sikkerhetskopi"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr "Gjenopprettede filer fra sikkerhetskopi."
|
msgstr "Gjenopprettede filer fra sikkerhetskopi."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr "Fant ingen sikkerhetskopifiler."
|
msgstr "Fant ingen sikkerhetskopifiler."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr "Gjenopprett fra opplastet fil"
|
msgstr "Gjenopprett fra opplastet fil"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr "Ingen ytterligere disker tilgjengelig for opprettelse av kodelager."
|
msgstr "Ingen ytterligere disker tilgjengelig for opprettelse av kodelager."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr "Opprett kodelager for sikkerhetskopier"
|
msgstr "Opprett kodelager for sikkerhetskopier"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr "Opprett kodelager annensteds hen for sikkerhetskopi"
|
msgstr "Opprett kodelager annensteds hen for sikkerhetskopi"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr "La til nytt SSH-kodelager annensteds fra."
|
msgstr "La til nytt SSH-kodelager annensteds fra."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr "Bekreft SSH-vertsnøkkel"
|
msgstr "Bekreft SSH-vertsnøkkel"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr "SSH-vert allerede bekreftet."
|
msgstr "SSH-vert allerede bekreftet."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr "SSH-vert bekreftet."
|
msgstr "SSH-vert bekreftet."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr "Offentlig nøkkel tilhørende SSH-vert kunne ikke bekreftes."
|
msgstr "Offentlig nøkkel tilhørende SSH-vert kunne ikke bekreftes."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr "Identitetsbekreftelse til fjerntjener mislyktes."
|
msgstr "Identitetsbekreftelse til fjerntjener mislyktes."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr "Klarte ikke å koble til tjener: {}"
|
msgstr "Klarte ikke å koble til tjener: {}"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr "Kodelager fjernet."
|
msgstr "Kodelager fjernet."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr "Fjern kodelager"
|
msgstr "Fjern kodelager"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr "Kodelager fjernet. Sikkerhetskopier ble ikke slettet."
|
msgstr "Kodelager fjernet. Sikkerhetskopier ble ikke slettet."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr "Klarte ikke å avmontere!"
|
msgstr "Klarte ikke å avmontere!"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr "Montering feilet"
|
msgstr "Montering feilet"
|
||||||
|
|
||||||
@ -931,20 +918,20 @@ msgid "Configuration updated."
|
|||||||
msgstr "Konfigurering oppdatert."
|
msgstr "Konfigurering oppdatert."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr "En feil oppsto under konfigureringen."
|
msgstr "En feil oppsto under konfigureringen."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr "Passord lagt til."
|
msgstr "Passord lagt til."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr "Legg til passord"
|
msgstr "Legg til passord"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
msgstr "Passord slettet."
|
msgstr "Passord slettet."
|
||||||
|
|
||||||
@ -1151,12 +1138,12 @@ msgstr "Bibliotek opprettet."
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr "En feil oppsto under konfigureringen."
|
msgstr "En feil oppsto under konfigureringen."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr "Slettet {name}."
|
msgstr "Slettet {name}."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr "Kunne ikke slette {name}: {error}"
|
msgstr "Kunne ikke slette {name}: {error}"
|
||||||
@ -2488,21 +2475,21 @@ msgstr "Slett Git-kodelager <em>%(name)s</em>"
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr "Slett dette kodelageret for godt?"
|
msgstr "Slett dette kodelageret for godt?"
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr "Kodelager opprettet."
|
msgstr "Kodelager opprettet."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "An error occurred during configuration."
|
#| msgid "An error occurred during configuration."
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr "En feil oppsto under konfigureringen."
|
msgstr "En feil oppsto under konfigureringen."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr "Kodelager redigert.."
|
msgstr "Kodelager redigert.."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
msgstr "Rediger kodelager"
|
msgstr "Rediger kodelager"
|
||||||
|
|
||||||
@ -4592,6 +4579,15 @@ msgstr "Jeg vet ikke hvilket type tilkobling min ISP tilbyr."
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr "Oppdater..."
|
msgstr "Oppdater..."
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr "Send inn"
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
msgid "How is Your %(box_name)s Connected to the Internet?"
|
msgid "How is Your %(box_name)s Connected to the Internet?"
|
||||||
@ -5763,20 +5759,24 @@ msgid "Android Samba Client"
|
|||||||
msgstr "Legg til klient"
|
msgstr "Legg til klient"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr "VLC-mediaspiller"
|
msgstr "VLC-mediaspiller"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "GNOME Calendar"
|
#| msgid "GNOME Calendar"
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr "GNOME-kalender"
|
msgstr "GNOME-kalender"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr "Dolphin"
|
msgstr "Dolphin"
|
||||||
|
|
||||||
@ -5835,43 +5835,43 @@ msgstr "Delingsnavn"
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr "Handlinge"
|
msgstr "Handlinge"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr "FreedomBox OS disk"
|
msgstr "FreedomBox OS disk"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr "Åpne deling"
|
msgstr "Åpne deling"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Add Share"
|
#| msgid "Add Share"
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr "Legg til deling"
|
msgstr "Legg til deling"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Homepage"
|
#| msgid "Homepage"
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr "Hjemmeside"
|
msgstr "Hjemmeside"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr "Deling påskrudd."
|
msgstr "Deling påskrudd."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, fuzzy, python-brace-format
|
#, fuzzy, python-brace-format
|
||||||
#| msgid "Error ejecting device: {error_message}"
|
#| msgid "Error ejecting device: {error_message}"
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr "Feil ved utløsing av enhet: {error_message}"
|
msgstr "Feil ved utløsing av enhet: {error_message}"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Share edited."
|
#| msgid "Share edited."
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr "Deling redigert."
|
msgstr "Deling redigert."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, fuzzy, python-brace-format
|
#, fuzzy, python-brace-format
|
||||||
#| msgid "Error ejecting device: {error_message}"
|
#| msgid "Error ejecting device: {error_message}"
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
@ -8659,27 +8659,27 @@ msgstr "Fra ruter/WAN-porter"
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr "Til portene for %(box_name)s"
|
msgstr "Til portene for %(box_name)s"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr "Program installert."
|
msgstr "Program installert."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr "Installere dette programmet?"
|
msgstr "Installere dette programmet?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr "Dette programmet trenger en oppdatering. Oppdatere nå?"
|
msgstr "Dette programmet trenger en oppdatering. Oppdatere nå?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr "Dette programmet er for tiden ikke tilgjengelig for din distribusjon."
|
msgstr "Dette programmet er for tiden ikke tilgjengelig for din distribusjon."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr "Sjekk på nytt"
|
msgstr "Sjekk på nytt"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
@ -8689,11 +8689,11 @@ msgstr ""
|
|||||||
"systemet er i konflikt med installasjon av dette programmet. Følgende pakker "
|
"systemet er i konflikt med installasjon av dette programmet. Følgende pakker "
|
||||||
"vil bli fjernet om du fortsetter:"
|
"vil bli fjernet om du fortsetter:"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr "Installer"
|
msgstr "Installer"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "Oppdater"
|
msgstr "Oppdater"
|
||||||
|
|
||||||
|
|||||||
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2022-08-03 22:17+0000\n"
|
"PO-Revision-Date: 2022-08-03 22:17+0000\n"
|
||||||
"Last-Translator: ikmaak <info@ikmaak.nl>\n"
|
"Last-Translator: ikmaak <info@ikmaak.nl>\n"
|
||||||
"Language-Team: Dutch <https://hosted.weblate.org/projects/freedombox/"
|
"Language-Team: Dutch <https://hosted.weblate.org/projects/freedombox/"
|
||||||
@ -443,7 +443,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr "{box_name} opslag"
|
msgstr "{box_name} opslag"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr "Maak een nieuwe back-up"
|
msgstr "Maak een nieuwe back-up"
|
||||||
|
|
||||||
@ -495,7 +495,7 @@ msgid "Create Location"
|
|||||||
msgstr "Locatie maken"
|
msgstr "Locatie maken"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
msgstr "Maak Repository"
|
msgstr "Maak Repository"
|
||||||
|
|
||||||
@ -512,19 +512,6 @@ msgstr "Tijd"
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr "Archief %(name)s verwijderen"
|
msgstr "Archief %(name)s verwijderen"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr "Invoeren"
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr "Deze repository is versleuteld"
|
msgstr "Deze repository is versleuteld"
|
||||||
@ -553,7 +540,7 @@ msgstr "Downloaden"
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr "Herstellen"
|
msgstr "Herstellen"
|
||||||
|
|
||||||
@ -657,100 +644,100 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr "Host verifiëren"
|
msgstr "Host verifiëren"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr "Back-upschema bijgewerkt."
|
msgstr "Back-upschema bijgewerkt."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr "Back-ups plannen"
|
msgstr "Back-ups plannen"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr "Archief aangemaakt."
|
msgstr "Archief aangemaakt."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr "Archief verwijderen"
|
msgstr "Archief verwijderen"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr "Archief verwijderd."
|
msgstr "Archief verwijderd."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr "Een back-up uploaden en herstellen"
|
msgstr "Een back-up uploaden en herstellen"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr "Herstelde bestanden van de back-up."
|
msgstr "Herstelde bestanden van de back-up."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr "Er is geen back-upbestand gevonden."
|
msgstr "Er is geen back-upbestand gevonden."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr "Herstellen vanuit geüpload bestand"
|
msgstr "Herstellen vanuit geüpload bestand"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Er zijn geen extra schijven beschikbaar om een opslagplaats toe te voegen."
|
"Er zijn geen extra schijven beschikbaar om een opslagplaats toe te voegen."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr "Maak een back-up repository"
|
msgstr "Maak een back-up repository"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr "Maak een back-up repository"
|
msgstr "Maak een back-up repository"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr "Nieuwe externe SSH-repository toegevoegd."
|
msgstr "Nieuwe externe SSH-repository toegevoegd."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr "SSH-hostkey verifiëren"
|
msgstr "SSH-hostkey verifiëren"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr "SSH-host is al geverifieerd."
|
msgstr "SSH-host is al geverifieerd."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr "SSH-host geverifieerd."
|
msgstr "SSH-host geverifieerd."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr "De openbare sleutel van de SSH-host kan niet worden geverifieerd."
|
msgstr "De openbare sleutel van de SSH-host kan niet worden geverifieerd."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr "Authenticatie naar externe server is mislukt."
|
msgstr "Authenticatie naar externe server is mislukt."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr "Fout bij het tot stand brengen van een verbinding met de server: {}"
|
msgstr "Fout bij het tot stand brengen van een verbinding met de server: {}"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr "Repository verwijderd."
|
msgstr "Repository verwijderd."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr "Verwijder Repository"
|
msgstr "Verwijder Repository"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr "Repository verwijderd. Back-ups zijn niet verwijderd."
|
msgstr "Repository verwijderd. Back-ups zijn niet verwijderd."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr "Ontkoppelen is mislukt!"
|
msgstr "Ontkoppelen is mislukt!"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr "Aankoppelen is mislukt"
|
msgstr "Aankoppelen is mislukt"
|
||||||
|
|
||||||
@ -924,20 +911,20 @@ msgid "Configuration updated."
|
|||||||
msgstr "Configuratie bijgewerkt."
|
msgstr "Configuratie bijgewerkt."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr "Er is een fout opgetreden tijdens de configuratie."
|
msgstr "Er is een fout opgetreden tijdens de configuratie."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr "Wachtwoord toegevoegd."
|
msgstr "Wachtwoord toegevoegd."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr "Wachtwoord toevoegen"
|
msgstr "Wachtwoord toevoegen"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
msgstr "Wachtwoord verwijderd."
|
msgstr "Wachtwoord verwijderd."
|
||||||
|
|
||||||
@ -1145,12 +1132,12 @@ msgstr "Bibliotheek aangemaakt."
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr "Er is een fout opgetreden tijdens het aanmaken van de bibliotheek."
|
msgstr "Er is een fout opgetreden tijdens het aanmaken van de bibliotheek."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr "{name} verwijderd."
|
msgstr "{name} verwijderd."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr "Verwijderen van {name} mislukt: {error}"
|
msgstr "Verwijderen van {name} mislukt: {error}"
|
||||||
@ -2453,19 +2440,19 @@ msgstr "Verwijder Git Repository <em>%(name)s</em>"
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr "Deze repository permanent verwijderen?"
|
msgstr "Deze repository permanent verwijderen?"
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr "Repository aangemaakt."
|
msgstr "Repository aangemaakt."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr "Er is een fout opgetreden bij het aanmaken van de repository."
|
msgstr "Er is een fout opgetreden bij het aanmaken van de repository."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr "Repository gewijzigd."
|
msgstr "Repository gewijzigd."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
msgstr "Wijzig repository"
|
msgstr "Wijzig repository"
|
||||||
|
|
||||||
@ -4597,6 +4584,15 @@ msgstr "Ik weet niet welk type verbinding mijn ISP aanbiedt."
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr "Update..."
|
msgstr "Update..."
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr "Invoeren"
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "How is Your %(box_name)s Connected to the Internet?"
|
msgid "How is Your %(box_name)s Connected to the Internet?"
|
||||||
@ -5740,18 +5736,24 @@ msgid "Android Samba Client"
|
|||||||
msgstr "Android Samba Cliënt"
|
msgstr "Android Samba Cliënt"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
#, fuzzy
|
||||||
|
#| msgid "Ghost Commander - Samba plugin"
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr "Ghost Commander - Samba plugin"
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr "Ghost Commander - Samba plugin"
|
msgstr "Ghost Commander - Samba plugin"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr "VLC mediaspeler"
|
msgstr "VLC mediaspeler"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr "GNOME Bestanden"
|
msgstr "GNOME Bestanden"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr "Dolphin"
|
msgstr "Dolphin"
|
||||||
|
|
||||||
@ -5816,36 +5818,36 @@ msgstr "Gedeelde map naam"
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr "Actie"
|
msgstr "Actie"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr "FreedomBox OS-schijf"
|
msgstr "FreedomBox OS-schijf"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr "Gedeelde map openen"
|
msgstr "Gedeelde map openen"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr "Gedeelde map"
|
msgstr "Gedeelde map"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr "Startmap"
|
msgstr "Startmap"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr "Gedeelde map geaktiveerd."
|
msgstr "Gedeelde map geaktiveerd."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr "Fout bij het inschakelen van de gedeelde map: {error_message}"
|
msgstr "Fout bij het inschakelen van de gedeelde map: {error_message}"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr "Gedeelde map uitgeschakeld."
|
msgstr "Gedeelde map uitgeschakeld."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
msgstr "Fout bij het uitschakelen van de gedeelde map: {error_message}"
|
msgstr "Fout bij het uitschakelen van de gedeelde map: {error_message}"
|
||||||
@ -8612,27 +8614,27 @@ msgstr "Van router/WAN-poorten"
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr "Naar %(box_name)s poorten"
|
msgstr "Naar %(box_name)s poorten"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr "De toepassing is geïnstalleerd."
|
msgstr "De toepassing is geïnstalleerd."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr "Deze toepassing installeren?"
|
msgstr "Deze toepassing installeren?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr "Deze toepassing heeft een update nodig. Nu bijwerken?"
|
msgstr "Deze toepassing heeft een update nodig. Nu bijwerken?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr "Deze toepassing is momenteel niet beschikbaar in jouw distributie."
|
msgstr "Deze toepassing is momenteel niet beschikbaar in jouw distributie."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr "Controleer opnieuw"
|
msgstr "Controleer opnieuw"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
@ -8642,11 +8644,11 @@ msgstr ""
|
|||||||
"systeem geïnstalleerd zijn conflicteren met de installatie van deze app. De "
|
"systeem geïnstalleerd zijn conflicteren met de installatie van deze app. De "
|
||||||
"volgende pakketten zullen worden verwijderd als deze app wordt geïnstalleerd:"
|
"volgende pakketten zullen worden verwijderd als deze app wordt geïnstalleerd:"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr "Installeer"
|
msgstr "Installeer"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "Update"
|
msgstr "Update"
|
||||||
|
|
||||||
|
|||||||
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2022-05-10 02:10+0000\n"
|
"PO-Revision-Date: 2022-05-10 02:10+0000\n"
|
||||||
"Last-Translator: ikmaak <info@ikmaak.nl>\n"
|
"Last-Translator: ikmaak <info@ikmaak.nl>\n"
|
||||||
"Language-Team: Polish <https://hosted.weblate.org/projects/freedombox/"
|
"Language-Team: Polish <https://hosted.weblate.org/projects/freedombox/"
|
||||||
@ -426,7 +426,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr "Dysk na {box_name}"
|
msgstr "Dysk na {box_name}"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr "Utwórz nową kopię zapasową"
|
msgstr "Utwórz nową kopię zapasową"
|
||||||
|
|
||||||
@ -482,7 +482,7 @@ msgid "Create Location"
|
|||||||
msgstr "Utwórz lokalizację"
|
msgstr "Utwórz lokalizację"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
msgstr "Utwórz repozytorium"
|
msgstr "Utwórz repozytorium"
|
||||||
|
|
||||||
@ -499,19 +499,6 @@ msgstr "Czas"
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr "Usuń archiwum %(name)s"
|
msgstr "Usuń archiwum %(name)s"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr "Wyślij"
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr "To repozytorium jest szyfrowane"
|
msgstr "To repozytorium jest szyfrowane"
|
||||||
@ -540,7 +527,7 @@ msgstr "Pobierz"
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr "Odtwórz"
|
msgstr "Odtwórz"
|
||||||
|
|
||||||
@ -646,103 +633,103 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr "Zweryfikuj hosta"
|
msgstr "Zweryfikuj hosta"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Create Backup"
|
#| msgid "Create Backup"
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr "Utwórz kopię zapasową"
|
msgstr "Utwórz kopię zapasową"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr "Archiwum zostało utworzone."
|
msgstr "Archiwum zostało utworzone."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr "Usuń archiwum"
|
msgstr "Usuń archiwum"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr "Archiwum zostało usunięte."
|
msgstr "Archiwum zostało usunięte."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr "Prześlij i odtwórz kopię zapasową"
|
msgstr "Prześlij i odtwórz kopię zapasową"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr "Odtworzono dane z kopii zapasowej."
|
msgstr "Odtworzono dane z kopii zapasowej."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr "Brak kopii zapasowych."
|
msgstr "Brak kopii zapasowych."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr "Odtwórz z przesłanego pliku"
|
msgstr "Odtwórz z przesłanego pliku"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr "Nie ma dysków, na których można dodać repozytorium."
|
msgstr "Nie ma dysków, na których można dodać repozytorium."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr "Utwórz repozytorium kopii zapasowych"
|
msgstr "Utwórz repozytorium kopii zapasowych"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr "Utwórz zdalne repozytorium kopii zapasowych"
|
msgstr "Utwórz zdalne repozytorium kopii zapasowych"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr "Dodano nowe zdalne repozytorium SSH."
|
msgstr "Dodano nowe zdalne repozytorium SSH."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr "Zweryfikuj klucz hosta SSH"
|
msgstr "Zweryfikuj klucz hosta SSH"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr "Host SSH został już zweryfikowany."
|
msgstr "Host SSH został już zweryfikowany."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr "Zweryfikowano hosta SSH."
|
msgstr "Zweryfikowano hosta SSH."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr "Nie można zweryfikować klucza publicznego hosta SSH."
|
msgstr "Nie można zweryfikować klucza publicznego hosta SSH."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr "Nie powiodła się autoryzacja na zdalnym serwerze."
|
msgstr "Nie powiodła się autoryzacja na zdalnym serwerze."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr "Błąd podczas ustanawiania połączenia z serwerem: {error}"
|
msgstr "Błąd podczas ustanawiania połączenia z serwerem: {error}"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr "Usunięto repozytorium."
|
msgstr "Usunięto repozytorium."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr "Usuń repozytorium"
|
msgstr "Usuń repozytorium"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Usunięto repozytorium. Umieszczone w nim kopie bezpieczeństwa nie zostały "
|
"Usunięto repozytorium. Umieszczone w nim kopie bezpieczeństwa nie zostały "
|
||||||
"usunięte."
|
"usunięte."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr "Nie udało się odmontować!"
|
msgstr "Nie udało się odmontować!"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr "Montowanie nie udało się"
|
msgstr "Montowanie nie udało się"
|
||||||
|
|
||||||
@ -913,20 +900,20 @@ msgid "Configuration updated."
|
|||||||
msgstr "Zaktualizowano ustawienia."
|
msgstr "Zaktualizowano ustawienia."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr "Podczas konfiguracji wystąpił błąd."
|
msgstr "Podczas konfiguracji wystąpił błąd."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr "Dodano hasło."
|
msgstr "Dodano hasło."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr "Dodaj hasło"
|
msgstr "Dodaj hasło"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
msgstr "Usunięto hasło."
|
msgstr "Usunięto hasło."
|
||||||
|
|
||||||
@ -1141,12 +1128,12 @@ msgstr "Usunięto repozytorium."
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr "Usunięto {name}."
|
msgstr "Usunięto {name}."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2446,23 +2433,23 @@ msgstr "Usuń wiki lub blog <em>%(name)s</em>"
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr "Usunąć trwale to archiwum?"
|
msgstr "Usunąć trwale to archiwum?"
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Repository removed."
|
#| msgid "Repository removed."
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr "Usunięto repozytorium."
|
msgstr "Usunięto repozytorium."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Repository removed."
|
#| msgid "Repository removed."
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr "Usunięto repozytorium."
|
msgstr "Usunięto repozytorium."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Create Repository"
|
#| msgid "Create Repository"
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
@ -4335,6 +4322,15 @@ msgstr ""
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr "Uaktualnij..."
|
msgstr "Uaktualnij..."
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr "Wyślij"
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "How is Your %(box_name)s Connected to the Internet?"
|
msgid "How is Your %(box_name)s Connected to the Internet?"
|
||||||
@ -5339,18 +5335,22 @@ msgid "Android Samba Client"
|
|||||||
msgstr "Klient czatu"
|
msgstr "Klient czatu"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr "Dolphin"
|
msgstr "Dolphin"
|
||||||
|
|
||||||
@ -5406,42 +5406,42 @@ msgstr ""
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr "Akcje"
|
msgstr "Akcje"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "FreedomBox"
|
#| msgid "FreedomBox"
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr "FreedomBox"
|
msgstr "FreedomBox"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Home"
|
#| msgid "Home"
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr "Dom"
|
msgstr "Dom"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr "Błąd włączenia udziału: {error_message}"
|
msgstr "Błąd włączenia udziału: {error_message}"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Application disabled"
|
#| msgid "Application disabled"
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr "Aplikacja wyłączona"
|
msgstr "Aplikacja wyłączona"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
msgstr "Błąd wyłączenia udziału: {error_message}"
|
msgstr "Błąd wyłączenia udziału: {error_message}"
|
||||||
@ -8071,38 +8071,38 @@ msgstr ""
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr "Konfiguracja %(box_name)s"
|
msgstr "Konfiguracja %(box_name)s"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr "Aplikacja zainstalowania."
|
msgstr "Aplikacja zainstalowania."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
"removed if you proceed:"
|
"removed if you proceed:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2021-05-08 22:33+0000\n"
|
"PO-Revision-Date: 2021-05-08 22:33+0000\n"
|
||||||
"Last-Translator: ssantos <ssantos@web.de>\n"
|
"Last-Translator: ssantos <ssantos@web.de>\n"
|
||||||
"Language-Team: Portuguese <https://hosted.weblate.org/projects/freedombox/"
|
"Language-Team: Portuguese <https://hosted.weblate.org/projects/freedombox/"
|
||||||
@ -437,7 +437,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr "{box_name} armazenamento"
|
msgstr "{box_name} armazenamento"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr "Criar novo backup"
|
msgstr "Criar novo backup"
|
||||||
|
|
||||||
@ -493,7 +493,7 @@ msgid "Create Location"
|
|||||||
msgstr "Criar Localização"
|
msgstr "Criar Localização"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
msgstr "Criar Repositório"
|
msgstr "Criar Repositório"
|
||||||
|
|
||||||
@ -510,19 +510,6 @@ msgstr "Hora"
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr "Apagar ficheiro %(name)s"
|
msgstr "Apagar ficheiro %(name)s"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr "Submeter"
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr "Este repositório está encriptado"
|
msgstr "Este repositório está encriptado"
|
||||||
@ -549,7 +536,7 @@ msgstr "Transferir"
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr "Restaurar"
|
msgstr "Restaurar"
|
||||||
|
|
||||||
@ -642,101 +629,101 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr "Verificar Hospedeiro"
|
msgstr "Verificar Hospedeiro"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Create Backup"
|
#| msgid "Create Backup"
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr "Criar backup"
|
msgstr "Criar backup"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr "Arquivo criado."
|
msgstr "Arquivo criado."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr "Eliminar Arquivo"
|
msgstr "Eliminar Arquivo"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr "Arquivo eliminado."
|
msgstr "Arquivo eliminado."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr "Enviar e restaurar uma cópia de segurança"
|
msgstr "Enviar e restaurar uma cópia de segurança"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr "Ficheiros da cópia de segurança restaurados."
|
msgstr "Ficheiros da cópia de segurança restaurados."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr "Ficheiro de cópias de segurança não encontrado."
|
msgstr "Ficheiro de cópias de segurança não encontrado."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr "Restaurar de um ficheiro enviado"
|
msgstr "Restaurar de um ficheiro enviado"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr "Nenhum disco adicional disponível para adicionar um repositório."
|
msgstr "Nenhum disco adicional disponível para adicionar um repositório."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr "Criar repositório de cópias de segurança"
|
msgstr "Criar repositório de cópias de segurança"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr "Criar repositório remoto de cópias de segurança"
|
msgstr "Criar repositório remoto de cópias de segurança"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr "Adicionar novo repositório de SSH remoto."
|
msgstr "Adicionar novo repositório de SSH remoto."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr "Erro a estabelecer ligação ao servidor: {}"
|
msgstr "Erro a estabelecer ligação ao servidor: {}"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr "Repositório removido."
|
msgstr "Repositório removido."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr "Remover Repositório"
|
msgstr "Remover Repositório"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr "Repositório removido. As cópias de segurança não foram eliminadas."
|
msgstr "Repositório removido. As cópias de segurança não foram eliminadas."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr "Remoção falhou!"
|
msgstr "Remoção falhou!"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr "Criação falhou"
|
msgstr "Criação falhou"
|
||||||
|
|
||||||
@ -910,22 +897,22 @@ msgid "Configuration updated."
|
|||||||
msgstr "Configuração atualizada"
|
msgstr "Configuração atualizada"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Upload Password"
|
#| msgid "Upload Password"
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr "Palavra-passe de Envio"
|
msgstr "Palavra-passe de Envio"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Archive deleted."
|
#| msgid "Archive deleted."
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
@ -1124,12 +1111,12 @@ msgstr "Repositório não encontrado"
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2328,23 +2315,23 @@ msgstr ""
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr "Apagar este arquivo permanentemente?"
|
msgstr "Apagar este arquivo permanentemente?"
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Repository not found"
|
#| msgid "Repository not found"
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr "Repositório não encontrado"
|
msgstr "Repositório não encontrado"
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Repository not found"
|
#| msgid "Repository not found"
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr "Repositório não encontrado"
|
msgstr "Repositório não encontrado"
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Create new repository"
|
#| msgid "Create new repository"
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
@ -4202,6 +4189,15 @@ msgstr ""
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr "Configuração Geral"
|
msgstr "Configuração Geral"
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr "Submeter"
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "How is Your %(box_name)s Connected to the Internet?"
|
msgid "How is Your %(box_name)s Connected to the Internet?"
|
||||||
@ -5198,18 +5194,22 @@ msgid "Android Samba Client"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5269,41 +5269,41 @@ msgstr "Nome do arquivo"
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr "Aplicações"
|
msgstr "Aplicações"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "FreedomBox"
|
#| msgid "FreedomBox"
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr "Freedombox"
|
msgstr "Freedombox"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, fuzzy, python-brace-format
|
#, fuzzy, python-brace-format
|
||||||
#| msgid "Error installing application: {error}"
|
#| msgid "Error installing application: {error}"
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr "Erro a instalar a aplicação: {error}"
|
msgstr "Erro a instalar a aplicação: {error}"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Applications"
|
#| msgid "Applications"
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr "Aplicações"
|
msgstr "Aplicações"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, fuzzy, python-brace-format
|
#, fuzzy, python-brace-format
|
||||||
#| msgid "Error installing application: {error}"
|
#| msgid "Error installing application: {error}"
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
@ -7826,38 +7826,38 @@ msgstr ""
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr "Aplicação instalada."
|
msgstr "Aplicação instalada."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr "Instalar esta aplicação?"
|
msgstr "Instalar esta aplicação?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr "Esta aplicação precisa de ser atualizada. Atualizar agora?"
|
msgstr "Esta aplicação precisa de ser atualizada. Atualizar agora?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr "Atualmente, esta aplicação não está disponível na sua distribuição."
|
msgstr "Atualmente, esta aplicação não está disponível na sua distribuição."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
"removed if you proceed:"
|
"removed if you proceed:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr "Instalar"
|
msgstr "Instalar"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2022-07-12 03:04+0000\n"
|
"PO-Revision-Date: 2022-07-12 03:04+0000\n"
|
||||||
"Last-Translator: Nikita Epifanov <nikgreens@protonmail.com>\n"
|
"Last-Translator: Nikita Epifanov <nikgreens@protonmail.com>\n"
|
||||||
"Language-Team: Russian <https://hosted.weblate.org/projects/freedombox/"
|
"Language-Team: Russian <https://hosted.weblate.org/projects/freedombox/"
|
||||||
@ -446,7 +446,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr "Сохранение данных {box_name}"
|
msgstr "Сохранение данных {box_name}"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr "Создать новую резервную копию"
|
msgstr "Создать новую резервную копию"
|
||||||
|
|
||||||
@ -498,7 +498,7 @@ msgid "Create Location"
|
|||||||
msgstr "Создание расположения"
|
msgstr "Создание расположения"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
msgstr "Создать репозиторий"
|
msgstr "Создать репозиторий"
|
||||||
|
|
||||||
@ -515,19 +515,6 @@ msgstr "Время"
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr "Удалить архив %(name)s"
|
msgstr "Удалить архив %(name)s"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr "Отправить"
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr "Репозиторий зашифрован"
|
msgstr "Репозиторий зашифрован"
|
||||||
@ -555,7 +542,7 @@ msgstr "Загрузка"
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr "Восстановить"
|
msgstr "Восстановить"
|
||||||
|
|
||||||
@ -658,99 +645,99 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr "Проверить хост"
|
msgstr "Проверить хост"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr "Расписание резервного копирования обновлено."
|
msgstr "Расписание резервного копирования обновлено."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr "Расписание резервного копирования"
|
msgstr "Расписание резервного копирования"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr "Архив создан."
|
msgstr "Архив создан."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr "Удалить архив"
|
msgstr "Удалить архив"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr "Архив удалён."
|
msgstr "Архив удалён."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr "Загрузить и восстановить резервную копию"
|
msgstr "Загрузить и восстановить резервную копию"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr "Восстановленные файлы из резервного копирования."
|
msgstr "Восстановленные файлы из резервного копирования."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr "Резервных копий не найдено."
|
msgstr "Резервных копий не найдено."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr "Восстановить из загруженного файла"
|
msgstr "Восстановить из загруженного файла"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr "Нет дополнительных дисков, чтобы добавить репозиторий."
|
msgstr "Нет дополнительных дисков, чтобы добавить репозиторий."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr "Создать репозиторий резервных копий"
|
msgstr "Создать репозиторий резервных копий"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr "Создать удаленный репозиторий резервного сохранения"
|
msgstr "Создать удаленный репозиторий резервного сохранения"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr "Добавлен новый удалённый SSH-репозиторий."
|
msgstr "Добавлен новый удалённый SSH-репозиторий."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr "Проверить ключ SSH хоста"
|
msgstr "Проверить ключ SSH хоста"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr "SSH хост уже проверен."
|
msgstr "SSH хост уже проверен."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr "SSH хост проверен."
|
msgstr "SSH хост проверен."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr "Открытый ключ SSH хоста не может быть проверен."
|
msgstr "Открытый ключ SSH хоста не может быть проверен."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr "Аутентификация на удалённый сервер не прошла."
|
msgstr "Аутентификация на удалённый сервер не прошла."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr "Ошибка при установке соединения с сервером: {}"
|
msgstr "Ошибка при установке соединения с сервером: {}"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr "Репозиторий удалён."
|
msgstr "Репозиторий удалён."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr "Удалить репозиторий"
|
msgstr "Удалить репозиторий"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr "Репозиторий удален. Бэкапы не удалялись."
|
msgstr "Репозиторий удален. Бэкапы не удалялись."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr "Размонтирование не удалось!"
|
msgstr "Размонтирование не удалось!"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr "Монтирование не удалась"
|
msgstr "Монтирование не удалась"
|
||||||
|
|
||||||
@ -923,20 +910,20 @@ msgid "Configuration updated."
|
|||||||
msgstr "Конфигурация обновлена."
|
msgstr "Конфигурация обновлена."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr "Произошла ошибка во время настройки."
|
msgstr "Произошла ошибка во время настройки."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr "Пароль добавлен."
|
msgstr "Пароль добавлен."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr "Добавить пароль"
|
msgstr "Добавить пароль"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
msgstr "Пароль удалён."
|
msgstr "Пароль удалён."
|
||||||
|
|
||||||
@ -1144,12 +1131,12 @@ msgstr "Библиотека создана."
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr "Ошибка при создании библиотеки."
|
msgstr "Ошибка при создании библиотеки."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr "{name} удален."
|
msgstr "{name} удален."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr "Не удалось удалить {name}: {error}"
|
msgstr "Не удалось удалить {name}: {error}"
|
||||||
@ -2447,19 +2434,19 @@ msgstr "Удалить репозиторий Git <em>%(name)s</em>"
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr "Удалить этот репозиторий навсегда?"
|
msgstr "Удалить этот репозиторий навсегда?"
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr "Репозиторий создан."
|
msgstr "Репозиторий создан."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr "Ошибка при создании репозитория."
|
msgstr "Ошибка при создании репозитория."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr "Репозиторий отредактирован."
|
msgstr "Репозиторий отредактирован."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
msgstr "Редактировать репозиторий"
|
msgstr "Редактировать репозиторий"
|
||||||
|
|
||||||
@ -4576,6 +4563,15 @@ msgstr "Я не знаю, какой тип подключения предос
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr "Обновление…"
|
msgstr "Обновление…"
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr "Отправить"
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "How is Your %(box_name)s Connected to the Internet?"
|
msgid "How is Your %(box_name)s Connected to the Internet?"
|
||||||
@ -5721,18 +5717,24 @@ msgid "Android Samba Client"
|
|||||||
msgstr "Клиент Samba для Android"
|
msgstr "Клиент Samba для Android"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
#, fuzzy
|
||||||
|
#| msgid "Ghost Commander - Samba plugin"
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr "Ghost Commander - Samba плагин"
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr "Ghost Commander - Samba плагин"
|
msgstr "Ghost Commander - Samba плагин"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr "Медиаплеер VLC"
|
msgstr "Медиаплеер VLC"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr "Файлы GNOME"
|
msgstr "Файлы GNOME"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr "Dolphin"
|
msgstr "Dolphin"
|
||||||
|
|
||||||
@ -5797,36 +5799,36 @@ msgstr "Имя общего ресурса"
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr "Действие"
|
msgstr "Действие"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr "Диск ОС FreedomBox"
|
msgstr "Диск ОС FreedomBox"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr "Открытый ресурс"
|
msgstr "Открытый ресурс"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr "Групповой ресурс"
|
msgstr "Групповой ресурс"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr "Домашний ресурс"
|
msgstr "Домашний ресурс"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr "Общий ресурс включён."
|
msgstr "Общий ресурс включён."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr "Ошибка при включении общего доступа: {error_message}"
|
msgstr "Ошибка при включении общего доступа: {error_message}"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr "Общий доступ отключён."
|
msgstr "Общий доступ отключён."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
msgstr "Ошибка отключения общего доступа: {error_message}"
|
msgstr "Ошибка отключения общего доступа: {error_message}"
|
||||||
@ -8585,27 +8587,27 @@ msgstr "С Роутера/WAN портов"
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr "В %(box_name)s Порты"
|
msgstr "В %(box_name)s Порты"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr "Приложение установлено."
|
msgstr "Приложение установлено."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr "Установить это приложение?"
|
msgstr "Установить это приложение?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr "Это приложение нуждается в обновлении. Обновить сейчас?"
|
msgstr "Это приложение нуждается в обновлении. Обновить сейчас?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr "Это приложение в настоящее время недоступно для вашего дистрибутива."
|
msgstr "Это приложение в настоящее время недоступно для вашего дистрибутива."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr "Проверить еще раз"
|
msgstr "Проверить еще раз"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
@ -8615,11 +8617,11 @@ msgstr ""
|
|||||||
"системе, конфликтуют с установкой этого приложения. Следующие пакеты будут "
|
"системе, конфликтуют с установкой этого приложения. Следующие пакеты будут "
|
||||||
"удалены, если вы продолжите установку:"
|
"удалены, если вы продолжите установку:"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr "Установка"
|
msgstr "Установка"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "Обновление"
|
msgstr "Обновление"
|
||||||
|
|
||||||
|
|||||||
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2021-04-27 13:32+0000\n"
|
"PO-Revision-Date: 2021-04-27 13:32+0000\n"
|
||||||
"Last-Translator: HelaBasa <R45XvezA@protonmail.ch>\n"
|
"Last-Translator: HelaBasa <R45XvezA@protonmail.ch>\n"
|
||||||
"Language-Team: Sinhala <https://hosted.weblate.org/projects/freedombox/"
|
"Language-Team: Sinhala <https://hosted.weblate.org/projects/freedombox/"
|
||||||
@ -405,7 +405,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -454,7 +454,7 @@ msgid "Create Location"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -471,19 +471,6 @@ msgstr ""
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -510,7 +497,7 @@ msgstr "බාගන්න"
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -594,99 +581,99 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -844,20 +831,20 @@ msgid "Configuration updated."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1042,12 +1029,12 @@ msgstr ""
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2180,19 +2167,19 @@ msgstr ""
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -3984,6 +3971,15 @@ msgstr ""
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "How is Your %(box_name)s Connected to the Internet?"
|
msgid "How is Your %(box_name)s Connected to the Internet?"
|
||||||
@ -4948,18 +4944,22 @@ msgid "Android Samba Client"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5013,36 +5013,36 @@ msgstr ""
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -7444,38 +7444,38 @@ msgstr ""
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
"removed if you proceed:"
|
"removed if you proceed:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2021-01-18 12:32+0000\n"
|
"PO-Revision-Date: 2021-01-18 12:32+0000\n"
|
||||||
"Last-Translator: ikmaak <info@ikmaak.nl>\n"
|
"Last-Translator: ikmaak <info@ikmaak.nl>\n"
|
||||||
"Language-Team: Slovenian <https://hosted.weblate.org/projects/freedombox/"
|
"Language-Team: Slovenian <https://hosted.weblate.org/projects/freedombox/"
|
||||||
@ -439,7 +439,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr "Shramba {box_name}"
|
msgstr "Shramba {box_name}"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Create remote backup repository"
|
#| msgid "Create remote backup repository"
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
@ -511,7 +511,7 @@ msgid "Create Location"
|
|||||||
msgstr "Ustvari skladišče"
|
msgstr "Ustvari skladišče"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Create new repository"
|
#| msgid "Create new repository"
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
@ -530,19 +530,6 @@ msgstr "Čas"
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr "Brisanje arhiva %(name)s"
|
msgstr "Brisanje arhiva %(name)s"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr "Oddaj"
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Repository not found"
|
#| msgid "Repository not found"
|
||||||
@ -575,7 +562,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr "Obnovitev"
|
msgstr "Obnovitev"
|
||||||
|
|
||||||
@ -679,111 +666,111 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Create"
|
#| msgid "Create"
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr "Ustvari"
|
msgstr "Ustvari"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr "Arhiv je ustvarjen."
|
msgstr "Arhiv je ustvarjen."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr "Izbriši arhiv"
|
msgstr "Izbriši arhiv"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr "Arhiv je izbrisan."
|
msgstr "Arhiv je izbrisan."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr "Datoteke iz rezervne kopije so obnovljene."
|
msgstr "Datoteke iz rezervne kopije so obnovljene."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr "Ne najdem datoteke z rezervno kopijo."
|
msgstr "Ne najdem datoteke z rezervno kopijo."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr "Obnavljanje iz naložene datoteke"
|
msgstr "Obnavljanje iz naložene datoteke"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Create remote backup repository"
|
#| msgid "Create remote backup repository"
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr "Ustvari oddaljeno skladišče za rezervne kopije"
|
msgstr "Ustvari oddaljeno skladišče za rezervne kopije"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr "Ustvari oddaljeno skladišče za rezervne kopije"
|
msgstr "Ustvari oddaljeno skladišče za rezervne kopije"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Added new repository."
|
#| msgid "Added new repository."
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr "Dodano je novo skladišče."
|
msgstr "Dodano je novo skladišče."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Error installing application: {error}"
|
#| msgid "Error installing application: {error}"
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr "Napaka ob nameščanju aplikacije: {error}"
|
msgstr "Napaka ob nameščanju aplikacije: {error}"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Repository not found"
|
#| msgid "Repository not found"
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr "Ne najdem skladišča"
|
msgstr "Ne najdem skladišča"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr "Odstrani skladišče"
|
msgstr "Odstrani skladišče"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Repository removed. The remote backup itself was not deleted."
|
#| msgid "Repository removed. The remote backup itself was not deleted."
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr "Skladišče je odstranjeno. Oddaljena rezervna kopija ni izbrisana."
|
msgstr "Skladišče je odstranjeno. Oddaljena rezervna kopija ni izbrisana."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr "Odklapljanje ni uspelo!"
|
msgstr "Odklapljanje ni uspelo!"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr "Priklapljanje ni uspelo"
|
msgstr "Priklapljanje ni uspelo"
|
||||||
|
|
||||||
@ -949,20 +936,20 @@ msgid "Configuration updated."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Archive deleted."
|
#| msgid "Archive deleted."
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
@ -1169,12 +1156,12 @@ msgstr "Ne najdem skladišča"
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2371,23 +2358,23 @@ msgstr ""
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr "Želite ta arhiv trajno izbrisati?"
|
msgstr "Želite ta arhiv trajno izbrisati?"
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Repository not found"
|
#| msgid "Repository not found"
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr "Ne najdem skladišča"
|
msgstr "Ne najdem skladišča"
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Repository not found"
|
#| msgid "Repository not found"
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr "Ne najdem skladišča"
|
msgstr "Ne najdem skladišča"
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Create new repository"
|
#| msgid "Create new repository"
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
@ -4194,6 +4181,15 @@ msgstr ""
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr "Oddaj"
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "How is Your %(box_name)s Connected to the Internet?"
|
msgid "How is Your %(box_name)s Connected to the Internet?"
|
||||||
@ -5178,18 +5174,22 @@ msgid "Android Samba Client"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5245,39 +5245,39 @@ msgstr ""
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr "Šifriranje"
|
msgstr "Šifriranje"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "FreedomBox"
|
#| msgid "FreedomBox"
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr "FreedomBox"
|
msgstr "FreedomBox"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, fuzzy, python-brace-format
|
#, fuzzy, python-brace-format
|
||||||
#| msgid "Error installing application: {error}"
|
#| msgid "Error installing application: {error}"
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr "Napaka ob nameščanju aplikacije: {error}"
|
msgstr "Napaka ob nameščanju aplikacije: {error}"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, fuzzy, python-brace-format
|
#, fuzzy, python-brace-format
|
||||||
#| msgid "Error installing application: {error}"
|
#| msgid "Error installing application: {error}"
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
@ -7768,38 +7768,38 @@ msgstr ""
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr "Aplikacija je nameščena."
|
msgstr "Aplikacija je nameščena."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
"removed if you proceed:"
|
"removed if you proceed:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2022-02-06 23:23+0000\n"
|
"PO-Revision-Date: 2022-02-06 23:23+0000\n"
|
||||||
"Last-Translator: Besnik Bleta <besnik@programeshqip.org>\n"
|
"Last-Translator: Besnik Bleta <besnik@programeshqip.org>\n"
|
||||||
"Language-Team: Albanian <https://hosted.weblate.org/projects/freedombox/"
|
"Language-Team: Albanian <https://hosted.weblate.org/projects/freedombox/"
|
||||||
@ -443,7 +443,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr "Depozitë {box_name}"
|
msgstr "Depozitë {box_name}"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr "Krijoni një kopjeruajtje të re"
|
msgstr "Krijoni një kopjeruajtje të re"
|
||||||
|
|
||||||
@ -495,7 +495,7 @@ msgid "Create Location"
|
|||||||
msgstr "Krijoni Vendndodhje"
|
msgstr "Krijoni Vendndodhje"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
msgstr "Krijoni Depo"
|
msgstr "Krijoni Depo"
|
||||||
|
|
||||||
@ -512,19 +512,6 @@ msgstr "Kohë"
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr "Fshije Arkivin %(name)s"
|
msgstr "Fshije Arkivin %(name)s"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr "Parashtrojeni"
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr "Kjo depo është e fshehtëzuar"
|
msgstr "Kjo depo është e fshehtëzuar"
|
||||||
@ -553,7 +540,7 @@ msgstr "Shkarkim"
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr "Riktheje"
|
msgstr "Riktheje"
|
||||||
|
|
||||||
@ -655,99 +642,99 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr "Verifikoni Strehë"
|
msgstr "Verifikoni Strehë"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr "Orari i kopjeruajtjeve u përditësua."
|
msgstr "Orari i kopjeruajtjeve u përditësua."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr "Planifikoni Kopjeruajtje"
|
msgstr "Planifikoni Kopjeruajtje"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr "Arkivi u krijua."
|
msgstr "Arkivi u krijua."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr "Fshini Arkiv"
|
msgstr "Fshini Arkiv"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr "Arkivi u fshi."
|
msgstr "Arkivi u fshi."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr "Ngarkoni dhe riktheni një kopjeruajtje"
|
msgstr "Ngarkoni dhe riktheni një kopjeruajtje"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr "U rikthyen kartela prej kopjeruajtjeje."
|
msgstr "U rikthyen kartela prej kopjeruajtjeje."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr "S’u gjet kartelë kopjeruajtje."
|
msgstr "S’u gjet kartelë kopjeruajtje."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr "Riktheni prej kartele të ngarkuar"
|
msgstr "Riktheni prej kartele të ngarkuar"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr "S’ka disqe shtesë ku të shtohet një depo."
|
msgstr "S’ka disqe shtesë ku të shtohet një depo."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr "Krijoni depo kopjeruajtesh"
|
msgstr "Krijoni depo kopjeruajtesh"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr "Krijoni depo të largët kopjeruajtjesh"
|
msgstr "Krijoni depo të largët kopjeruajtjesh"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr "Shtoni depo SSH të re të largët."
|
msgstr "Shtoni depo SSH të re të largët."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr "Verifikoni kyç strehe SSH"
|
msgstr "Verifikoni kyç strehe SSH"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr "Strehë SSH e verifikuar tashmë."
|
msgstr "Strehë SSH e verifikuar tashmë."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr "Streha SSH u verifikua."
|
msgstr "Streha SSH u verifikua."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr "S’u verifikua dot kyç publik strehe SSH."
|
msgstr "S’u verifikua dot kyç publik strehe SSH."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr "Mirëfilltësimi te shërbyesi i largët dështoi."
|
msgstr "Mirëfilltësimi te shërbyesi i largët dështoi."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr "Gabim gjatë vendosjes së lidhjes me shërbyesin: {}"
|
msgstr "Gabim gjatë vendosjes së lidhjes me shërbyesin: {}"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr "Depoja u hoq."
|
msgstr "Depoja u hoq."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr "Hiqni Depo"
|
msgstr "Hiqni Depo"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr "Depoja u hoq. Kopjeruajtjet s’u fshinë."
|
msgstr "Depoja u hoq. Kopjeruajtjet s’u fshinë."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr "Çmontimi dështoi!"
|
msgstr "Çmontimi dështoi!"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr "Montimi dështoi"
|
msgstr "Montimi dështoi"
|
||||||
|
|
||||||
@ -918,20 +905,20 @@ msgid "Configuration updated."
|
|||||||
msgstr "Formësimi u përditësua."
|
msgstr "Formësimi u përditësua."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr "Ndodhi një gabim gjatë formësimit."
|
msgstr "Ndodhi një gabim gjatë formësimit."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr "U shtua fjalëkalim."
|
msgstr "U shtua fjalëkalim."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr "Shtoni Fjalëkalim"
|
msgstr "Shtoni Fjalëkalim"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
msgstr "Fjalëkalimi u fshi."
|
msgstr "Fjalëkalimi u fshi."
|
||||||
|
|
||||||
@ -1139,12 +1126,12 @@ msgstr "Biblioteka u krijua."
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr "Ndodhi një gabim teksa krijohej biblioteka."
|
msgstr "Ndodhi një gabim teksa krijohej biblioteka."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr "{name} u fshi."
|
msgstr "{name} u fshi."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr "S’u fshi dot {name}: {error}"
|
msgstr "S’u fshi dot {name}: {error}"
|
||||||
@ -2464,19 +2451,19 @@ msgstr "Fshi Depon Git <em>%(name)s</em>"
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr "Të fshihet kjo depo përgjithmonë?"
|
msgstr "Të fshihet kjo depo përgjithmonë?"
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr "Depoja u krijua."
|
msgstr "Depoja u krijua."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr "Ndodhi një gabim teksa krijohej depoja."
|
msgstr "Ndodhi një gabim teksa krijohej depoja."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr "Depoja u përpunua."
|
msgstr "Depoja u përpunua."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
msgstr "Përpunoni depon"
|
msgstr "Përpunoni depon"
|
||||||
|
|
||||||
@ -4618,6 +4605,15 @@ msgstr "Nuk e di llojin e lidhjes që jep ISP-ja ime."
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr "Përditësojeni…"
|
msgstr "Përditësojeni…"
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr "Parashtrojeni"
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "How is Your %(box_name)s Connected to the Internet?"
|
msgid "How is Your %(box_name)s Connected to the Internet?"
|
||||||
@ -5767,18 +5763,24 @@ msgid "Android Samba Client"
|
|||||||
msgstr "Klient SAMBA për Android"
|
msgstr "Klient SAMBA për Android"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
#, fuzzy
|
||||||
|
#| msgid "Ghost Commander - Samba plugin"
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr "Ghost Commander - shtojcë për Samba"
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr "Ghost Commander - shtojcë për Samba"
|
msgstr "Ghost Commander - shtojcë për Samba"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr "Lojtësi VLC për media"
|
msgstr "Lojtësi VLC për media"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr "Kartela GNOME"
|
msgstr "Kartela GNOME"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr "Dolphin"
|
msgstr "Dolphin"
|
||||||
|
|
||||||
@ -5842,36 +5844,36 @@ msgstr "Emër pjese"
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr "Veprim"
|
msgstr "Veprim"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr "Disk FreedomBox OS"
|
msgstr "Disk FreedomBox OS"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr "Pjesë e Hapët"
|
msgstr "Pjesë e Hapët"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr "Pjesë Grupi"
|
msgstr "Pjesë Grupi"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr "Pjesë Home"
|
msgstr "Pjesë Home"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr "Pjesa u aktivizua."
|
msgstr "Pjesa u aktivizua."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr "Gabim teksa aktivizohej pjesë: {error_message}"
|
msgstr "Gabim teksa aktivizohej pjesë: {error_message}"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr "Pjesa u çaktivizua."
|
msgstr "Pjesa u çaktivizua."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
msgstr "Gabim teksa çaktivizohej pjesë: {error_message}"
|
msgstr "Gabim teksa çaktivizohej pjesë: {error_message}"
|
||||||
@ -8647,27 +8649,27 @@ msgstr "Nga Porta Rrugëzuesi/WAN-i"
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr "Te Porta të %(box_name)s"
|
msgstr "Te Porta të %(box_name)s"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr "Aplikacioni u instalua."
|
msgstr "Aplikacioni u instalua."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr "Të instalohet aplikacionin?"
|
msgstr "Të instalohet aplikacionin?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr "Ky aplikacion lyp një përditësim. Të përditësohet tani?"
|
msgstr "Ky aplikacion lyp një përditësim. Të përditësohet tani?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr "Ky aplikacion aktualisht s’mund të kihet në shpërndarjen tuaj."
|
msgstr "Ky aplikacion aktualisht s’mund të kihet në shpërndarjen tuaj."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr "Rikontrollo"
|
msgstr "Rikontrollo"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
@ -8677,11 +8679,11 @@ msgstr ""
|
|||||||
"kanë përplasje me instalimin e këtij aplikacioni. Paketa vijuese do të "
|
"kanë përplasje me instalimin e këtij aplikacioni. Paketa vijuese do të "
|
||||||
"hiqen, nëse vazhdoni më tej:"
|
"hiqen, nëse vazhdoni më tej:"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr "Instaloje"
|
msgstr "Instaloje"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "Përditësoje"
|
msgstr "Përditësoje"
|
||||||
|
|
||||||
|
|||||||
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2021-01-18 12:32+0000\n"
|
"PO-Revision-Date: 2021-01-18 12:32+0000\n"
|
||||||
"Last-Translator: ikmaak <info@ikmaak.nl>\n"
|
"Last-Translator: ikmaak <info@ikmaak.nl>\n"
|
||||||
"Language-Team: Serbian <https://hosted.weblate.org/projects/freedombox/"
|
"Language-Team: Serbian <https://hosted.weblate.org/projects/freedombox/"
|
||||||
@ -431,7 +431,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr "{box_name} skladište"
|
msgstr "{box_name} skladište"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr "Kreiraj novu rezervnu kopiju"
|
msgstr "Kreiraj novu rezervnu kopiju"
|
||||||
|
|
||||||
@ -486,7 +486,7 @@ msgid "Create Location"
|
|||||||
msgstr "Kreirajte lokaciju"
|
msgstr "Kreirajte lokaciju"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
msgstr "Kreirajte repozitorij"
|
msgstr "Kreirajte repozitorij"
|
||||||
|
|
||||||
@ -503,19 +503,6 @@ msgstr "Vreme"
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr "Izbriši Arhivu %(name)s"
|
msgstr "Izbriši Arhivu %(name)s"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr "Pošalji"
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr "Repozitorij je enkriptovan"
|
msgstr "Repozitorij je enkriptovan"
|
||||||
@ -542,7 +529,7 @@ msgstr "Preuzmi"
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr "Vrati"
|
msgstr "Vrati"
|
||||||
|
|
||||||
@ -645,101 +632,101 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr "Potvrdi host mašinu"
|
msgstr "Potvrdi host mašinu"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Create Backup"
|
#| msgid "Create Backup"
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr "Kreiraj rezervnu kopiju"
|
msgstr "Kreiraj rezervnu kopiju"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr "Arhiva kreirana."
|
msgstr "Arhiva kreirana."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr "Izbriši arhivu"
|
msgstr "Izbriši arhivu"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr "Arhiva izbrisana."
|
msgstr "Arhiva izbrisana."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr "Otpremi ili vrati rezervnu arhivsku kopiju"
|
msgstr "Otpremi ili vrati rezervnu arhivsku kopiju"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr "Restorovane datoteke."
|
msgstr "Restorovane datoteke."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr "Nije pronađena rezervna datoteka."
|
msgstr "Nije pronađena rezervna datoteka."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr "Povrati podatke iz otpremljenog fajla"
|
msgstr "Povrati podatke iz otpremljenog fajla"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr "Nema dodatnih hard diskova , da dodate repozitorijum."
|
msgstr "Nema dodatnih hard diskova , da dodate repozitorijum."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr "Kreirajte rezervni repozitorij"
|
msgstr "Kreirajte rezervni repozitorij"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr "Kreirajte remote rezervni repozitorij"
|
msgstr "Kreirajte remote rezervni repozitorij"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr "Novi remote SSH repozitorij dodat."
|
msgstr "Novi remote SSH repozitorij dodat."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr "Verifikujte SSH hostkey"
|
msgstr "Verifikujte SSH hostkey"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr "SSH je već verifikovan."
|
msgstr "SSH je već verifikovan."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr "SSH host je verifikovan."
|
msgstr "SSH host je verifikovan."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr "SSH host public key nije verifikovan."
|
msgstr "SSH host public key nije verifikovan."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr "Remote server autentifikacija je neuspešna."
|
msgstr "Remote server autentifikacija je neuspešna."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr "Greška prilikom uspostavljanja veze sa serverom: {}"
|
msgstr "Greška prilikom uspostavljanja veze sa serverom: {}"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr "Repozitorij obrisan."
|
msgstr "Repozitorij obrisan."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr "Obriši repozitorij"
|
msgstr "Obriši repozitorij"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr "Repzitorij obrisan. Rezervne kopije nisu izbrisane."
|
msgstr "Repzitorij obrisan. Rezervne kopije nisu izbrisane."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr "Neuspešno unmountovanje!"
|
msgstr "Neuspešno unmountovanje!"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr "Mountovanje neuspešno"
|
msgstr "Mountovanje neuspešno"
|
||||||
|
|
||||||
@ -907,20 +894,20 @@ msgid "Configuration updated."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Archive deleted."
|
#| msgid "Archive deleted."
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
@ -1118,12 +1105,12 @@ msgstr "Arhiva kreirana."
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2273,19 +2260,19 @@ msgstr ""
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4085,6 +4072,15 @@ msgstr ""
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr "Pošalji"
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "How is Your %(box_name)s Connected to the Internet?"
|
msgid "How is Your %(box_name)s Connected to the Internet?"
|
||||||
@ -5064,18 +5060,22 @@ msgid "Android Samba Client"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5129,38 +5129,38 @@ msgstr ""
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "FreedomBox"
|
#| msgid "FreedomBox"
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr "KutijaSlobode"
|
msgstr "KutijaSlobode"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -7593,38 +7593,38 @@ msgstr ""
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr "Aplikacija instalirana."
|
msgstr "Aplikacija instalirana."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
"removed if you proceed:"
|
"removed if you proceed:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2022-05-27 17:17+0000\n"
|
"PO-Revision-Date: 2022-05-27 17:17+0000\n"
|
||||||
"Last-Translator: Michael Breidenbach <leahc@tutanota.com>\n"
|
"Last-Translator: Michael Breidenbach <leahc@tutanota.com>\n"
|
||||||
"Language-Team: Swedish <https://hosted.weblate.org/projects/freedombox/"
|
"Language-Team: Swedish <https://hosted.weblate.org/projects/freedombox/"
|
||||||
@ -440,7 +440,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr "{box_name} lagring"
|
msgstr "{box_name} lagring"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr "Skapa en ny säkerhetskopia"
|
msgstr "Skapa en ny säkerhetskopia"
|
||||||
|
|
||||||
@ -493,7 +493,7 @@ msgid "Create Location"
|
|||||||
msgstr "Skapa plats"
|
msgstr "Skapa plats"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
msgstr "Skapa respository"
|
msgstr "Skapa respository"
|
||||||
|
|
||||||
@ -510,19 +510,6 @@ msgstr "Tid"
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr "Ta bort arkiv %(name)s"
|
msgstr "Ta bort arkiv %(name)s"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr "Sänd"
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr "Den här databasen är krypterad"
|
msgstr "Den här databasen är krypterad"
|
||||||
@ -550,7 +537,7 @@ msgstr "Hämta"
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr "Återställa"
|
msgstr "Återställa"
|
||||||
|
|
||||||
@ -652,101 +639,101 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr "Verifiera Host"
|
msgstr "Verifiera Host"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr "Backup schema uppdaterat."
|
msgstr "Backup schema uppdaterat."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr "Schemalägg säkerhetskopior"
|
msgstr "Schemalägg säkerhetskopior"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr "Arkiv skapat."
|
msgstr "Arkiv skapat."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr "Ta bort Archiv"
|
msgstr "Ta bort Archiv"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr "Archiv borttagen."
|
msgstr "Archiv borttagen."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr "Ladda upp och återställ en säkerhetskopia"
|
msgstr "Ladda upp och återställ en säkerhetskopia"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr "Återställda filer från säkerhetskopian."
|
msgstr "Återställda filer från säkerhetskopian."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr "Ingen backup-fil hittades."
|
msgstr "Ingen backup-fil hittades."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr "Återställ från uppladdad fil"
|
msgstr "Återställ från uppladdad fil"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Det finns inga ytterligare diskar tillgängliga för att lägga till ett "
|
"Det finns inga ytterligare diskar tillgängliga för att lägga till ett "
|
||||||
"repository."
|
"repository."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr "Skapa backup repository"
|
msgstr "Skapa backup repository"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr "Skapa remote backup repository"
|
msgstr "Skapa remote backup repository"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr "Lade till ett nytt remote SSH-repository."
|
msgstr "Lade till ett nytt remote SSH-repository."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr "Verifiera SSH hostkey"
|
msgstr "Verifiera SSH hostkey"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr "SSH host redan verifierat."
|
msgstr "SSH host redan verifierat."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr "SSH host verifierade."
|
msgstr "SSH host verifierade."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr "SSH hosts offentliga nyckel kunde inte verifieras."
|
msgstr "SSH hosts offentliga nyckel kunde inte verifieras."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr "Autentisering till remote servern misslyckades."
|
msgstr "Autentisering till remote servern misslyckades."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr "Fel vid upprättande av anslutning till servern: {}"
|
msgstr "Fel vid upprättande av anslutning till servern: {}"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr "Repository raderad."
|
msgstr "Repository raderad."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr "Radera Repository"
|
msgstr "Radera Repository"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr "Repository tas bort.Säkerhetskopior raderades inte."
|
msgstr "Repository tas bort.Säkerhetskopior raderades inte."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr "Avmontering misslyckas!"
|
msgstr "Avmontering misslyckas!"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr "Avmontering misslyckades"
|
msgstr "Avmontering misslyckades"
|
||||||
|
|
||||||
@ -921,20 +908,20 @@ msgid "Configuration updated."
|
|||||||
msgstr "Konfiguration uppdaterad."
|
msgstr "Konfiguration uppdaterad."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr "Ett fel inträffade under konfiguration."
|
msgstr "Ett fel inträffade under konfiguration."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr "Lösenord tillagt."
|
msgstr "Lösenord tillagt."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr "Lägg till lösenord"
|
msgstr "Lägg till lösenord"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
msgstr "Lösenord raderat."
|
msgstr "Lösenord raderat."
|
||||||
|
|
||||||
@ -1140,12 +1127,12 @@ msgstr "Bibliotek skapat."
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr "Ett fel uppstod när biblioteket skulle skapas."
|
msgstr "Ett fel uppstod när biblioteket skulle skapas."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr "{name} borttagen."
|
msgstr "{name} borttagen."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr "Kunde inte ta bort {name}: {error}"
|
msgstr "Kunde inte ta bort {name}: {error}"
|
||||||
@ -2431,19 +2418,19 @@ msgstr "Ta bort Git-respository <em>%(name)s</em>"
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr "Radera detta arkiv permanent?"
|
msgstr "Radera detta arkiv permanent?"
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr "Respository skapat."
|
msgstr "Respository skapat."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr "Ett fel uppstod medan skapa ett repository."
|
msgstr "Ett fel uppstod medan skapa ett repository."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr "Respository redigerad."
|
msgstr "Respository redigerad."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
msgstr "Redigera respository"
|
msgstr "Redigera respository"
|
||||||
|
|
||||||
@ -4557,6 +4544,15 @@ msgstr "Jag vet inte vilken typ av anslutning min ISP tillhandahåller."
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr "Uppdatering..."
|
msgstr "Uppdatering..."
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr "Sänd"
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "How is Your %(box_name)s Connected to the Internet?"
|
msgid "How is Your %(box_name)s Connected to the Internet?"
|
||||||
@ -5700,18 +5696,24 @@ msgid "Android Samba Client"
|
|||||||
msgstr "Android Samba-Klient"
|
msgstr "Android Samba-Klient"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
#, fuzzy
|
||||||
|
#| msgid "Ghost Commander - Samba plugin"
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr "Ghost Commander - Samba plugin"
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr "Ghost Commander - Samba plugin"
|
msgstr "Ghost Commander - Samba plugin"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr "VLC-mediaspelare"
|
msgstr "VLC-mediaspelare"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr "GNOME Filer"
|
msgstr "GNOME Filer"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr "Dolphin"
|
msgstr "Dolphin"
|
||||||
|
|
||||||
@ -5773,36 +5775,36 @@ msgstr "Resursnamn"
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr "Åtgärd"
|
msgstr "Åtgärd"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr "FreedomBox OS-disk"
|
msgstr "FreedomBox OS-disk"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr "Öppna Share"
|
msgstr "Öppna Share"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr "Grupp Share"
|
msgstr "Grupp Share"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr "Hemma Share"
|
msgstr "Hemma Share"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr "Resurs aktiverad."
|
msgstr "Resurs aktiverad."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr "Fel vid aktivering av resurs: {error_message}"
|
msgstr "Fel vid aktivering av resurs: {error_message}"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr "Share resurs inaktiverat."
|
msgstr "Share resurs inaktiverat."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
msgstr "Fel vid inaktivering av resurs: {error_message}"
|
msgstr "Fel vid inaktivering av resurs: {error_message}"
|
||||||
@ -8554,27 +8556,27 @@ msgstr "Från Router/WAN-portar"
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr "Till %(box_name)s Portar"
|
msgstr "Till %(box_name)s Portar"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr "Applikation installerad."
|
msgstr "Applikation installerad."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr "Installera den här applikationen?"
|
msgstr "Installera den här applikationen?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr "Det här programmet behöver uppdateras. Uppdatera nu?"
|
msgstr "Det här programmet behöver uppdateras. Uppdatera nu?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr "Denna ansökan är för närvarande inte tillgänglig i din distribution."
|
msgstr "Denna ansökan är för närvarande inte tillgänglig i din distribution."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr "Kontrollera igen"
|
msgstr "Kontrollera igen"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
@ -8584,11 +8586,11 @@ msgstr ""
|
|||||||
"systemet är i konflikt med installationen av den här appen. Följande paket "
|
"systemet är i konflikt med installationen av den här appen. Följande paket "
|
||||||
"tas bort om du fortsätter:"
|
"tas bort om du fortsätter:"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr "Installera"
|
msgstr "Installera"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "Uppdatera"
|
msgstr "Uppdatera"
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -404,7 +404,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -453,7 +453,7 @@ msgid "Create Location"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -470,19 +470,6 @@ msgstr ""
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -509,7 +496,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -593,99 +580,99 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -843,20 +830,20 @@ msgid "Configuration updated."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1041,12 +1028,12 @@ msgstr ""
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2179,19 +2166,19 @@ msgstr ""
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -3983,6 +3970,15 @@ msgstr ""
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "How is Your %(box_name)s Connected to the Internet?"
|
msgid "How is Your %(box_name)s Connected to the Internet?"
|
||||||
@ -4947,18 +4943,22 @@ msgid "Android Samba Client"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5012,36 +5012,36 @@ msgstr ""
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -7443,38 +7443,38 @@ msgstr ""
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
"removed if you proceed:"
|
"removed if you proceed:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -9,7 +9,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: FreedomBox UI\n"
|
"Project-Id-Version: FreedomBox UI\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2022-03-02 12:27+0000\n"
|
"PO-Revision-Date: 2022-03-02 12:27+0000\n"
|
||||||
"Last-Translator: James Valleroy <jvalleroy@mailbox.org>\n"
|
"Last-Translator: James Valleroy <jvalleroy@mailbox.org>\n"
|
||||||
"Language-Team: Telugu <https://hosted.weblate.org/projects/freedombox/"
|
"Language-Team: Telugu <https://hosted.weblate.org/projects/freedombox/"
|
||||||
@ -429,7 +429,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr "{box_name} నిల్వ"
|
msgstr "{box_name} నిల్వ"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr "క్రొత్త బ్యాకప్ను సృష్టించండి"
|
msgstr "క్రొత్త బ్యాకప్ను సృష్టించండి"
|
||||||
|
|
||||||
@ -480,7 +480,7 @@ msgid "Create Location"
|
|||||||
msgstr "స్థానాన్ని సృష్టించు"
|
msgstr "స్థానాన్ని సృష్టించు"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
msgstr "రిపోజిటరీని సృష్టించు"
|
msgstr "రిపోజిటరీని సృష్టించు"
|
||||||
|
|
||||||
@ -497,19 +497,6 @@ msgstr "సమయం"
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr "%(name)s ఆర్కైవ్ను తొలగించు"
|
msgstr "%(name)s ఆర్కైవ్ను తొలగించు"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr "సమర్పించు"
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr "ఈ రిపోజిటరీ గుప్తీకరించబడింది"
|
msgstr "ఈ రిపోజిటరీ గుప్తీకరించబడింది"
|
||||||
@ -536,7 +523,7 @@ msgstr "దిగుమతి"
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr "పునరుద్ధరించు"
|
msgstr "పునరుద్ధరించు"
|
||||||
|
|
||||||
@ -636,99 +623,99 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr "హోస్ట్ ను నిర్ధారించండి"
|
msgstr "హోస్ట్ ను నిర్ధారించండి"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr "బ్యాకప్ షెడ్యూల్ నవీకరించబడింది."
|
msgstr "బ్యాకప్ షెడ్యూల్ నవీకరించబడింది."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr "ఖాతా సృష్టించు"
|
msgstr "ఖాతా సృష్టించు"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr "భాండాగారాము సృజింపబడింది."
|
msgstr "భాండాగారాము సృజింపబడింది."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr "ఆర్కైవ్ తొలగించు"
|
msgstr "ఆర్కైవ్ తొలగించు"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr "ఆర్కైవ్ తొలగించబడింది."
|
msgstr "ఆర్కైవ్ తొలగించబడింది."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr "బ్యాకప్ను అప్లోడ్ చేసి పునరుద్ధరించండి"
|
msgstr "బ్యాకప్ను అప్లోడ్ చేసి పునరుద్ధరించండి"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr "బ్యాకప్ నుండి పునరుద్ధరించబడిన ఫైళ్లు."
|
msgstr "బ్యాకప్ నుండి పునరుద్ధరించబడిన ఫైళ్లు."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr "ఏ బ్యాకప్ ఫైల్ దొరకలేదు."
|
msgstr "ఏ బ్యాకప్ ఫైల్ దొరకలేదు."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr "అప్లోడ్ చేసిన ఫైల్ నుండి పునరుద్ధరించండి"
|
msgstr "అప్లోడ్ చేసిన ఫైల్ నుండి పునరుద్ధరించండి"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr "రిపోజిటరీని జోడించడానికి అదనపు డిస్కులు అందుబాటులో లేవు."
|
msgstr "రిపోజిటరీని జోడించడానికి అదనపు డిస్కులు అందుబాటులో లేవు."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr "బ్యాకప్ రిపోజిటరీని సృష్టించండి"
|
msgstr "బ్యాకప్ రిపోజిటరీని సృష్టించండి"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr "రిమోట్ బ్యాకప్ రిపోజిటరీని సృష్టించండి"
|
msgstr "రిమోట్ బ్యాకప్ రిపోజిటరీని సృష్టించండి"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr "కొత్త రిమోట్ SSH రిపోజిటరీ జోడించబడింది."
|
msgstr "కొత్త రిమోట్ SSH రిపోజిటరీ జోడించబడింది."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr "SSH హోస్ట్కీని ధృవీకరించండి"
|
msgstr "SSH హోస్ట్కీని ధృవీకరించండి"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr "SSH హోస్ట్ ఇప్పటికే ధృవీకరించబడింది."
|
msgstr "SSH హోస్ట్ ఇప్పటికే ధృవీకరించబడింది."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr "SSH హోస్ట్ ధృవీకరించబడింది."
|
msgstr "SSH హోస్ట్ ధృవీకరించబడింది."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr "SSH హోస్ట్ పబ్లిక్ కీని ధృవీకరించడం సాధ్యం కాలేదు."
|
msgstr "SSH హోస్ట్ పబ్లిక్ కీని ధృవీకరించడం సాధ్యం కాలేదు."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr "రిమోట్ సర్వర్కు ప్రామాణీకరణ విఫలమైంది."
|
msgstr "రిమోట్ సర్వర్కు ప్రామాణీకరణ విఫలమైంది."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr "సర్వర్కు కనెక్షన్ని ఏర్పాటు చేయడంలో లోపం: {}"
|
msgstr "సర్వర్కు కనెక్షన్ని ఏర్పాటు చేయడంలో లోపం: {}"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr "రిపోజిటరీ తొలగించబడింది."
|
msgstr "రిపోజిటరీ తొలగించబడింది."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr "రిపోజిటరీని తొలగించండి"
|
msgstr "రిపోజిటరీని తొలగించండి"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr "రిపోజిటరీ తొలగించబడింది. బ్యాకప్లు తొలగించబడలేదు."
|
msgstr "రిపోజిటరీ తొలగించబడింది. బ్యాకప్లు తొలగించబడలేదు."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr "అన్మౌంటింగ్ విఫలమైంది!"
|
msgstr "అన్మౌంటింగ్ విఫలమైంది!"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr "మౌంటింగ్ విఫలమైంది"
|
msgstr "మౌంటింగ్ విఫలమైంది"
|
||||||
|
|
||||||
@ -896,20 +883,20 @@ msgid "Configuration updated."
|
|||||||
msgstr "ఆకృతీకరణ నవీకరించబడింది."
|
msgstr "ఆకృతీకరణ నవీకరించబడింది."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr "అక్రుతీకరణలో ఒక పొరపాటు జరిగింది."
|
msgstr "అక్రుతీకరణలో ఒక పొరపాటు జరిగింది."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr "రహస్యపదం జోడించబడింది."
|
msgstr "రహస్యపదం జోడించబడింది."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr "రహస్యపదాన్ని జోడించండి"
|
msgstr "రహస్యపదాన్ని జోడించండి"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
msgstr "రహస్యపదం తొలగించబడింది."
|
msgstr "రహస్యపదం తొలగించబడింది."
|
||||||
|
|
||||||
@ -1108,12 +1095,12 @@ msgstr "గ్రంధాలయంను సృష్టించారు."
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr "గ్రంధాలయంని సృష్టిస్తున్నప్పుడు లోపం సంభవించింది."
|
msgstr "గ్రంధాలయంని సృష్టిస్తున్నప్పుడు లోపం సంభవించింది."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr "{name} తొలగించబడింది."
|
msgstr "{name} తొలగించబడింది."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr "{name} ను తొలగించలేము: {error}"
|
msgstr "{name} ను తొలగించలేము: {error}"
|
||||||
@ -2368,19 +2355,19 @@ msgstr "Git రిపోజిటరీ <em>%(name)s</em>ని తొలగి
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr "ఈ రిపోజిటరీని శాశ్వతంగా తొలగించాలా?"
|
msgstr "ఈ రిపోజిటరీని శాశ్వతంగా తొలగించాలా?"
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr "రిపోజిటరీ సృష్టించబడింది."
|
msgstr "రిపోజిటరీ సృష్టించబడింది."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr "రిపోజిటరీని సృష్టిస్తున్నప్పుడు లోపం సంభవించింది."
|
msgstr "రిపోజిటరీని సృష్టిస్తున్నప్పుడు లోపం సంభవించింది."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr "రిపోజిటరీ సవరించబడింది."
|
msgstr "రిపోజిటరీ సవరించబడింది."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
msgstr "రిపోజిటరీని సవరించండి"
|
msgstr "రిపోజిటరీని సవరించండి"
|
||||||
|
|
||||||
@ -4431,6 +4418,15 @@ msgstr "నా ISP అందించే బంధం రకం నాకు త
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr "...నవీకరించు"
|
msgstr "...నవీకరించు"
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr "సమర్పించు"
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "How is Your %(box_name)s Connected to the Internet?"
|
msgid "How is Your %(box_name)s Connected to the Internet?"
|
||||||
@ -5538,18 +5534,24 @@ msgid "Android Samba Client"
|
|||||||
msgstr "ఆండ్రాయిడ్ సాంబా క్లయింట్"
|
msgstr "ఆండ్రాయిడ్ సాంబా క్లయింట్"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
#, fuzzy
|
||||||
|
#| msgid "Ghost Commander - Samba plugin"
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr "ఘోస్ట్ కమాండర్ - సాంబా ప్లగ్ఇన్"
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr "ఘోస్ట్ కమాండర్ - సాంబా ప్లగ్ఇన్"
|
msgstr "ఘోస్ట్ కమాండర్ - సాంబా ప్లగ్ఇన్"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr "VLC మాద్యమ ప్లేయర్"
|
msgstr "VLC మాద్యమ ప్లేయర్"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr "GNOME దస్త్రం"
|
msgstr "GNOME దస్త్రం"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr "డాల్ఫిన్"
|
msgstr "డాల్ఫిన్"
|
||||||
|
|
||||||
@ -5612,36 +5614,36 @@ msgstr "భాగస్వామ్యం పేరు"
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr "చర్య"
|
msgstr "చర్య"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr "ఫ్రీడమ్బాక్స్ OS డిస్క్"
|
msgstr "ఫ్రీడమ్బాక్స్ OS డిస్క్"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr "భాగస్వామ్యాన్ని తెరవండి"
|
msgstr "భాగస్వామ్యాన్ని తెరవండి"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr "సమూహం భాగస్వామ్యం"
|
msgstr "సమూహం భాగస్వామ్యం"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr "నివాస భాగస్వామ్యం"
|
msgstr "నివాస భాగస్వామ్యం"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr "భాగస్వామ్యం ప్రారంభించబడింది."
|
msgstr "భాగస్వామ్యం ప్రారంభించబడింది."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr "భాగస్వామ్యాన్ని ప్రారంభించడంలో లోపం: {error_message}"
|
msgstr "భాగస్వామ్యాన్ని ప్రారంభించడంలో లోపం: {error_message}"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr "భాగస్వామ్యం నిలిపివేయబడింది."
|
msgstr "భాగస్వామ్యం నిలిపివేయబడింది."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
msgstr "భాగస్వామ్యాన్ని నిలిపివేయడంలో లోపం: {error_message}"
|
msgstr "భాగస్వామ్యాన్ని నిలిపివేయడంలో లోపం: {error_message}"
|
||||||
@ -8310,27 +8312,27 @@ msgstr "రూటర్/WAN పోర్ట్ల నుండి"
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr "%(box_name)s పోర్ట్లకు"
|
msgstr "%(box_name)s పోర్ట్లకు"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr "అనువర్తనం స్థాపించబడింది."
|
msgstr "అనువర్తనం స్థాపించబడింది."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr "ఈ అనువర్తనాన్ని నిక్షిప్తం చేయాలా?"
|
msgstr "ఈ అనువర్తనాన్ని నిక్షిప్తం చేయాలా?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr "ఈ అనువర్తనానికి నవీకరణ అవసరం. ఇప్పుడే నవీకరిస్తారా?"
|
msgstr "ఈ అనువర్తనానికి నవీకరణ అవసరం. ఇప్పుడే నవీకరిస్తారా?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr "ప్రస్తుతం ఈ అనువర్తనం మీ పంపిణీకి అందుబాటులో లేదు."
|
msgstr "ప్రస్తుతం ఈ అనువర్తనం మీ పంపిణీకి అందుబాటులో లేదు."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr "మళ్ళీ ప్రయత్నించు"
|
msgstr "మళ్ళీ ప్రయత్నించు"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
@ -8339,11 +8341,11 @@ msgstr ""
|
|||||||
"<strong>విరుద్ధమైన ప్యాకేజీలు:</strong> సిస్టమ్లో ఇన్స్టాల్ చేయబడిన కొన్ని ప్యాకేజీలు ఈ యాప్ ఇన్స్టాలేషన్తో "
|
"<strong>విరుద్ధమైన ప్యాకేజీలు:</strong> సిస్టమ్లో ఇన్స్టాల్ చేయబడిన కొన్ని ప్యాకేజీలు ఈ యాప్ ఇన్స్టాలేషన్తో "
|
||||||
"విభేదిస్తున్నాయి. మీరు కొనసాగితే క్రింది ప్యాకేజీలు తీసివేయబడతాయి:"
|
"విభేదిస్తున్నాయి. మీరు కొనసాగితే క్రింది ప్యాకేజీలు తీసివేయబడతాయి:"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr "నిక్షిప్తం చేయు"
|
msgstr "నిక్షిప్తం చేయు"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "నవీకరణ"
|
msgstr "నవీకరణ"
|
||||||
|
|
||||||
|
|||||||
@ -6,8 +6,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: \n"
|
"Project-Id-Version: \n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2022-08-18 17:21+0000\n"
|
"PO-Revision-Date: 2022-09-02 06:23+0000\n"
|
||||||
"Last-Translator: Burak Yavuz <hitowerdigit@hotmail.com>\n"
|
"Last-Translator: Burak Yavuz <hitowerdigit@hotmail.com>\n"
|
||||||
"Language-Team: Turkish <https://hosted.weblate.org/projects/freedombox/"
|
"Language-Team: Turkish <https://hosted.weblate.org/projects/freedombox/"
|
||||||
"freedombox/tr/>\n"
|
"freedombox/tr/>\n"
|
||||||
@ -16,7 +16,7 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"X-Generator: Weblate 4.14-dev\n"
|
"X-Generator: Weblate 4.14.1-dev\n"
|
||||||
|
|
||||||
#: doc/dev/_templates/layout.html:11
|
#: doc/dev/_templates/layout.html:11
|
||||||
msgid "Page source"
|
msgid "Page source"
|
||||||
@ -54,17 +54,15 @@ msgstr "{host}:{port} adresine bağlanamıyor"
|
|||||||
|
|
||||||
#: plinth/forms.py:36
|
#: plinth/forms.py:36
|
||||||
msgid "Backup app before uninstall"
|
msgid "Backup app before uninstall"
|
||||||
msgstr ""
|
msgstr "Kaldırmadan önce uygulamayı yedekle"
|
||||||
|
|
||||||
#: plinth/forms.py:37
|
#: plinth/forms.py:37
|
||||||
msgid "Restoring from the backup will restore app data."
|
msgid "Restoring from the backup will restore app data."
|
||||||
msgstr ""
|
msgstr "Yedekten geri yükleme, uygulama verilerini geri yükleyecek."
|
||||||
|
|
||||||
#: plinth/forms.py:39
|
#: plinth/forms.py:39
|
||||||
#, fuzzy
|
|
||||||
#| msgid "Repository not found"
|
|
||||||
msgid "Repository to backup to"
|
msgid "Repository to backup to"
|
||||||
msgstr "Depo bulunamadı"
|
msgstr "Yedeklenecek depo"
|
||||||
|
|
||||||
#: plinth/forms.py:56
|
#: plinth/forms.py:56
|
||||||
msgid "Select a domain name to be used with this application"
|
msgid "Select a domain name to be used with this application"
|
||||||
@ -437,7 +435,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr "{box_name} depolaması"
|
msgstr "{box_name} depolaması"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr "Yeni bir yedek oluşturun"
|
msgstr "Yeni bir yedek oluşturun"
|
||||||
|
|
||||||
@ -489,7 +487,7 @@ msgid "Create Location"
|
|||||||
msgstr "Konum Oluştur"
|
msgstr "Konum Oluştur"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
msgstr "Depo Oluştur"
|
msgstr "Depo Oluştur"
|
||||||
|
|
||||||
@ -506,19 +504,6 @@ msgstr "Zaman"
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr "%(name)s Arşivini Sil"
|
msgstr "%(name)s Arşivini Sil"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr "Gönder"
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr "Bu depo şifreli"
|
msgstr "Bu depo şifreli"
|
||||||
@ -545,7 +530,7 @@ msgstr "İndir"
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr "Geri Yükle"
|
msgstr "Geri Yükle"
|
||||||
|
|
||||||
@ -648,99 +633,99 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr "Anamakineyi Doğrula"
|
msgstr "Anamakineyi Doğrula"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr "Yedekleme planı güncellendi."
|
msgstr "Yedekleme planı güncellendi."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr "Yedeklemeleri Zamanla"
|
msgstr "Yedeklemeleri Zamanla"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr "Arşiv oluşturuldu."
|
msgstr "Arşiv oluşturuldu."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr "Arşivi Sil"
|
msgstr "Arşivi Sil"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr "Arşiv silindi."
|
msgstr "Arşiv silindi."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr "Yedeklemeyi karşıya yükleyin ve geri yükleyin"
|
msgstr "Yedeklemeyi karşıya yükleyin ve geri yükleyin"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr "Dosyalar yedekten geri yüklendi."
|
msgstr "Dosyalar yedekten geri yüklendi."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr "Yedekleme dosyası bulunamadı."
|
msgstr "Yedekleme dosyası bulunamadı."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr "Karşıya yüklenen dosyadan geri yükle"
|
msgstr "Karşıya yüklenen dosyadan geri yükle"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr "Bir depo eklemek için ek diskler yok."
|
msgstr "Bir depo eklemek için ek diskler yok."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr "Yedekleme deposu oluşturun"
|
msgstr "Yedekleme deposu oluşturun"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr "Uzak yedekleme deposu oluşturun"
|
msgstr "Uzak yedekleme deposu oluşturun"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr "Yeni uzak SSH deposu eklendi."
|
msgstr "Yeni uzak SSH deposu eklendi."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr "SSH anamakine anahtarını doğrula"
|
msgstr "SSH anamakine anahtarını doğrula"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr "SSH anamakinesi zaten doğrulandı."
|
msgstr "SSH anamakinesi zaten doğrulandı."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr "SSH anamakinesi doğrulandı."
|
msgstr "SSH anamakinesi doğrulandı."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr "SSH anamakinesi ortak anahtarı doğrulanamadı."
|
msgstr "SSH anamakinesi ortak anahtarı doğrulanamadı."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr "Uzak sunucuya kimlik doğrulama başarısız oldu."
|
msgstr "Uzak sunucuya kimlik doğrulama başarısız oldu."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr "Sunucuyla bağlantı kurulurken hata oldu: {}"
|
msgstr "Sunucuyla bağlantı kurulurken hata oldu: {}"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr "Depo kaldırıldı."
|
msgstr "Depo kaldırıldı."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr "Depoyu Kaldır"
|
msgstr "Depoyu Kaldır"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr "Depo kaldırıldı. Yedekler silinmedi."
|
msgstr "Depo kaldırıldı. Yedekler silinmedi."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr "Bağlantıyı kaldırma başarısız oldu!"
|
msgstr "Bağlantıyı kaldırma başarısız oldu!"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr "Bağlama başarısız oldu"
|
msgstr "Bağlama başarısız oldu"
|
||||||
|
|
||||||
@ -911,20 +896,20 @@ msgid "Configuration updated."
|
|||||||
msgstr "Yapılandırma güncellendi."
|
msgstr "Yapılandırma güncellendi."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr "Yapılandırma sırasında bir hata meydana geldi."
|
msgstr "Yapılandırma sırasında bir hata meydana geldi."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr "Parola eklendi."
|
msgstr "Parola eklendi."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr "Parola Ekle"
|
msgstr "Parola Ekle"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
msgstr "Parola silindi."
|
msgstr "Parola silindi."
|
||||||
|
|
||||||
@ -1132,12 +1117,12 @@ msgstr "Kütüphane oluşturuldu."
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr "Kütüphane oluşturulurken bir hata meydana geldi."
|
msgstr "Kütüphane oluşturulurken bir hata meydana geldi."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr "{name} silindi."
|
msgstr "{name} silindi."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr "{name} silinemedi: {error}"
|
msgstr "{name} silinemedi: {error}"
|
||||||
@ -2439,19 +2424,19 @@ msgstr "<em>%(name)s</em> Git Deposunu Sil"
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr "Bu depo kalıcı olarak silinsin mi?"
|
msgstr "Bu depo kalıcı olarak silinsin mi?"
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr "Depo oluşturuldu."
|
msgstr "Depo oluşturuldu."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr "Depo oluşturulurken bir hata meydana geldi."
|
msgstr "Depo oluşturulurken bir hata meydana geldi."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr "Depo düzenlendi."
|
msgstr "Depo düzenlendi."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
msgstr "Depoyu düzenle"
|
msgstr "Depoyu düzenle"
|
||||||
|
|
||||||
@ -4566,6 +4551,15 @@ msgstr "İSS'imin sağladığı bağlantı türünü bilmiyorum."
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr "Güncelle..."
|
msgstr "Güncelle..."
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr "Gönder"
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "How is Your %(box_name)s Connected to the Internet?"
|
msgid "How is Your %(box_name)s Connected to the Internet?"
|
||||||
@ -5706,18 +5700,24 @@ msgid "Android Samba Client"
|
|||||||
msgstr "Android Samba İstemcisi"
|
msgstr "Android Samba İstemcisi"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
#, fuzzy
|
||||||
|
#| msgid "Ghost Commander - Samba plugin"
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr "Ghost Commander - Samba eklentisi"
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr "Ghost Commander - Samba eklentisi"
|
msgstr "Ghost Commander - Samba eklentisi"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr "VLC ortam oynatıcı"
|
msgstr "VLC ortam oynatıcı"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr "GNOME Dosyaları"
|
msgstr "GNOME Dosyaları"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr "Dolphin"
|
msgstr "Dolphin"
|
||||||
|
|
||||||
@ -5780,36 +5780,36 @@ msgstr "Paylaşım adı"
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr "Eylem"
|
msgstr "Eylem"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr "FreedomBox OS disk"
|
msgstr "FreedomBox OS disk"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr "Açık Paylaşım"
|
msgstr "Açık Paylaşım"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr "Grup Paylaşımı"
|
msgstr "Grup Paylaşımı"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr "Ev Paylaşımı"
|
msgstr "Ev Paylaşımı"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr "Paylaşım etkinleştirildi."
|
msgstr "Paylaşım etkinleştirildi."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr "Paylaşımı etkinleştirirken hata oldu: {error_message}"
|
msgstr "Paylaşımı etkinleştirirken hata oldu: {error_message}"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr "Paylaşım etkisizleştirildi."
|
msgstr "Paylaşım etkisizleştirildi."
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
msgstr "Paylaşımı etkisizleştirirken hata oldu: {error_message}"
|
msgstr "Paylaşımı etkisizleştirirken hata oldu: {error_message}"
|
||||||
@ -6983,16 +6983,13 @@ msgid "Ports"
|
|||||||
msgstr "Bağlantı Noktaları"
|
msgstr "Bağlantı Noktaları"
|
||||||
|
|
||||||
#: plinth/modules/tor/views.py:55
|
#: plinth/modules/tor/views.py:55
|
||||||
#, fuzzy
|
|
||||||
#| msgid "Error updating configuration"
|
|
||||||
msgid "Updating configuration"
|
msgid "Updating configuration"
|
||||||
msgstr "Yapılandırma güncellenirken hata oldu"
|
msgstr "Yapılandırma güncelleniyor"
|
||||||
|
|
||||||
#: plinth/modules/tor/views.py:72
|
#: plinth/modules/tor/views.py:72
|
||||||
#, fuzzy, python-brace-format
|
#, python-brace-format
|
||||||
#| msgid "Error updating app: {error}"
|
|
||||||
msgid "Error configuring app: {error}"
|
msgid "Error configuring app: {error}"
|
||||||
msgstr "Uygulama güncellenirken hata oldu: {error}"
|
msgstr "Uygulama yapılandırılırken hata oldu: {error}"
|
||||||
|
|
||||||
#: plinth/modules/transmission/__init__.py:23
|
#: plinth/modules/transmission/__init__.py:23
|
||||||
msgid "Transmission is a BitTorrent client with a web interface."
|
msgid "Transmission is a BitTorrent client with a web interface."
|
||||||
@ -7303,22 +7300,20 @@ msgid "Show recent update logs"
|
|||||||
msgstr "Son güncelleme günlüklerini göster"
|
msgstr "Son güncelleme günlüklerini göster"
|
||||||
|
|
||||||
#: plinth/modules/upgrades/templates/upgrades_configure.html:138
|
#: plinth/modules/upgrades/templates/upgrades_configure.html:138
|
||||||
#, fuzzy
|
|
||||||
#| msgid "Distribution upgrade enabled"
|
|
||||||
msgid "Test Distribution Upgrade"
|
msgid "Test Distribution Upgrade"
|
||||||
msgstr "Dağıtım yükseltmesi etkinleştirildi"
|
msgstr "Dağıtım Yükseltmesini Dene"
|
||||||
|
|
||||||
#: plinth/modules/upgrades/templates/upgrades_configure.html:140
|
#: plinth/modules/upgrades/templates/upgrades_configure.html:140
|
||||||
msgid ""
|
msgid ""
|
||||||
"This will attempt to upgrade the system from stable to testing. <strong>It "
|
"This will attempt to upgrade the system from stable to testing. <strong>It "
|
||||||
"is meant only for development use.</strong>"
|
"is meant only for development use.</strong>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Bu, deneme için sistemi kararlı durumdan yükseltmeye çalışacak. "
|
||||||
|
"<strong>Sadece geliştirme amaçlı kullanım içindir.</strong>"
|
||||||
|
|
||||||
#: plinth/modules/upgrades/templates/upgrades_configure.html:150
|
#: plinth/modules/upgrades/templates/upgrades_configure.html:150
|
||||||
#, fuzzy
|
|
||||||
#| msgid "Distribution upgrade enabled"
|
|
||||||
msgid "Test distribution upgrade now"
|
msgid "Test distribution upgrade now"
|
||||||
msgstr "Dağıtım yükseltmesi etkinleştirildi"
|
msgstr "Dağıtım yükseltmesini şimdi dene"
|
||||||
|
|
||||||
#: plinth/modules/upgrades/views.py:68
|
#: plinth/modules/upgrades/views.py:68
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
@ -7354,10 +7349,8 @@ msgid "Frequent feature updates activated."
|
|||||||
msgstr "Sık yapılan özellik güncellemeleri etkinleştirildi."
|
msgstr "Sık yapılan özellik güncellemeleri etkinleştirildi."
|
||||||
|
|
||||||
#: plinth/modules/upgrades/views.py:223
|
#: plinth/modules/upgrades/views.py:223
|
||||||
#, fuzzy
|
|
||||||
#| msgid "Distribution upgrade enabled"
|
|
||||||
msgid "Starting distribution upgrade test."
|
msgid "Starting distribution upgrade test."
|
||||||
msgstr "Dağıtım yükseltmesi etkinleştirildi"
|
msgstr "Dağıtım yükseltmesi denemesi başlatılıyor."
|
||||||
|
|
||||||
#: plinth/modules/users/__init__.py:29
|
#: plinth/modules/users/__init__.py:29
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -8143,10 +8136,8 @@ msgid "Package {package_name} is the latest version ({latest_version})"
|
|||||||
msgstr "{package_name} paketi en son sürümdür ({latest_version})"
|
msgstr "{package_name} paketi en son sürümdür ({latest_version})"
|
||||||
|
|
||||||
#: plinth/package.py:367
|
#: plinth/package.py:367
|
||||||
#, fuzzy
|
|
||||||
#| msgid "Error During Backup"
|
|
||||||
msgid "Error running apt-get"
|
msgid "Error running apt-get"
|
||||||
msgstr "Yedekleme Sırasında Hata"
|
msgstr "apt-get çalıştırılırken hata oldu"
|
||||||
|
|
||||||
#: plinth/package.py:389
|
#: plinth/package.py:389
|
||||||
msgid "installing"
|
msgid "installing"
|
||||||
@ -8206,28 +8197,22 @@ msgid "App updated"
|
|||||||
msgstr "Uygulama güncellendi"
|
msgstr "Uygulama güncellendi"
|
||||||
|
|
||||||
#: plinth/setup.py:104
|
#: plinth/setup.py:104
|
||||||
#, fuzzy
|
|
||||||
#| msgid "Installing app"
|
|
||||||
msgid "Uninstalling app"
|
msgid "Uninstalling app"
|
||||||
msgstr "Uygulama yükleniyor"
|
msgstr "Uygulama kaldırılıyor"
|
||||||
|
|
||||||
#: plinth/setup.py:122
|
#: plinth/setup.py:122
|
||||||
#, fuzzy, python-brace-format
|
#, python-brace-format
|
||||||
#| msgid "Error installing app: {string} {details}"
|
|
||||||
msgid "Error uninstalling app: {string} {details}"
|
msgid "Error uninstalling app: {string} {details}"
|
||||||
msgstr "Uygulama yüklenirken hata oldu: {string} {details}"
|
msgstr "Uygulama kaldırılırken hata oldu: {string} {details}"
|
||||||
|
|
||||||
#: plinth/setup.py:128
|
#: plinth/setup.py:128
|
||||||
#, fuzzy, python-brace-format
|
#, python-brace-format
|
||||||
#| msgid "Error installing app: {error}"
|
|
||||||
msgid "Error uninstalling app: {error}"
|
msgid "Error uninstalling app: {error}"
|
||||||
msgstr "Uygulama yüklenirken hata oldu: {error}"
|
msgstr "Uygulama kaldırılırken hata oldu: {error}"
|
||||||
|
|
||||||
#: plinth/setup.py:131
|
#: plinth/setup.py:131
|
||||||
#, fuzzy
|
|
||||||
#| msgid "App installed."
|
|
||||||
msgid "App uninstalled."
|
msgid "App uninstalled."
|
||||||
msgstr "Uygulama yüklendi."
|
msgstr "Uygulama kaldırıldı."
|
||||||
|
|
||||||
#: plinth/setup.py:451
|
#: plinth/setup.py:451
|
||||||
msgid "Updating app packages"
|
msgid "Updating app packages"
|
||||||
@ -8550,27 +8535,27 @@ msgstr "Yönlendirici/WAN Bağlantı Noktalarından"
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr "%(box_name)s Bağlantı Noktalarına"
|
msgstr "%(box_name)s Bağlantı Noktalarına"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr "Uygulama yüklendi."
|
msgstr "Uygulama yüklendi."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr "Bu uygulama yüklensin mi?"
|
msgstr "Bu uygulama yüklensin mi?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr "Bu uygulamanın güncellenmesi gerekiyor. Şimdi güncellensin mi?"
|
msgstr "Bu uygulamanın güncellenmesi gerekiyor. Şimdi güncellensin mi?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr "Bu uygulama şu anda dağıtımınızda mevcut değil."
|
msgstr "Bu uygulama şu anda dağıtımınızda mevcut değil."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr "Tekrar denetle"
|
msgstr "Tekrar denetle"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
@ -8580,36 +8565,35 @@ msgstr ""
|
|||||||
"uygulamanın kurulumuyla çakışıyor. Devam ederseniz aşağıdaki paketler "
|
"uygulamanın kurulumuyla çakışıyor. Devam ederseniz aşağıdaki paketler "
|
||||||
"kaldırılacaktır:"
|
"kaldırılacaktır:"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr "Yükle"
|
msgstr "Yükle"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "Güncelle"
|
msgstr "Güncelle"
|
||||||
|
|
||||||
#: plinth/templates/toolbar.html:39 plinth/templates/toolbar.html:40
|
#: plinth/templates/toolbar.html:39 plinth/templates/toolbar.html:40
|
||||||
#: plinth/templates/uninstall.html:36
|
#: plinth/templates/uninstall.html:36
|
||||||
#, fuzzy
|
|
||||||
#| msgid "Install"
|
|
||||||
msgid "Uninstall"
|
msgid "Uninstall"
|
||||||
msgstr "Yükle"
|
msgstr "Kaldır"
|
||||||
|
|
||||||
#: plinth/templates/uninstall.html:11
|
#: plinth/templates/uninstall.html:11
|
||||||
#, fuzzy, python-format
|
#, python-format
|
||||||
#| msgid "Edit User <em>%(username)s</em>"
|
|
||||||
msgid "Uninstall App <em>%(app_name)s</em>?"
|
msgid "Uninstall App <em>%(app_name)s</em>?"
|
||||||
msgstr "<em>%(username)s</em> Kullanıcısını Düzenleyin"
|
msgstr "<em>%(app_name)s</em> Uygulaması Kaldırılsın mı?"
|
||||||
|
|
||||||
#: plinth/templates/uninstall.html:17
|
#: plinth/templates/uninstall.html:17
|
||||||
msgid "Uninstalling an app is an exprimental feature."
|
msgid "Uninstalling an app is an exprimental feature."
|
||||||
msgstr ""
|
msgstr "Bir uygulamayı kaldırmak, deneysel bir özelliktir."
|
||||||
|
|
||||||
#: plinth/templates/uninstall.html:23
|
#: plinth/templates/uninstall.html:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"All app data and configuration will be permanently lost. App may be "
|
"All app data and configuration will be permanently lost. App may be "
|
||||||
"installed freshly again."
|
"installed freshly again."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Tüm uygulama verileri ve yapılandırması kalıcı olarak kaybolacaktır. "
|
||||||
|
"Uygulama tekrar yeni olarak yüklenebilir."
|
||||||
|
|
||||||
#: plinth/views.py:221
|
#: plinth/views.py:221
|
||||||
msgid "Setting unchanged"
|
msgid "Setting unchanged"
|
||||||
@ -8618,7 +8602,7 @@ msgstr "Ayar değişmedi"
|
|||||||
#: plinth/views.py:401
|
#: plinth/views.py:401
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "before uninstall of {app_id}"
|
msgid "before uninstall of {app_id}"
|
||||||
msgstr ""
|
msgstr "{app_id} kaldırılmadan önce"
|
||||||
|
|
||||||
#: plinth/web_framework.py:114
|
#: plinth/web_framework.py:114
|
||||||
msgid "Gujarati"
|
msgid "Gujarati"
|
||||||
|
|||||||
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2022-08-18 17:21+0000\n"
|
"PO-Revision-Date: 2022-08-18 17:21+0000\n"
|
||||||
"Last-Translator: Andrij Mizyk <andmzk@proton.me>\n"
|
"Last-Translator: Andrij Mizyk <andmzk@proton.me>\n"
|
||||||
"Language-Team: Ukrainian <https://hosted.weblate.org/projects/freedombox/"
|
"Language-Team: Ukrainian <https://hosted.weblate.org/projects/freedombox/"
|
||||||
@ -443,7 +443,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr "Сховище {box_name}"
|
msgstr "Сховище {box_name}"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr "Створити нову резервну копію"
|
msgstr "Створити нову резервну копію"
|
||||||
|
|
||||||
@ -495,7 +495,7 @@ msgid "Create Location"
|
|||||||
msgstr "Створити розташування"
|
msgstr "Створити розташування"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
msgstr "Створити репозиторій"
|
msgstr "Створити репозиторій"
|
||||||
|
|
||||||
@ -512,19 +512,6 @@ msgstr "Час"
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr "Видалити архів %(name)s"
|
msgstr "Видалити архів %(name)s"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr "Надіслати"
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr "Цей репозиторій зашифровано"
|
msgstr "Цей репозиторій зашифровано"
|
||||||
@ -553,7 +540,7 @@ msgstr "Завантажити"
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr "Відновити"
|
msgstr "Відновити"
|
||||||
|
|
||||||
@ -655,99 +642,99 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr "Перевірити власника"
|
msgstr "Перевірити власника"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr "Планування резервного копіювання оновлено."
|
msgstr "Планування резервного копіювання оновлено."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr "Спланувати резервне копіювання"
|
msgstr "Спланувати резервне копіювання"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr "Архів створено."
|
msgstr "Архів створено."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr "Видалити архів"
|
msgstr "Видалити архів"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr "Архів видалено."
|
msgstr "Архів видалено."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr "Вивантажити і відновити резервну копію"
|
msgstr "Вивантажити і відновити резервну копію"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr "Відновлені файли з резервної копії."
|
msgstr "Відновлені файли з резервної копії."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr "Не занйдено файлу резервної копії."
|
msgstr "Не занйдено файлу резервної копії."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr "Відновити з вивантаженого файлу"
|
msgstr "Відновити з вивантаженого файлу"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr "Нема доступних дисків для додавання репозиторію."
|
msgstr "Нема доступних дисків для додавання репозиторію."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr "Створити репозиторій резервних копій"
|
msgstr "Створити репозиторій резервних копій"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr "Створити віддалений репозиторій резервних копій"
|
msgstr "Створити віддалений репозиторій резервних копій"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr "Додано новий віддалений SSH-репозиторій."
|
msgstr "Додано новий віддалений SSH-репозиторій."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr "Перевірити ключ власника SSH"
|
msgstr "Перевірити ключ власника SSH"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr "Власника SSH вже перевірено."
|
msgstr "Власника SSH вже перевірено."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr "Власника SSH перевірено."
|
msgstr "Власника SSH перевірено."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr "Публічний ключ власника SSH не можливо перевірити."
|
msgstr "Публічний ключ власника SSH не можливо перевірити."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr "Не вдалося автентифікуватися на віддаленому сервері."
|
msgstr "Не вдалося автентифікуватися на віддаленому сервері."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr "Помилка встановлення зʼєднання зі сервером: {}"
|
msgstr "Помилка встановлення зʼєднання зі сервером: {}"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr "Репозиторій вилучено."
|
msgstr "Репозиторій вилучено."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr "Видалити репозиторій"
|
msgstr "Видалити репозиторій"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr "Репозиторій вилучено. Резервні копії не видалено."
|
msgstr "Репозиторій вилучено. Резервні копії не видалено."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr "Не вдалося відмонтувати!"
|
msgstr "Не вдалося відмонтувати!"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr "Не вдалося змонтувати"
|
msgstr "Не вдалося змонтувати"
|
||||||
|
|
||||||
@ -916,20 +903,20 @@ msgid "Configuration updated."
|
|||||||
msgstr "Налаштування оновлено."
|
msgstr "Налаштування оновлено."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr "Під час налаштування відбулася помилка."
|
msgstr "Під час налаштування відбулася помилка."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr "Пароль додано."
|
msgstr "Пароль додано."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr "Додати пароль"
|
msgstr "Додати пароль"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
msgstr "Пароль видалено."
|
msgstr "Пароль видалено."
|
||||||
|
|
||||||
@ -1137,12 +1124,12 @@ msgstr "Бібліотеку створено."
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr "Помилка виникла під час створення бібліотеки."
|
msgstr "Помилка виникла під час створення бібліотеки."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr "{name} видалено."
|
msgstr "{name} видалено."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr "Не вдалося видалити {name}: {error}"
|
msgstr "Не вдалося видалити {name}: {error}"
|
||||||
@ -2392,19 +2379,19 @@ msgstr "Видалити Git-репозиторій <em>%(name)s</em>"
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr "Видалити цей репозиторій безповоротно?"
|
msgstr "Видалити цей репозиторій безповоротно?"
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr "Репозиторій створено."
|
msgstr "Репозиторій створено."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr "Помилка відбулася під час створення репозиторію."
|
msgstr "Помилка відбулася під час створення репозиторію."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr "Репозиторій змінено."
|
msgstr "Репозиторій змінено."
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
msgstr "Змінити репозиторій"
|
msgstr "Змінити репозиторій"
|
||||||
|
|
||||||
@ -4355,6 +4342,15 @@ msgstr "Я не знаю типу зʼєднання, яке надає мій
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr "Оновити..."
|
msgstr "Оновити..."
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr "Надіслати"
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "How is Your %(box_name)s Connected to the Internet?"
|
msgid "How is Your %(box_name)s Connected to the Internet?"
|
||||||
@ -5393,18 +5389,24 @@ msgid "Android Samba Client"
|
|||||||
msgstr "Клієнт Samba для Android"
|
msgstr "Клієнт Samba для Android"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
#, fuzzy
|
||||||
|
#| msgid "Ghost Commander - Samba plugin"
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr "Ghost Commander - втулка для Samba"
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr "Ghost Commander - втулка для Samba"
|
msgstr "Ghost Commander - втулка для Samba"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr "Медіяпрогравач VLC"
|
msgstr "Медіяпрогравач VLC"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr "Файли GNOME"
|
msgstr "Файли GNOME"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr "Dolphin"
|
msgstr "Dolphin"
|
||||||
|
|
||||||
@ -5458,36 +5460,36 @@ msgstr ""
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr "Дія"
|
msgstr "Дія"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr "Диск ОС FreedomBox"
|
msgstr "Диск ОС FreedomBox"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr "Помилка дозволу поширення: {error_message}"
|
msgstr "Помилка дозволу поширення: {error_message}"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
msgstr "Помилка вимкнення поширення: {error_message}"
|
msgstr "Помилка вимкнення поширення: {error_message}"
|
||||||
@ -8065,27 +8067,27 @@ msgstr "Від портів маршрутизатора/WAN"
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr "До портів %(box_name)s"
|
msgstr "До портів %(box_name)s"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr "Застосунок встановлено."
|
msgstr "Застосунок встановлено."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr "Встановити цей застосунок?"
|
msgstr "Встановити цей застосунок?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr "Цей застосунок потребує оновлення. Оновити зараз?"
|
msgstr "Цей застосунок потребує оновлення. Оновити зараз?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr "Цей застосунок поки що не доступний у Вашому дистрибутиві."
|
msgstr "Цей застосунок поки що не доступний у Вашому дистрибутиві."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr "Перевірити знову"
|
msgstr "Перевірити знову"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
@ -8095,11 +8097,11 @@ msgstr ""
|
|||||||
"конфліктують зі встановленням цієї програми. Наступні пакунки видаляться, "
|
"конфліктують зі встановленням цієї програми. Наступні пакунки видаляться, "
|
||||||
"якщо Ви продовжите:"
|
"якщо Ви продовжите:"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr "Встановити"
|
msgstr "Встановити"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "Оновити"
|
msgstr "Оновити"
|
||||||
|
|
||||||
|
|||||||
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2021-07-28 08:34+0000\n"
|
"PO-Revision-Date: 2021-07-28 08:34+0000\n"
|
||||||
"Last-Translator: bruh <quangtrung02hn16@gmail.com>\n"
|
"Last-Translator: bruh <quangtrung02hn16@gmail.com>\n"
|
||||||
"Language-Team: Vietnamese <https://hosted.weblate.org/projects/freedombox/"
|
"Language-Team: Vietnamese <https://hosted.weblate.org/projects/freedombox/"
|
||||||
@ -441,7 +441,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr "Kho lưu trữ {box_name}"
|
msgstr "Kho lưu trữ {box_name}"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr "Tạo một bản sao lưu mới"
|
msgstr "Tạo một bản sao lưu mới"
|
||||||
|
|
||||||
@ -497,7 +497,7 @@ msgid "Create Location"
|
|||||||
msgstr "Tạo vị trí"
|
msgstr "Tạo vị trí"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
msgstr "Tạo kho"
|
msgstr "Tạo kho"
|
||||||
|
|
||||||
@ -514,19 +514,6 @@ msgstr "Thời gian"
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr "Xoá tệp %(name)s"
|
msgstr "Xoá tệp %(name)s"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr "Gửi đi"
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr "Kho này được mã hoá"
|
msgstr "Kho này được mã hoá"
|
||||||
@ -553,7 +540,7 @@ msgstr "Tải xuống"
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr "Khôi phục"
|
msgstr "Khôi phục"
|
||||||
|
|
||||||
@ -661,99 +648,99 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr "Xác minh máy chủ"
|
msgstr "Xác minh máy chủ"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr "Đã cập nhật lịch trình sao lưu."
|
msgstr "Đã cập nhật lịch trình sao lưu."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr "Lên lịch sao lưu"
|
msgstr "Lên lịch sao lưu"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr "Đã tạo tệp."
|
msgstr "Đã tạo tệp."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr "Xoá tệp"
|
msgstr "Xoá tệp"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr "Đã xoá tệp."
|
msgstr "Đã xoá tệp."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr "Tải lên và khôi phục một bản sao lưu"
|
msgstr "Tải lên và khôi phục một bản sao lưu"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr "Đã khôi phục các tệp từ bản sao lưu."
|
msgstr "Đã khôi phục các tệp từ bản sao lưu."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr "Không tìm thấy tệp sao lưu nào."
|
msgstr "Không tìm thấy tệp sao lưu nào."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr "Khôi phục từ tệp đã tải lên"
|
msgstr "Khôi phục từ tệp đã tải lên"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr "Không có ổ đĩa bổ sung nào có sẵn để thêm một kho."
|
msgstr "Không có ổ đĩa bổ sung nào có sẵn để thêm một kho."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr "Tạo kho sao lưu"
|
msgstr "Tạo kho sao lưu"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr "Tạo kho sao lưu trên mạng"
|
msgstr "Tạo kho sao lưu trên mạng"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr "Đã thêm kho SSH trên mạng mới."
|
msgstr "Đã thêm kho SSH trên mạng mới."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr "Xác minh mã khoá máy chủ SSH"
|
msgstr "Xác minh mã khoá máy chủ SSH"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr "Máy chủ SSH đã được xác minh rồi."
|
msgstr "Máy chủ SSH đã được xác minh rồi."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr "Đã xác minh máy chủ SSH."
|
msgstr "Đã xác minh máy chủ SSH."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr "Mã khoá công khai của máy chủ SSH không thể được xác minh."
|
msgstr "Mã khoá công khai của máy chủ SSH không thể được xác minh."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr "Xác thực đến máy chủ trên mạng thất bại."
|
msgstr "Xác thực đến máy chủ trên mạng thất bại."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr "Lỗi khi lập kết nối đến máy chủ: {}"
|
msgstr "Lỗi khi lập kết nối đến máy chủ: {}"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr "Đã xoá kho."
|
msgstr "Đã xoá kho."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr "Xoá kho"
|
msgstr "Xoá kho"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr "Đã xoá kho. Các bản sao lưu đã không bị xoá."
|
msgstr "Đã xoá kho. Các bản sao lưu đã không bị xoá."
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr "Bỏ gắn thất bại!"
|
msgstr "Bỏ gắn thất bại!"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr "Gắn thất bại"
|
msgstr "Gắn thất bại"
|
||||||
|
|
||||||
@ -925,20 +912,20 @@ msgid "Configuration updated."
|
|||||||
msgstr "Đã cập nhật thiết lập."
|
msgstr "Đã cập nhật thiết lập."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr "Đã xảy ra lỗi trong khi thiết lập."
|
msgstr "Đã xảy ra lỗi trong khi thiết lập."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr "Đã thêm mật khẩu."
|
msgstr "Đã thêm mật khẩu."
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr "Thêm mật khẩu"
|
msgstr "Thêm mật khẩu"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
msgstr "Đã xoá mật khẩu."
|
msgstr "Đã xoá mật khẩu."
|
||||||
|
|
||||||
@ -1146,12 +1133,12 @@ msgstr "Đã tạo thư viện."
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr "Đã xảy ra lỗi trong khi tạo thư viện."
|
msgstr "Đã xảy ra lỗi trong khi tạo thư viện."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr "Đã xoá {name}."
|
msgstr "Đã xoá {name}."
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr "Không thể xoá {name}: {error}"
|
msgstr "Không thể xoá {name}: {error}"
|
||||||
@ -2404,19 +2391,19 @@ msgstr ""
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4216,6 +4203,15 @@ msgstr ""
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr "Gửi đi"
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "How is Your %(box_name)s Connected to the Internet?"
|
msgid "How is Your %(box_name)s Connected to the Internet?"
|
||||||
@ -5185,18 +5181,22 @@ msgid "Android Samba Client"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5250,36 +5250,36 @@ msgstr ""
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -7714,38 +7714,38 @@ msgstr ""
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr "Ứng dụng đã được cài đặt."
|
msgstr "Ứng dụng đã được cài đặt."
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
"removed if you proceed:"
|
"removed if you proceed:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "Cập nhật"
|
msgstr "Cập nhật"
|
||||||
|
|
||||||
|
|||||||
@ -7,9 +7,9 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Plinth\n"
|
"Project-Id-Version: Plinth\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2022-08-24 03:19+0000\n"
|
"PO-Revision-Date: 2022-09-03 14:18+0000\n"
|
||||||
"Last-Translator: Hugel <qihu@nfschina.com>\n"
|
"Last-Translator: Eric <hamburger1024@firemail.cc>\n"
|
||||||
"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"
|
"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"
|
||||||
"freedombox/freedombox/zh_Hans/>\n"
|
"freedombox/freedombox/zh_Hans/>\n"
|
||||||
"Language: zh_Hans\n"
|
"Language: zh_Hans\n"
|
||||||
@ -17,7 +17,7 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: Weblate 4.14-dev\n"
|
"X-Generator: Weblate 4.14.1-dev\n"
|
||||||
|
|
||||||
#: doc/dev/_templates/layout.html:11
|
#: doc/dev/_templates/layout.html:11
|
||||||
msgid "Page source"
|
msgid "Page source"
|
||||||
@ -61,10 +61,8 @@ msgid "Restoring from the backup will restore app data."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/forms.py:39
|
#: plinth/forms.py:39
|
||||||
#, fuzzy
|
|
||||||
#| msgid "Repository not found"
|
|
||||||
msgid "Repository to backup to"
|
msgid "Repository to backup to"
|
||||||
msgstr "找不到存储库"
|
msgstr "备份到哪个存储库"
|
||||||
|
|
||||||
#: plinth/forms.py:56
|
#: plinth/forms.py:56
|
||||||
msgid "Select a domain name to be used with this application"
|
msgid "Select a domain name to be used with this application"
|
||||||
@ -418,7 +416,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr "{box_name} 存储"
|
msgstr "{box_name} 存储"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr "创建新备份"
|
msgstr "创建新备份"
|
||||||
|
|
||||||
@ -469,7 +467,7 @@ msgid "Create Location"
|
|||||||
msgstr "创建存储位置"
|
msgstr "创建存储位置"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
msgstr "创建存储库"
|
msgstr "创建存储库"
|
||||||
|
|
||||||
@ -486,19 +484,6 @@ msgstr "时间"
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr "删除名为 %(name)s 的存档"
|
msgstr "删除名为 %(name)s 的存档"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr "提交"
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr "此存储库已加密"
|
msgstr "此存储库已加密"
|
||||||
@ -525,7 +510,7 @@ msgstr "下载"
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr "恢复"
|
msgstr "恢复"
|
||||||
|
|
||||||
@ -622,99 +607,99 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr "核实本地计算机"
|
msgstr "核实本地计算机"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr "备份计划已更新。"
|
msgstr "备份计划已更新。"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr "计划备份"
|
msgstr "计划备份"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr "文档已创建。"
|
msgstr "文档已创建。"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr "删除文档"
|
msgstr "删除文档"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr "归档已删除。"
|
msgstr "归档已删除。"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr "上传并且储存一个备份"
|
msgstr "上传并且储存一个备份"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr "从备份中恢复了文件。"
|
msgstr "从备份中恢复了文件。"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr "没有找到备份文件。"
|
msgstr "没有找到备份文件。"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr "从已上传的文件中恢复"
|
msgstr "从已上传的文件中恢复"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr "没有可增加到信息库的额外可用磁盘。"
|
msgstr "没有可增加到信息库的额外可用磁盘。"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr "创建备份存储库"
|
msgstr "创建备份存储库"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr "创建远程备份存储库"
|
msgstr "创建远程备份存储库"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr "已添加新的远程 SSH 存储库。"
|
msgstr "已添加新的远程 SSH 存储库。"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr "验证 SSH hostkey"
|
msgstr "验证 SSH hostkey"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr "SSH 主机已经验证过了。"
|
msgstr "SSH 主机已经验证过了。"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr "SSH 主机已验证。"
|
msgstr "SSH 主机已验证。"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr "SSH 主机的公钥无法被验证。"
|
msgstr "SSH 主机的公钥无法被验证。"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr "远程服务器认证失败。"
|
msgstr "远程服务器认证失败。"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr "启用到服务器的连接时错误:{}"
|
msgstr "启用到服务器的连接时错误:{}"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr "储存库被移除。"
|
msgstr "储存库被移除。"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr "移除存储"
|
msgstr "移除存储"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr "存储库被删除,备份并没有被删除。"
|
msgstr "存储库被删除,备份并没有被删除。"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr "卸载失败!"
|
msgstr "卸载失败!"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr "安装失败"
|
msgstr "安装失败"
|
||||||
|
|
||||||
@ -879,20 +864,20 @@ msgid "Configuration updated."
|
|||||||
msgstr "配置已更新。"
|
msgstr "配置已更新。"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr "在配置过程中出错。"
|
msgstr "在配置过程中出错。"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr "密码已添加。"
|
msgstr "密码已添加。"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr "添加密码"
|
msgstr "添加密码"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
msgstr "密码已删除。"
|
msgstr "密码已删除。"
|
||||||
|
|
||||||
@ -1089,12 +1074,12 @@ msgstr "创建了库。"
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr "在创建库时发生了一个错误。"
|
msgstr "在创建库时发生了一个错误。"
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr "{name} 已删除。"
|
msgstr "{name} 已删除。"
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr "不能删除 {name}:{error}"
|
msgstr "不能删除 {name}:{error}"
|
||||||
@ -2298,19 +2283,19 @@ msgstr "删除 Git 存储库 <em> %(name)s </em>"
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr "永久删除此存储库?"
|
msgstr "永久删除此存储库?"
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr "已创建储存库。"
|
msgstr "已创建储存库。"
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr "创建存储库时发生错误。"
|
msgstr "创建存储库时发生错误。"
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr "已编辑储存库。"
|
msgstr "已编辑储存库。"
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
msgstr "编辑存储库"
|
msgstr "编辑存储库"
|
||||||
|
|
||||||
@ -4164,6 +4149,15 @@ msgstr ""
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr "更新…"
|
msgstr "更新…"
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr "提交"
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "How is Your %(box_name)s Connected to the Internet?"
|
msgid "How is Your %(box_name)s Connected to the Internet?"
|
||||||
@ -5179,18 +5173,22 @@ msgid "Android Samba Client"
|
|||||||
msgstr "Android Samba 客户端"
|
msgstr "Android Samba 客户端"
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5244,36 +5242,36 @@ msgstr "共享名称"
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr "操作"
|
msgstr "操作"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr "FreedomBox 操作系统盘"
|
msgstr "FreedomBox 操作系统盘"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr "打开共享"
|
msgstr "打开共享"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr "群组共享"
|
msgstr "群组共享"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr "主页共享"
|
msgstr "主页共享"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr "共享已启用。"
|
msgstr "共享已启用。"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr "启用分享时出错:{error_message}"
|
msgstr "启用分享时出错:{error_message}"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr "已禁用共享。"
|
msgstr "已禁用共享。"
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
msgstr "禁用共享出错:{error_message}"
|
msgstr "禁用共享出错:{error_message}"
|
||||||
@ -6327,16 +6325,13 @@ msgid "Ports"
|
|||||||
msgstr "端口"
|
msgstr "端口"
|
||||||
|
|
||||||
#: plinth/modules/tor/views.py:55
|
#: plinth/modules/tor/views.py:55
|
||||||
#, fuzzy
|
|
||||||
#| msgid "An error occurred during configuration."
|
|
||||||
msgid "Updating configuration"
|
msgid "Updating configuration"
|
||||||
msgstr "在配置过程中出错。"
|
msgstr "更新配置"
|
||||||
|
|
||||||
#: plinth/modules/tor/views.py:72
|
#: plinth/modules/tor/views.py:72
|
||||||
#, fuzzy, python-brace-format
|
#, python-brace-format
|
||||||
#| msgid "Error updating app: {error}"
|
|
||||||
msgid "Error configuring app: {error}"
|
msgid "Error configuring app: {error}"
|
||||||
msgstr "更新应用出错:{error}"
|
msgstr "配置应用出错:{error}"
|
||||||
|
|
||||||
#: plinth/modules/transmission/__init__.py:23
|
#: plinth/modules/transmission/__init__.py:23
|
||||||
msgid "Transmission is a BitTorrent client with a web interface."
|
msgid "Transmission is a BitTorrent client with a web interface."
|
||||||
@ -6604,10 +6599,8 @@ msgid "Show recent update logs"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/upgrades/templates/upgrades_configure.html:138
|
#: plinth/modules/upgrades/templates/upgrades_configure.html:138
|
||||||
#, fuzzy
|
|
||||||
#| msgid "Distribution upgrade enabled"
|
|
||||||
msgid "Test Distribution Upgrade"
|
msgid "Test Distribution Upgrade"
|
||||||
msgstr "已启用分发升级"
|
msgstr "测试分发升级"
|
||||||
|
|
||||||
#: plinth/modules/upgrades/templates/upgrades_configure.html:140
|
#: plinth/modules/upgrades/templates/upgrades_configure.html:140
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -6616,10 +6609,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/upgrades/templates/upgrades_configure.html:150
|
#: plinth/modules/upgrades/templates/upgrades_configure.html:150
|
||||||
#, fuzzy
|
|
||||||
#| msgid "Distribution upgrade enabled"
|
|
||||||
msgid "Test distribution upgrade now"
|
msgid "Test distribution upgrade now"
|
||||||
msgstr "已启用分发升级"
|
msgstr "立即测试分发升级"
|
||||||
|
|
||||||
#: plinth/modules/upgrades/views.py:68
|
#: plinth/modules/upgrades/views.py:68
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
@ -6655,10 +6646,8 @@ msgid "Frequent feature updates activated."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/upgrades/views.py:223
|
#: plinth/modules/upgrades/views.py:223
|
||||||
#, fuzzy
|
|
||||||
#| msgid "Distribution upgrade enabled"
|
|
||||||
msgid "Starting distribution upgrade test."
|
msgid "Starting distribution upgrade test."
|
||||||
msgstr "已启用分发升级"
|
msgstr "启动分发升级测试。"
|
||||||
|
|
||||||
#: plinth/modules/users/__init__.py:29
|
#: plinth/modules/users/__init__.py:29
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -7359,10 +7348,8 @@ msgid "Package {package_name} is the latest version ({latest_version})"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/package.py:367
|
#: plinth/package.py:367
|
||||||
#, fuzzy
|
|
||||||
#| msgid "Error During Backup"
|
|
||||||
msgid "Error running apt-get"
|
msgid "Error running apt-get"
|
||||||
msgstr "备份时出错"
|
msgstr "运行 apt-get 出错"
|
||||||
|
|
||||||
#: plinth/package.py:389
|
#: plinth/package.py:389
|
||||||
msgid "installing"
|
msgid "installing"
|
||||||
@ -7422,28 +7409,22 @@ msgid "App updated"
|
|||||||
msgstr "应用已更新"
|
msgstr "应用已更新"
|
||||||
|
|
||||||
#: plinth/setup.py:104
|
#: plinth/setup.py:104
|
||||||
#, fuzzy
|
|
||||||
#| msgid "Installing app"
|
|
||||||
msgid "Uninstalling app"
|
msgid "Uninstalling app"
|
||||||
msgstr "安装应用中"
|
msgstr "卸载应用"
|
||||||
|
|
||||||
#: plinth/setup.py:122
|
#: plinth/setup.py:122
|
||||||
#, fuzzy, python-brace-format
|
#, python-brace-format
|
||||||
#| msgid "Error installing app: {string} {details}"
|
|
||||||
msgid "Error uninstalling app: {string} {details}"
|
msgid "Error uninstalling app: {string} {details}"
|
||||||
msgstr "安装应用出错:{string} {details}"
|
msgstr "卸载应用出错:{string} {details}"
|
||||||
|
|
||||||
#: plinth/setup.py:128
|
#: plinth/setup.py:128
|
||||||
#, fuzzy, python-brace-format
|
#, python-brace-format
|
||||||
#| msgid "Error installing app: {error}"
|
|
||||||
msgid "Error uninstalling app: {error}"
|
msgid "Error uninstalling app: {error}"
|
||||||
msgstr "安装应用出错:{error}"
|
msgstr "卸载应用出错:{error}"
|
||||||
|
|
||||||
#: plinth/setup.py:131
|
#: plinth/setup.py:131
|
||||||
#, fuzzy
|
|
||||||
#| msgid "App installed."
|
|
||||||
msgid "App uninstalled."
|
msgid "App uninstalled."
|
||||||
msgstr "应用已安装。"
|
msgstr "应用已卸载。"
|
||||||
|
|
||||||
#: plinth/setup.py:451
|
#: plinth/setup.py:451
|
||||||
msgid "Updating app packages"
|
msgid "Updating app packages"
|
||||||
@ -7748,53 +7729,50 @@ msgstr ""
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr "到 %(box_name)s 端口"
|
msgstr "到 %(box_name)s 端口"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr "应用程序已安装。"
|
msgstr "应用程序已安装。"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr "安装此应用程序?"
|
msgstr "安装此应用程序?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr "此应用程序需要一次更新。立即更新?"
|
msgstr "此应用程序需要一次更新。立即更新?"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr "此应用程序目前在您的发行版中不可用。"
|
msgstr "此应用程序目前在您的发行版中不可用。"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
"removed if you proceed:"
|
"removed if you proceed:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr "安装"
|
msgstr "安装"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "更新"
|
msgstr "更新"
|
||||||
|
|
||||||
#: plinth/templates/toolbar.html:39 plinth/templates/toolbar.html:40
|
#: plinth/templates/toolbar.html:39 plinth/templates/toolbar.html:40
|
||||||
#: plinth/templates/uninstall.html:36
|
#: plinth/templates/uninstall.html:36
|
||||||
#, fuzzy
|
|
||||||
#| msgid "Install"
|
|
||||||
msgid "Uninstall"
|
msgid "Uninstall"
|
||||||
msgstr "安装"
|
msgstr "卸载"
|
||||||
|
|
||||||
#: plinth/templates/uninstall.html:11
|
#: plinth/templates/uninstall.html:11
|
||||||
#, fuzzy, python-format
|
#, python-format
|
||||||
#| msgid "Edit User <em>%(username)s</em>"
|
|
||||||
msgid "Uninstall App <em>%(app_name)s</em>?"
|
msgid "Uninstall App <em>%(app_name)s</em>?"
|
||||||
msgstr "编辑用户 <em>%(username)s<em></em></em>"
|
msgstr "卸载应用 <em>%(app_name)s</em>?"
|
||||||
|
|
||||||
#: plinth/templates/uninstall.html:17
|
#: plinth/templates/uninstall.html:17
|
||||||
msgid "Uninstalling an app is an exprimental feature."
|
msgid "Uninstalling an app is an exprimental feature."
|
||||||
|
|||||||
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-29 21:10-0400\n"
|
"POT-Creation-Date: 2022-09-12 20:36-0400\n"
|
||||||
"PO-Revision-Date: 2021-12-23 12:50+0000\n"
|
"PO-Revision-Date: 2021-12-23 12:50+0000\n"
|
||||||
"Last-Translator: pesder <j_h_liau@yahoo.com.tw>\n"
|
"Last-Translator: pesder <j_h_liau@yahoo.com.tw>\n"
|
||||||
"Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/"
|
"Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/"
|
||||||
@ -419,7 +419,7 @@ msgid "{box_name} storage"
|
|||||||
msgstr "{box_name} 儲存空間"
|
msgstr "{box_name} 儲存空間"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups.html:17
|
#: plinth/modules/backups/templates/backups.html:17
|
||||||
#: plinth/modules/backups/views.py:113
|
#: plinth/modules/backups/views.py:116
|
||||||
msgid "Create a new backup"
|
msgid "Create a new backup"
|
||||||
msgstr "建立一個新的備份檔"
|
msgstr "建立一個新的備份檔"
|
||||||
|
|
||||||
@ -474,7 +474,7 @@ msgid "Create Location"
|
|||||||
msgstr "建立儲存路徑"
|
msgstr "建立儲存路徑"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
#: plinth/modules/backups/templates/backups_add_repository.html:19
|
||||||
#: plinth/modules/gitweb/views.py:52
|
#: plinth/modules/gitweb/views.py:54
|
||||||
msgid "Create Repository"
|
msgid "Create Repository"
|
||||||
msgstr "建立儲存庫"
|
msgstr "建立儲存庫"
|
||||||
|
|
||||||
@ -491,19 +491,6 @@ msgstr "時間"
|
|||||||
msgid "Delete Archive %(name)s"
|
msgid "Delete Archive %(name)s"
|
||||||
msgstr "刪除備份檔 %(name)s"
|
msgstr "刪除備份檔 %(name)s"
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_form.html:20
|
|
||||||
#: plinth/modules/backups/templates/backups_schedule.html:19
|
|
||||||
#: plinth/modules/bepasty/templates/bepasty_add.html:20
|
|
||||||
#: plinth/modules/gitweb/templates/gitweb_create_edit.html:20
|
|
||||||
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
|
||||||
#: plinth/modules/networks/templates/network_topology_update.html:18
|
|
||||||
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
|
||||||
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
|
||||||
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
|
||||||
#: plinth/templates/form.html:19
|
|
||||||
msgid "Submit"
|
|
||||||
msgstr "送出"
|
|
||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:19
|
#: plinth/modules/backups/templates/backups_repository.html:19
|
||||||
msgid "This repository is encrypted"
|
msgid "This repository is encrypted"
|
||||||
msgstr "此儲存庫已加密"
|
msgstr "此儲存庫已加密"
|
||||||
@ -530,7 +517,7 @@ msgstr "下載"
|
|||||||
|
|
||||||
#: plinth/modules/backups/templates/backups_repository.html:87
|
#: plinth/modules/backups/templates/backups_repository.html:87
|
||||||
#: plinth/modules/backups/templates/backups_restore.html:27
|
#: plinth/modules/backups/templates/backups_restore.html:27
|
||||||
#: plinth/modules/backups/views.py:208
|
#: plinth/modules/backups/views.py:211
|
||||||
msgid "Restore"
|
msgid "Restore"
|
||||||
msgstr "備份還原"
|
msgstr "備份還原"
|
||||||
|
|
||||||
@ -631,99 +618,99 @@ msgstr ""
|
|||||||
msgid "Verify Host"
|
msgid "Verify Host"
|
||||||
msgstr "校驗主機"
|
msgstr "校驗主機"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:57
|
#: plinth/modules/backups/views.py:59
|
||||||
msgid "Backup schedule updated."
|
msgid "Backup schedule updated."
|
||||||
msgstr "備份排程已更新。"
|
msgstr "備份排程已更新。"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:76
|
#: plinth/modules/backups/views.py:78
|
||||||
msgid "Schedule Backups"
|
msgid "Schedule Backups"
|
||||||
msgstr "排程備份"
|
msgstr "排程備份"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:108
|
#: plinth/modules/backups/views.py:111
|
||||||
msgid "Archive created."
|
msgid "Archive created."
|
||||||
msgstr "封存已建立。"
|
msgstr "封存已建立。"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:136
|
#: plinth/modules/backups/views.py:139
|
||||||
msgid "Delete Archive"
|
msgid "Delete Archive"
|
||||||
msgstr "刪除封存"
|
msgstr "刪除封存"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:148
|
#: plinth/modules/backups/views.py:151
|
||||||
msgid "Archive deleted."
|
msgid "Archive deleted."
|
||||||
msgstr "封存已刪除。"
|
msgstr "封存已刪除。"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:161
|
#: plinth/modules/backups/views.py:164
|
||||||
msgid "Upload and restore a backup"
|
msgid "Upload and restore a backup"
|
||||||
msgstr "上傳和恢復備份檔"
|
msgstr "上傳和恢復備份檔"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:196
|
#: plinth/modules/backups/views.py:199
|
||||||
msgid "Restored files from backup."
|
msgid "Restored files from backup."
|
||||||
msgstr "從備份中恢復檔案。"
|
msgstr "從備份中恢復檔案。"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:224
|
#: plinth/modules/backups/views.py:227
|
||||||
msgid "No backup file found."
|
msgid "No backup file found."
|
||||||
msgstr "沒有找到備份檔。"
|
msgstr "沒有找到備份檔。"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:232
|
#: plinth/modules/backups/views.py:235
|
||||||
msgid "Restore from uploaded file"
|
msgid "Restore from uploaded file"
|
||||||
msgstr "從上傳的檔案中恢復"
|
msgstr "從上傳的檔案中恢復"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:291
|
#: plinth/modules/backups/views.py:294
|
||||||
msgid "No additional disks available to add a repository."
|
msgid "No additional disks available to add a repository."
|
||||||
msgstr "無多餘的磁碟可取得用以新增資料庫。"
|
msgstr "無多餘的磁碟可取得用以新增資料庫。"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:299
|
#: plinth/modules/backups/views.py:302
|
||||||
msgid "Create backup repository"
|
msgid "Create backup repository"
|
||||||
msgstr "建立備份資料庫"
|
msgstr "建立備份資料庫"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:326
|
#: plinth/modules/backups/views.py:329
|
||||||
msgid "Create remote backup repository"
|
msgid "Create remote backup repository"
|
||||||
msgstr "建立遠端備份資料庫"
|
msgstr "建立遠端備份資料庫"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:346
|
#: plinth/modules/backups/views.py:349
|
||||||
msgid "Added new remote SSH repository."
|
msgid "Added new remote SSH repository."
|
||||||
msgstr "新增遠端 SSH 資料庫。"
|
msgstr "新增遠端 SSH 資料庫。"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:368
|
#: plinth/modules/backups/views.py:371
|
||||||
msgid "Verify SSH hostkey"
|
msgid "Verify SSH hostkey"
|
||||||
msgstr "校驗 SSH 主機密鑰"
|
msgstr "校驗 SSH 主機密鑰"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:394
|
#: plinth/modules/backups/views.py:397
|
||||||
msgid "SSH host already verified."
|
msgid "SSH host already verified."
|
||||||
msgstr "SSH 主機已驗證。"
|
msgstr "SSH 主機已驗證。"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:404
|
#: plinth/modules/backups/views.py:407
|
||||||
msgid "SSH host verified."
|
msgid "SSH host verified."
|
||||||
msgstr "SSH 主機較驗成功。"
|
msgstr "SSH 主機較驗成功。"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:419
|
#: plinth/modules/backups/views.py:422
|
||||||
msgid "SSH host public key could not be verified."
|
msgid "SSH host public key could not be verified."
|
||||||
msgstr "SSH 主機公鑰無法被校驗。"
|
msgstr "SSH 主機公鑰無法被校驗。"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:421
|
#: plinth/modules/backups/views.py:424
|
||||||
msgid "Authentication to remote server failed."
|
msgid "Authentication to remote server failed."
|
||||||
msgstr "俺端主機認證失敗。"
|
msgstr "俺端主機認證失敗。"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:423
|
#: plinth/modules/backups/views.py:426
|
||||||
msgid "Error establishing connection to server: {}"
|
msgid "Error establishing connection to server: {}"
|
||||||
msgstr "建立連絡到伺服器時發生錯誤︰{}"
|
msgstr "建立連絡到伺服器時發生錯誤︰{}"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:434
|
#: plinth/modules/backups/views.py:437
|
||||||
msgid "Repository removed."
|
msgid "Repository removed."
|
||||||
msgstr "資料庫已移除。"
|
msgstr "資料庫已移除。"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:448
|
#: plinth/modules/backups/views.py:451
|
||||||
msgid "Remove Repository"
|
msgid "Remove Repository"
|
||||||
msgstr "移除資料庫"
|
msgstr "移除資料庫"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:457
|
#: plinth/modules/backups/views.py:460
|
||||||
msgid "Repository removed. Backups were not deleted."
|
msgid "Repository removed. Backups were not deleted."
|
||||||
msgstr "資料庫已移除。 備份並未被刪除。"
|
msgstr "資料庫已移除。 備份並未被刪除。"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:467
|
#: plinth/modules/backups/views.py:470
|
||||||
msgid "Unmounting failed!"
|
msgid "Unmounting failed!"
|
||||||
msgstr "取消掛載失敗!"
|
msgstr "取消掛載失敗!"
|
||||||
|
|
||||||
#: plinth/modules/backups/views.py:482 plinth/modules/backups/views.py:486
|
#: plinth/modules/backups/views.py:485 plinth/modules/backups/views.py:489
|
||||||
msgid "Mounting failed"
|
msgid "Mounting failed"
|
||||||
msgstr "掛載失敗"
|
msgstr "掛載失敗"
|
||||||
|
|
||||||
@ -888,20 +875,20 @@ msgid "Configuration updated."
|
|||||||
msgstr "配置已更新。"
|
msgstr "配置已更新。"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
#: plinth/modules/bepasty/views.py:93 plinth/modules/email/views.py:48
|
||||||
#: plinth/modules/gitweb/views.py:119 plinth/modules/searx/views.py:43
|
#: plinth/modules/gitweb/views.py:121 plinth/modules/searx/views.py:43
|
||||||
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
#: plinth/modules/searx/views.py:54 plinth/modules/zoph/views.py:74
|
||||||
msgid "An error occurred during configuration."
|
msgid "An error occurred during configuration."
|
||||||
msgstr "設置過程中發生錯誤。"
|
msgstr "設置過程中發生錯誤。"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:104
|
#: plinth/modules/bepasty/views.py:105
|
||||||
msgid "Password added."
|
msgid "Password added."
|
||||||
msgstr "密碼已新增。"
|
msgstr "密碼已新增。"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:109
|
#: plinth/modules/bepasty/views.py:110
|
||||||
msgid "Add Password"
|
msgid "Add Password"
|
||||||
msgstr "新增密碼"
|
msgstr "新增密碼"
|
||||||
|
|
||||||
#: plinth/modules/bepasty/views.py:126
|
#: plinth/modules/bepasty/views.py:127
|
||||||
msgid "Password deleted."
|
msgid "Password deleted."
|
||||||
msgstr "密碼已刪除。"
|
msgstr "密碼已刪除。"
|
||||||
|
|
||||||
@ -1097,12 +1084,12 @@ msgstr "圖書已建立。"
|
|||||||
msgid "An error occurred while creating the library."
|
msgid "An error occurred while creating the library."
|
||||||
msgstr "建立圖書館時發生錯誤。"
|
msgstr "建立圖書館時發生錯誤。"
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:141
|
#: plinth/modules/calibre/views.py:66 plinth/modules/gitweb/views.py:143
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{name} deleted."
|
msgid "{name} deleted."
|
||||||
msgstr "{name} 已刪除。"
|
msgstr "{name} 已刪除。"
|
||||||
|
|
||||||
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:145
|
#: plinth/modules/calibre/views.py:70 plinth/modules/gitweb/views.py:147
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Could not delete {name}: {error}"
|
msgid "Could not delete {name}: {error}"
|
||||||
msgstr "無法刪除 {name}: {error}"
|
msgstr "無法刪除 {name}: {error}"
|
||||||
@ -2283,19 +2270,19 @@ msgstr ""
|
|||||||
msgid "Delete this repository permanently?"
|
msgid "Delete this repository permanently?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:47
|
#: plinth/modules/gitweb/views.py:49
|
||||||
msgid "Repository created."
|
msgid "Repository created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:71
|
#: plinth/modules/gitweb/views.py:73
|
||||||
msgid "An error occurred while creating the repository."
|
msgid "An error occurred while creating the repository."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:86
|
#: plinth/modules/gitweb/views.py:88
|
||||||
msgid "Repository edited."
|
msgid "Repository edited."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/gitweb/views.py:91
|
#: plinth/modules/gitweb/views.py:93
|
||||||
msgid "Edit repository"
|
msgid "Edit repository"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4095,6 +4082,15 @@ msgstr ""
|
|||||||
msgid "Update..."
|
msgid "Update..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/networks/templates/internet_connectivity_type.html:18
|
||||||
|
#: plinth/modules/networks/templates/network_topology_update.html:18
|
||||||
|
#: plinth/modules/networks/templates/router_configuration_update.html:19
|
||||||
|
#: plinth/modules/pagekite/templates/pagekite_custom_services.html:28
|
||||||
|
#: plinth/modules/sharing/templates/sharing_add_edit.html:20
|
||||||
|
#: plinth/templates/form.html:19
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr "送出"
|
||||||
|
|
||||||
#: plinth/modules/networks/templates/network_topology_content.html:10
|
#: plinth/modules/networks/templates/network_topology_content.html:10
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "How is Your %(box_name)s Connected to the Internet?"
|
msgid "How is Your %(box_name)s Connected to the Internet?"
|
||||||
@ -5064,18 +5060,22 @@ msgid "Android Samba Client"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:27
|
#: plinth/modules/samba/manifest.py:27
|
||||||
|
msgid "Ghost Commander"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: plinth/modules/samba/manifest.py:36
|
||||||
msgid "Ghost Commander - Samba plugin"
|
msgid "Ghost Commander - Samba plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:41
|
#: plinth/modules/samba/manifest.py:45
|
||||||
msgid "VLC media player"
|
msgid "VLC media player"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:60
|
#: plinth/modules/samba/manifest.py:64
|
||||||
msgid "GNOME Files"
|
msgid "GNOME Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/manifest.py:72
|
#: plinth/modules/samba/manifest.py:76
|
||||||
msgid "Dolphin"
|
msgid "Dolphin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5129,36 +5129,36 @@ msgstr ""
|
|||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:33
|
#: plinth/modules/samba/views.py:34
|
||||||
msgid "FreedomBox OS disk"
|
msgid "FreedomBox OS disk"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146
|
#: plinth/modules/samba/views.py:60 plinth/modules/storage/forms.py:146
|
||||||
msgid "Open Share"
|
msgid "Open Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:63 plinth/modules/storage/forms.py:144
|
#: plinth/modules/samba/views.py:64 plinth/modules/storage/forms.py:144
|
||||||
msgid "Group Share"
|
msgid "Group Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:67
|
#: plinth/modules/samba/views.py:68
|
||||||
msgid "Home Share"
|
msgid "Home Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:102
|
#: plinth/modules/samba/views.py:103
|
||||||
msgid "Share enabled."
|
msgid "Share enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:107
|
#: plinth/modules/samba/views.py:108
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error enabling share: {error_message}"
|
msgid "Error enabling share: {error_message}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:112
|
#: plinth/modules/samba/views.py:113
|
||||||
msgid "Share disabled."
|
msgid "Share disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/modules/samba/views.py:117
|
#: plinth/modules/samba/views.py:118
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Error disabling share: {error_message}"
|
msgid "Error disabling share: {error_message}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -7590,38 +7590,38 @@ msgstr ""
|
|||||||
msgid "To %(box_name)s Ports"
|
msgid "To %(box_name)s Ports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:18
|
#: plinth/templates/setup.html:19
|
||||||
msgid "Application installed."
|
msgid "Application installed."
|
||||||
msgstr "應用已完成安裝。"
|
msgstr "應用已完成安裝。"
|
||||||
|
|
||||||
#: plinth/templates/setup.html:24
|
#: plinth/templates/setup.html:26
|
||||||
msgid "Install this application?"
|
msgid "Install this application?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:28
|
#: plinth/templates/setup.html:30
|
||||||
msgid "This application needs an update. Update now?"
|
msgid "This application needs an update. Update now?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:39
|
#: plinth/templates/setup.html:41
|
||||||
msgid "This application is currently not available in your distribution."
|
msgid "This application is currently not available in your distribution."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:43
|
#: plinth/templates/setup.html:45
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:48
|
#: plinth/templates/setup.html:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
"<strong>Conflicting Packages:</strong> Some packages installed on the system "
|
||||||
"conflict with the installation of this app. The following packages will be "
|
"conflict with the installation of this app. The following packages will be "
|
||||||
"removed if you proceed:"
|
"removed if you proceed:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:64
|
#: plinth/templates/setup.html:66
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plinth/templates/setup.html:66
|
#: plinth/templates/setup.html:68
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -27,7 +27,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<form class="form" method="post">
|
<form class="form form-delete" method="post">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
|
|
||||||
<input type="submit" class="btn btn-danger"
|
<input type="submit" class="btn btn-danger"
|
||||||
|
|||||||
@ -1,23 +0,0 @@
|
|||||||
{% extends "base.html" %}
|
|
||||||
{% comment %}
|
|
||||||
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
||||||
{% endcomment %}
|
|
||||||
|
|
||||||
{% load bootstrap %}
|
|
||||||
{% load i18n %}
|
|
||||||
{% load static %}
|
|
||||||
|
|
||||||
{% block content %}
|
|
||||||
|
|
||||||
<h3>{{ title }}</h3>
|
|
||||||
|
|
||||||
<form class="form" method="post">
|
|
||||||
{% csrf_token %}
|
|
||||||
|
|
||||||
{{ form|bootstrap }}
|
|
||||||
|
|
||||||
<input type="submit" class="btn btn-primary"
|
|
||||||
value="{% trans "Submit" %}"/>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
{% endblock %}
|
|
||||||
@ -17,7 +17,7 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<form class="form" method="post">
|
<form class="form form-restore" method="post">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
|
|
||||||
{{ form|bootstrap }}
|
{{ form|bootstrap }}
|
||||||
|
|||||||
@ -1,21 +0,0 @@
|
|||||||
{% extends "base.html" %}
|
|
||||||
{% comment %}
|
|
||||||
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
||||||
{% endcomment %}
|
|
||||||
|
|
||||||
{% load bootstrap %}
|
|
||||||
{% load i18n %}
|
|
||||||
{% load static %}
|
|
||||||
|
|
||||||
{% block content %}
|
|
||||||
<h2>{{ title }}</h2>
|
|
||||||
|
|
||||||
<form class="form" method="post">
|
|
||||||
{% csrf_token %}
|
|
||||||
|
|
||||||
{{ form|bootstrap }}
|
|
||||||
|
|
||||||
<input type="submit" class="btn btn-primary"
|
|
||||||
value="{% trans 'Submit' %}" />
|
|
||||||
</form>
|
|
||||||
{% endblock %}
|
|
||||||
@ -32,7 +32,7 @@
|
|||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<form class="form" enctype="multipart/form-data" method="post">
|
<form class="form form-upload" enctype="multipart/form-data" method="post">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
|
|
||||||
{{ form|bootstrap }}
|
{{ form|bootstrap }}
|
||||||
|
|||||||
@ -150,7 +150,7 @@ def _backup_schedule_set(browser, enable, daily, weekly, monthly, run_at,
|
|||||||
functional.eventually(browser.find_by_css, args=['.select-all'])
|
functional.eventually(browser.find_by_css, args=['.select-all'])
|
||||||
browser.find_by_css('.select-all').first.check()
|
browser.find_by_css('.select-all').first.check()
|
||||||
browser.find_by_css(f'input[value="{without_app}"]').first.uncheck()
|
browser.find_by_css(f'input[value="{without_app}"]').first.uncheck()
|
||||||
functional.submit(browser)
|
functional.submit(browser, form_class='form-backups_schedule')
|
||||||
|
|
||||||
|
|
||||||
def _download_file_logged_in(browser, url, suffix=''):
|
def _download_file_logged_in(browser, url, suffix=''):
|
||||||
@ -186,8 +186,8 @@ def _upload_and_restore(browser, app_name, downloaded_file_path):
|
|||||||
fileinput = browser.driver.find_element_by_id('id_backups-file')
|
fileinput = browser.driver.find_element_by_id('id_backups-file')
|
||||||
fileinput.send_keys(downloaded_file_path)
|
fileinput.send_keys(downloaded_file_path)
|
||||||
# submit upload form
|
# submit upload form
|
||||||
functional.submit(browser)
|
functional.submit(browser, form_class='form-upload')
|
||||||
# submit restore form
|
# submit restore form
|
||||||
with functional.wait_for_page_update(browser,
|
with functional.wait_for_page_update(browser,
|
||||||
expected_url='/plinth/sys/backups/'):
|
expected_url='/plinth/sys/backups/'):
|
||||||
functional.submit(browser)
|
functional.submit(browser, form_class='form-restore')
|
||||||
|
|||||||
@ -50,9 +50,11 @@ class BackupsView(AppView):
|
|||||||
|
|
||||||
|
|
||||||
class ScheduleView(SuccessMessageMixin, FormView):
|
class ScheduleView(SuccessMessageMixin, FormView):
|
||||||
|
"""View to edit a backup schedule."""
|
||||||
|
|
||||||
form_class = forms.ScheduleForm
|
form_class = forms.ScheduleForm
|
||||||
prefix = 'backups_schedule'
|
prefix = 'backups_schedule'
|
||||||
template_name = 'backups_schedule.html'
|
template_name = 'form.html'
|
||||||
success_url = reverse_lazy('backups:index')
|
success_url = reverse_lazy('backups:index')
|
||||||
success_message = gettext_lazy('Backup schedule updated.')
|
success_message = gettext_lazy('Backup schedule updated.')
|
||||||
|
|
||||||
@ -101,9 +103,10 @@ class ScheduleView(SuccessMessageMixin, FormView):
|
|||||||
|
|
||||||
class CreateArchiveView(SuccessMessageMixin, FormView):
|
class CreateArchiveView(SuccessMessageMixin, FormView):
|
||||||
"""View to create a new archive."""
|
"""View to create a new archive."""
|
||||||
|
|
||||||
form_class = forms.CreateArchiveForm
|
form_class = forms.CreateArchiveForm
|
||||||
prefix = 'backups'
|
prefix = 'backups'
|
||||||
template_name = 'backups_form.html'
|
template_name = 'form.html'
|
||||||
success_url = reverse_lazy('backups:index')
|
success_url = reverse_lazy('backups:index')
|
||||||
success_message = gettext_lazy('Archive created.')
|
success_message = gettext_lazy('Archive created.')
|
||||||
|
|
||||||
|
|||||||
@ -1,23 +0,0 @@
|
|||||||
{% extends "base.html" %}
|
|
||||||
{% comment %}
|
|
||||||
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
||||||
{% endcomment %}
|
|
||||||
|
|
||||||
{% load bootstrap %}
|
|
||||||
{% load i18n %}
|
|
||||||
{% load static %}
|
|
||||||
|
|
||||||
{% block content %}
|
|
||||||
|
|
||||||
<h3>{{ title }}</h3>
|
|
||||||
|
|
||||||
<form class="form form-add" method="post">
|
|
||||||
{% csrf_token %}
|
|
||||||
|
|
||||||
{{ form|bootstrap }}
|
|
||||||
|
|
||||||
<input type="submit" class="btn btn-primary"
|
|
||||||
value="{% trans "Submit" %}"/>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
{% endblock %}
|
|
||||||
@ -73,7 +73,7 @@ def _add_password(browser):
|
|||||||
browser.find_by_css('#id_bepasty-permissions input[value="{}"]'.format(
|
browser.find_by_css('#id_bepasty-permissions input[value="{}"]'.format(
|
||||||
permission)).check()
|
permission)).check()
|
||||||
browser.fill('bepasty-comment', 'bepasty functional test')
|
browser.fill('bepasty-comment', 'bepasty functional test')
|
||||||
functional.submit(browser, form_class='form-add')
|
functional.submit(browser, form_class='form-bepasty')
|
||||||
|
|
||||||
|
|
||||||
def _remove_all_passwords(browser):
|
def _remove_all_passwords(browser):
|
||||||
@ -81,7 +81,7 @@ def _remove_all_passwords(browser):
|
|||||||
while True:
|
while True:
|
||||||
remove_button = browser.find_by_css('.password-remove')
|
remove_button = browser.find_by_css('.password-remove')
|
||||||
if remove_button:
|
if remove_button:
|
||||||
functional.submit(browser, remove_button)
|
functional.submit(browser, element=remove_button)
|
||||||
else:
|
else:
|
||||||
break
|
break
|
||||||
|
|
||||||
@ -95,7 +95,7 @@ def _can_login(browser, password):
|
|||||||
_logout(browser)
|
_logout(browser)
|
||||||
browser.fill('token', password)
|
browser.fill('token', password)
|
||||||
login = browser.find_by_xpath('//form//button')
|
login = browser.find_by_xpath('//form//button')
|
||||||
functional.submit(browser, login, '/bepasty')
|
functional.submit(browser, element=login)
|
||||||
|
|
||||||
return bool(browser.find_by_value('Logout'))
|
return bool(browser.find_by_value('Logout'))
|
||||||
|
|
||||||
|
|||||||
@ -97,9 +97,10 @@ class BepastyView(AppView):
|
|||||||
|
|
||||||
class AddPasswordView(SuccessMessageMixin, FormView):
|
class AddPasswordView(SuccessMessageMixin, FormView):
|
||||||
"""View to add a new password."""
|
"""View to add a new password."""
|
||||||
|
|
||||||
form_class = AddPasswordForm
|
form_class = AddPasswordForm
|
||||||
prefix = 'bepasty'
|
prefix = 'bepasty'
|
||||||
template_name = 'bepasty_add.html'
|
template_name = 'form.html'
|
||||||
success_url = reverse_lazy('bepasty:index')
|
success_url = reverse_lazy('bepasty:index')
|
||||||
success_message = _('Password added.')
|
success_message = _('Password added.')
|
||||||
|
|
||||||
|
|||||||
@ -20,7 +20,7 @@
|
|||||||
{% endblocktrans %}
|
{% endblocktrans %}
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<form class="form" method="post">
|
<form class="form form-delete" method="post">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
|
|
||||||
<input type="submit" class="btn btn-md btn-danger"
|
<input type="submit" class="btn btn-md btn-danger"
|
||||||
|
|||||||
@ -62,7 +62,7 @@ def _add_library(browser, name):
|
|||||||
browser.links.find_by_href(
|
browser.links.find_by_href(
|
||||||
'/plinth/apps/calibre/library/create/').first.click()
|
'/plinth/apps/calibre/library/create/').first.click()
|
||||||
browser.find_by_id('id_calibre-name').fill(name)
|
browser.find_by_id('id_calibre-name').fill(name)
|
||||||
functional.submit(browser)
|
functional.submit(browser, form_class='form-calibre')
|
||||||
|
|
||||||
|
|
||||||
def _delete_library(browser, name, ignore_missing=False):
|
def _delete_library(browser, name, ignore_missing=False):
|
||||||
@ -77,7 +77,7 @@ def _delete_library(browser, name, ignore_missing=False):
|
|||||||
raise ValueError('Library not found')
|
raise ValueError('Library not found')
|
||||||
|
|
||||||
link.first.click()
|
link.first.click()
|
||||||
functional.submit(browser)
|
functional.submit(browser, form_class='form-delete')
|
||||||
|
|
||||||
|
|
||||||
def _is_library_available(browser, name):
|
def _is_library_available(browser, name):
|
||||||
|
|||||||
@ -1,9 +1,8 @@
|
|||||||
# SPDX-License-Identifier: AGPL-3.0-or-later
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
"""
|
"""Functional, browser based tests for ejabberd app."""
|
||||||
Functional, browser based tests for ejabberd app.
|
|
||||||
"""
|
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from plinth.tests import functional
|
from plinth.tests import functional
|
||||||
|
|
||||||
pytestmark = [pytest.mark.apps, pytest.mark.ejabberd]
|
pytestmark = [pytest.mark.apps, pytest.mark.ejabberd]
|
||||||
@ -20,7 +19,9 @@ class TestEjabberdApp(functional.BaseAppTests):
|
|||||||
def fixture_background(self, session_browser):
|
def fixture_background(self, session_browser):
|
||||||
"""Login, install, and enable the app."""
|
"""Login, install, and enable the app."""
|
||||||
functional.login(session_browser)
|
functional.login(session_browser)
|
||||||
|
functional.install(session_browser, 'jsxc')
|
||||||
functional.install(session_browser, self.app_name)
|
functional.install(session_browser, self.app_name)
|
||||||
|
functional.app_enable(session_browser, 'jsxc')
|
||||||
functional.app_enable(session_browser, self.app_name)
|
functional.app_enable(session_browser, self.app_name)
|
||||||
yield
|
yield
|
||||||
functional.login(session_browser)
|
functional.login(session_browser)
|
||||||
|
|||||||
@ -86,11 +86,9 @@ class FirewallApp(app_module.App):
|
|||||||
if 'firewalld' not in packages:
|
if 'firewalld' not in packages:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
# firewalld 0.6.x -> 0.7.x, 0.6.x -> 0.8.x, 0.7.x -> 0.8.x, 0.9.x ->
|
# Allow upgrade from any version to 1.2.*
|
||||||
# 1.0.x
|
|
||||||
package = packages['firewalld']
|
package = packages['firewalld']
|
||||||
if Version(package['current_version']) >= Version('1.0') or \
|
if Version(package['new_version']) > Version('1.3~'):
|
||||||
Version(package['new_version']) < Version('0.7'):
|
|
||||||
return False
|
return False
|
||||||
|
|
||||||
install(['firewalld'], force_configuration='new')
|
install(['firewalld'], force_configuration='new')
|
||||||
|
|||||||
@ -17,7 +17,7 @@ no-brand
|
|||||||
src="{% static 'theme/img/freedombox-logo-standard.svg' %}"/>
|
src="{% static 'theme/img/freedombox-logo-standard.svg' %}"/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<form class="form text-center" method="post">
|
<form class="form form-start text-center" method="post">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
|
|
||||||
{% if show_wizard_password_prompt %}
|
{% if show_wizard_password_prompt %}
|
||||||
|
|||||||
@ -1,23 +0,0 @@
|
|||||||
{% extends "base.html" %}
|
|
||||||
{% comment %}
|
|
||||||
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
||||||
{% endcomment %}
|
|
||||||
|
|
||||||
{% load bootstrap %}
|
|
||||||
{% load i18n %}
|
|
||||||
{% load static %}
|
|
||||||
|
|
||||||
{% block content %}
|
|
||||||
|
|
||||||
<h3>{{ title }}</h3>
|
|
||||||
|
|
||||||
<form class="form" method="post">
|
|
||||||
{% csrf_token %}
|
|
||||||
|
|
||||||
{{ form|bootstrap }}
|
|
||||||
|
|
||||||
<input type="submit" class="btn btn-primary"
|
|
||||||
value="{% trans "Submit" %}"/>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
{% endblock %}
|
|
||||||
@ -20,7 +20,7 @@
|
|||||||
{% endblocktrans %}
|
{% endblocktrans %}
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<form class="form" method="post">
|
<form class="form form-delete" method="post">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
|
|
||||||
<input type="submit" class="btn btn-md btn-danger"
|
<input type="submit" class="btn btn-md btn-danger"
|
||||||
|
|||||||
@ -137,7 +137,7 @@ def _create_repo(browser, repo, access=None, ok_if_exists=False):
|
|||||||
browser.find_by_id('id_gitweb-is_private').check()
|
browser.find_by_id('id_gitweb-is_private').check()
|
||||||
elif access == 'public':
|
elif access == 'public':
|
||||||
browser.find_by_id('id_gitweb-is_private').uncheck()
|
browser.find_by_id('id_gitweb-is_private').uncheck()
|
||||||
functional.submit(browser)
|
functional.submit(browser, form_class='form-gitweb')
|
||||||
elif not ok_if_exists:
|
elif not ok_if_exists:
|
||||||
assert False, 'Repo already exists.'
|
assert False, 'Repo already exists.'
|
||||||
|
|
||||||
@ -171,7 +171,7 @@ def _delete_repo(browser, repo, ignore_missing=False):
|
|||||||
'/plinth/apps/gitweb/{}/delete/'.format(repo))
|
'/plinth/apps/gitweb/{}/delete/'.format(repo))
|
||||||
if delete_link or not ignore_missing:
|
if delete_link or not ignore_missing:
|
||||||
delete_link.first.click()
|
delete_link.first.click()
|
||||||
functional.submit(browser)
|
functional.submit(browser, form_class='form-delete')
|
||||||
|
|
||||||
|
|
||||||
def _edit_repo_metadata(browser, repo, metadata):
|
def _edit_repo_metadata(browser, repo, metadata):
|
||||||
@ -186,7 +186,7 @@ def _edit_repo_metadata(browser, repo, metadata):
|
|||||||
browser.find_by_id('id_gitweb-is_private').check()
|
browser.find_by_id('id_gitweb-is_private').check()
|
||||||
else:
|
else:
|
||||||
browser.find_by_id('id_gitweb-is_private').uncheck()
|
browser.find_by_id('id_gitweb-is_private').uncheck()
|
||||||
functional.submit(browser)
|
functional.submit(browser, form_class='form-gitweb')
|
||||||
|
|
||||||
|
|
||||||
def _get_gitweb_site_default_repo_branch(browser, repo):
|
def _get_gitweb_site_default_repo_branch(browser, repo):
|
||||||
@ -306,7 +306,7 @@ def _set_default_branch(browser, repo, branch):
|
|||||||
browser.links.find_by_href(
|
browser.links.find_by_href(
|
||||||
'/plinth/apps/gitweb/{}/edit/'.format(repo)).first.click()
|
'/plinth/apps/gitweb/{}/edit/'.format(repo)).first.click()
|
||||||
browser.find_by_id('id_gitweb-default_branch').select(branch)
|
browser.find_by_id('id_gitweb-default_branch').select(branch)
|
||||||
functional.submit(browser)
|
functional.submit(browser, form_class='form-gitweb')
|
||||||
|
|
||||||
|
|
||||||
def _set_repo_access(browser, repo, access):
|
def _set_repo_access(browser, repo, access):
|
||||||
@ -318,7 +318,7 @@ def _set_repo_access(browser, repo, access):
|
|||||||
browser.find_by_id('id_gitweb-is_private').check()
|
browser.find_by_id('id_gitweb-is_private').check()
|
||||||
else:
|
else:
|
||||||
browser.find_by_id('id_gitweb-is_private').uncheck()
|
browser.find_by_id('id_gitweb-is_private').uncheck()
|
||||||
functional.submit(browser)
|
functional.submit(browser, form_class='form-gitweb')
|
||||||
|
|
||||||
|
|
||||||
def _site_repo_exists(browser, repo):
|
def _site_repo_exists(browser, repo):
|
||||||
|
|||||||
@ -33,7 +33,9 @@ class GitwebAppView(views.AppView):
|
|||||||
repos = gitweb.get_repo_list()
|
repos = gitweb.get_repo_list()
|
||||||
context['repos'] = repos
|
context['repos'] = repos
|
||||||
context['cloning'] = any('clone_progress' in repo for repo in repos)
|
context['cloning'] = any('clone_progress' in repo for repo in repos)
|
||||||
context['refresh_page_sec'] = 3 if context['cloning'] else None
|
if context['cloning']:
|
||||||
|
context['refresh_page_sec'] = 3
|
||||||
|
|
||||||
return context
|
return context
|
||||||
|
|
||||||
|
|
||||||
@ -42,7 +44,7 @@ class CreateRepoView(SuccessMessageMixin, FormView):
|
|||||||
|
|
||||||
form_class = CreateRepoForm
|
form_class = CreateRepoForm
|
||||||
prefix = 'gitweb'
|
prefix = 'gitweb'
|
||||||
template_name = 'gitweb_create_edit.html'
|
template_name = 'form.html'
|
||||||
success_url = reverse_lazy('gitweb:index')
|
success_url = reverse_lazy('gitweb:index')
|
||||||
success_message = _('Repository created.')
|
success_message = _('Repository created.')
|
||||||
|
|
||||||
@ -81,7 +83,7 @@ class EditRepoView(SuccessMessageMixin, FormView):
|
|||||||
|
|
||||||
form_class = EditRepoForm
|
form_class = EditRepoForm
|
||||||
prefix = 'gitweb'
|
prefix = 'gitweb'
|
||||||
template_name = 'gitweb_create_edit.html'
|
template_name = 'form.html'
|
||||||
success_url = reverse_lazy('gitweb:index')
|
success_url = reverse_lazy('gitweb:index')
|
||||||
success_message = _('Repository edited.')
|
success_message = _('Repository edited.')
|
||||||
|
|
||||||
|
|||||||
@ -9,7 +9,7 @@
|
|||||||
{% block content %}
|
{% block content %}
|
||||||
<h3>{% trans "Create Wiki or Blog" %}</h3>
|
<h3>{% trans "Create Wiki or Blog" %}</h3>
|
||||||
|
|
||||||
<form class="form" method="post">
|
<form class="form form-create" method="post">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
|
|
||||||
{{ form|bootstrap }}
|
{{ form|bootstrap }}
|
||||||
|
|||||||
@ -22,7 +22,7 @@
|
|||||||
{% endblocktrans %}
|
{% endblocktrans %}
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<form class="form" method="post">
|
<form class="form form-delete" method="post">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
|
|
||||||
<input type="submit" class="btn btn-md btn-danger"
|
<input type="submit" class="btn btn-md btn-danger"
|
||||||
|
|||||||
@ -4,6 +4,7 @@ Functional, browser based tests for ikiwiki app.
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from plinth.tests import functional
|
from plinth.tests import functional
|
||||||
|
|
||||||
pytestmark = [pytest.mark.apps, pytest.mark.ikiwiki]
|
pytestmark = [pytest.mark.apps, pytest.mark.ikiwiki]
|
||||||
@ -39,7 +40,7 @@ def _create_wiki_if_needed(browser):
|
|||||||
functional.config['DEFAULT']['username'])
|
functional.config['DEFAULT']['username'])
|
||||||
browser.find_by_id('id_ikiwiki-admin_password').fill(
|
browser.find_by_id('id_ikiwiki-admin_password').fill(
|
||||||
functional.config['DEFAULT']['password'])
|
functional.config['DEFAULT']['password'])
|
||||||
functional.submit(browser)
|
functional.submit(browser, form_class='form-create')
|
||||||
|
|
||||||
|
|
||||||
def _delete_wiki(browser):
|
def _delete_wiki(browser):
|
||||||
@ -47,7 +48,7 @@ def _delete_wiki(browser):
|
|||||||
functional.nav_to_module(browser, 'ikiwiki')
|
functional.nav_to_module(browser, 'ikiwiki')
|
||||||
browser.links.find_by_href(
|
browser.links.find_by_href(
|
||||||
'/plinth/apps/ikiwiki/wiki/delete/').first.click()
|
'/plinth/apps/ikiwiki/wiki/delete/').first.click()
|
||||||
functional.submit(browser)
|
functional.submit(browser, form_class='form-delete')
|
||||||
|
|
||||||
|
|
||||||
def _wiki_exists(browser):
|
def _wiki_exists(browser):
|
||||||
|
|||||||
@ -24,13 +24,17 @@ clients = [{
|
|||||||
}]
|
}]
|
||||||
}, {
|
}, {
|
||||||
'name':
|
'name':
|
||||||
_('Ghost Commander - Samba plugin'),
|
_('Ghost Commander'),
|
||||||
'platforms': [{
|
'platforms': [{
|
||||||
'type': 'store',
|
'type': 'store',
|
||||||
'os': 'android',
|
'os': 'android',
|
||||||
'store_name': 'f-droid',
|
'store_name': 'f-droid',
|
||||||
'url': store_url('f-droid', 'com.ghostsq.commander.samba')
|
'url': store_url('f-droid', 'com.ghostsq.commander')
|
||||||
}, {
|
}]
|
||||||
|
}, {
|
||||||
|
'name':
|
||||||
|
_('Ghost Commander - Samba plugin'),
|
||||||
|
'platforms': [{
|
||||||
'type': 'store',
|
'type': 'store',
|
||||||
'os': 'android',
|
'os': 'android',
|
||||||
'store_name': 'google-play',
|
'store_name': 'google-play',
|
||||||
|
|||||||
@ -28,11 +28,12 @@ def get_share_mounts():
|
|||||||
|
|
||||||
for mount in storage.get_mounts():
|
for mount in storage.get_mounts():
|
||||||
mount_point = mount['mount_point']
|
mount_point = mount['mount_point']
|
||||||
if mount_point not in ignore_mounts:
|
if mount_point in ignore_mounts or os.path.isfile(mount_point):
|
||||||
basename = os.path.basename(mount_point)
|
continue
|
||||||
mount['name'] = basename or _('FreedomBox OS disk')
|
basename = os.path.basename(mount_point)
|
||||||
mount['share_name_prefix'] = basename or 'disk'
|
mount['name'] = basename or _('FreedomBox OS disk')
|
||||||
mounts.append(mount)
|
mount['share_name_prefix'] = basename or 'disk'
|
||||||
|
mounts.append(mount)
|
||||||
|
|
||||||
return sorted(mounts, key=lambda k: k['mount_point'])
|
return sorted(mounts, key=lambda k: k['mount_point'])
|
||||||
|
|
||||||
|
|||||||
@ -3,9 +3,10 @@
|
|||||||
Functional, browser based tests for shaarli app.
|
Functional, browser based tests for shaarli app.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import pytest
|
|
||||||
import time
|
import time
|
||||||
|
|
||||||
|
import pytest
|
||||||
|
|
||||||
from plinth.tests import functional
|
from plinth.tests import functional
|
||||||
|
|
||||||
pytestmark = [pytest.mark.apps, pytest.mark.shaarli]
|
pytestmark = [pytest.mark.apps, pytest.mark.shaarli]
|
||||||
@ -37,7 +38,9 @@ class TestShaarliApp(functional.BaseAppTests):
|
|||||||
password_field = session_browser.find_by_id('password')
|
password_field = session_browser.find_by_id('password')
|
||||||
password_field.fill(functional.config['DEFAULT']['password'])
|
password_field.fill(functional.config['DEFAULT']['password'])
|
||||||
|
|
||||||
functional.submit(session_browser)
|
button = session_browser.find_by_css(
|
||||||
|
'#installform input[type=submit]')[0]
|
||||||
|
functional.submit(session_browser, element=button)
|
||||||
|
|
||||||
def _shaarli_login(self, session_browser):
|
def _shaarli_login(self, session_browser):
|
||||||
"""Login to shaarli."""
|
"""Login to shaarli."""
|
||||||
|
|||||||
@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
<h3>{{ title }}</h3>
|
<h3>{{ title }}</h3>
|
||||||
|
|
||||||
<form class="form" method="post">
|
<form class="form form-add-edit" method="post">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
|
|
||||||
{{ form|bootstrap }}
|
{{ form|bootstrap }}
|
||||||
|
|||||||
@ -85,7 +85,7 @@ def _add_share(browser, name, path, group):
|
|||||||
browser.fill('sharing-path', path)
|
browser.fill('sharing-path', path)
|
||||||
browser.find_by_css(
|
browser.find_by_css(
|
||||||
'#id_sharing-groups input[value="{}"]'.format(group)).check()
|
'#id_sharing-groups input[value="{}"]'.format(group)).check()
|
||||||
functional.submit(browser)
|
functional.submit(browser, form_class='form-add-edit')
|
||||||
|
|
||||||
|
|
||||||
def _edit_share(browser, old_name, new_name, path, group):
|
def _edit_share(browser, old_name, new_name, path, group):
|
||||||
@ -98,7 +98,7 @@ def _edit_share(browser, old_name, new_name, path, group):
|
|||||||
browser.find_by_css('#id_sharing-groups input').uncheck()
|
browser.find_by_css('#id_sharing-groups input').uncheck()
|
||||||
browser.find_by_css(
|
browser.find_by_css(
|
||||||
'#id_sharing-groups input[value="{}"]'.format(group)).check()
|
'#id_sharing-groups input[value="{}"]'.format(group)).check()
|
||||||
functional.submit(browser)
|
functional.submit(browser, form_class='form-add-edit')
|
||||||
|
|
||||||
|
|
||||||
def _get_share(browser, name):
|
def _get_share(browser, name):
|
||||||
@ -133,7 +133,7 @@ def _make_share_public(browser, name):
|
|||||||
with functional.wait_for_page_update(browser):
|
with functional.wait_for_page_update(browser):
|
||||||
row.find_by_css('.share-edit')[0].click()
|
row.find_by_css('.share-edit')[0].click()
|
||||||
browser.find_by_id('id_sharing-is_public').check()
|
browser.find_by_id('id_sharing-is_public').check()
|
||||||
functional.submit(browser)
|
functional.submit(browser, form_class='form-add-edit')
|
||||||
|
|
||||||
|
|
||||||
def _verify_invalid_share(browser, name):
|
def _verify_invalid_share(browser, name):
|
||||||
|
|||||||
@ -65,17 +65,17 @@ def _delete_all(browser):
|
|||||||
delete_button = browser.find_by_name('delete_selected').first
|
delete_button = browser.find_by_name('delete_selected').first
|
||||||
if not delete_button['disabled']:
|
if not delete_button['disabled']:
|
||||||
browser.find_by_id('select-all').check()
|
browser.find_by_id('select-all').check()
|
||||||
functional.submit(browser, delete_button)
|
functional.submit(browser, element=delete_button)
|
||||||
|
|
||||||
confirm_button = browser.find_by_name('delete_confirm')
|
confirm_button = browser.find_by_name('delete_confirm')
|
||||||
if confirm_button: # Only if redirected to confirm page
|
if confirm_button: # Only if redirected to confirm page
|
||||||
functional.submit(browser, confirm_button)
|
functional.submit(browser, element=confirm_button)
|
||||||
|
|
||||||
|
|
||||||
def _create_snapshot(browser):
|
def _create_snapshot(browser):
|
||||||
functional.visit(browser, '/plinth/sys/snapshot/manage/')
|
functional.visit(browser, '/plinth/sys/snapshot/manage/')
|
||||||
create_button = browser.find_by_name('create').first
|
create_button = browser.find_by_name('create').first
|
||||||
functional.submit(browser, create_button)
|
functional.submit(browser, element=create_button)
|
||||||
|
|
||||||
|
|
||||||
def _get_count(browser):
|
def _get_count(browser):
|
||||||
|
|||||||
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
<form class="form" method="post">
|
<form class="form form-login" method="post">
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
|
|||||||
@ -60,7 +60,7 @@ class UpgradesApp(app_module.App):
|
|||||||
|
|
||||||
app_id = 'upgrades'
|
app_id = 'upgrades'
|
||||||
|
|
||||||
_version = 14
|
_version = 15
|
||||||
|
|
||||||
can_be_disabled = False
|
can_be_disabled = False
|
||||||
|
|
||||||
|
|||||||
@ -12,7 +12,7 @@
|
|||||||
Change Password for <em>{{ username }}</em>
|
Change Password for <em>{{ username }}</em>
|
||||||
{% endblocktrans %}
|
{% endblocktrans %}
|
||||||
</h3>
|
</h3>
|
||||||
<form class="form" method="post">
|
<form class="form form-change-password" method="post">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
|
|
||||||
{{ form|bootstrap }}
|
{{ form|bootstrap }}
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
<h3>{%trans "Create User" %}</h3>
|
<h3>{%trans "Create User" %}</h3>
|
||||||
|
|
||||||
<form class="form" method="post">
|
<form class="form form-create" method="post">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
|
|
||||||
{{ form|bootstrap }}
|
{{ form|bootstrap }}
|
||||||
|
|||||||
@ -16,7 +16,7 @@
|
|||||||
{% endblocktrans %}
|
{% endblocktrans %}
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<form class="form" method="post">
|
<form class="form form-delete" method="post">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
|
|
||||||
<input type="submit" class="btn btn-md btn-danger"
|
<input type="submit" class="btn btn-md btn-danger"
|
||||||
|
|||||||
@ -19,7 +19,7 @@
|
|||||||
{% endblocktrans %}
|
{% endblocktrans %}
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<form class="form" method="post">
|
<form class="form form-create" method="post">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
|
|
||||||
{{ form|bootstrap }}
|
{{ form|bootstrap }}
|
||||||
@ -56,7 +56,7 @@
|
|||||||
{% endblocktrans %}
|
{% endblocktrans %}
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<form class="form" method="post">
|
<form class="form form-skip" method="post">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
|
|
||||||
<input type="submit" class="btn btn-link" name="skip"
|
<input type="submit" class="btn btn-link" name="skip"
|
||||||
|
|||||||
@ -22,7 +22,7 @@
|
|||||||
{% endblocktrans %}
|
{% endblocktrans %}
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<form class="form" method="post">
|
<form class="form form-update" method="post">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
|
|
||||||
{{ form|bootstrap }}
|
{{ form|bootstrap }}
|
||||||
|
|||||||
@ -251,7 +251,7 @@ def _rename_user(browser, old_name, new_name):
|
|||||||
'/edit/').first.click()
|
'/edit/').first.click()
|
||||||
browser.find_by_id('id_username').fill(new_name)
|
browser.find_by_id('id_username').fill(new_name)
|
||||||
browser.find_by_id('id_confirm_password').fill(_admin_password)
|
browser.find_by_id('id_confirm_password').fill(_admin_password)
|
||||||
functional.submit(browser)
|
functional.submit(browser, form_class='form-update')
|
||||||
|
|
||||||
|
|
||||||
def _set_language(browser, language_code):
|
def _set_language(browser, language_code):
|
||||||
@ -260,7 +260,7 @@ def _set_language(browser, language_code):
|
|||||||
browser.find_by_xpath('//select[@id="id_language"]//option[@value="' +
|
browser.find_by_xpath('//select[@id="id_language"]//option[@value="' +
|
||||||
language_code + '"]').first.click()
|
language_code + '"]').first.click()
|
||||||
browser.find_by_id('id_confirm_password').fill(_admin_password)
|
browser.find_by_id('id_confirm_password').fill(_admin_password)
|
||||||
functional.submit(browser)
|
functional.submit(browser, form_class='form-update')
|
||||||
|
|
||||||
|
|
||||||
def _check_language(browser, language_code):
|
def _check_language(browser, language_code):
|
||||||
@ -294,14 +294,14 @@ def _set_ssh_keys(browser, ssh_keys, username=None):
|
|||||||
browser.find_by_id('id_ssh_keys').fill(ssh_keys)
|
browser.find_by_id('id_ssh_keys').fill(ssh_keys)
|
||||||
browser.find_by_id('id_confirm_password').fill(auth_password)
|
browser.find_by_id('id_confirm_password').fill(auth_password)
|
||||||
|
|
||||||
functional.submit(browser)
|
functional.submit(browser, form_class='form-update')
|
||||||
|
|
||||||
|
|
||||||
def _set_user_inactive(browser, username):
|
def _set_user_inactive(browser, username):
|
||||||
functional.visit(browser, '/plinth/sys/users/{}/edit/'.format(username))
|
functional.visit(browser, '/plinth/sys/users/{}/edit/'.format(username))
|
||||||
browser.find_by_id('id_is_active').uncheck()
|
browser.find_by_id('id_is_active').uncheck()
|
||||||
browser.find_by_id('id_confirm_password').fill(_admin_password)
|
browser.find_by_id('id_confirm_password').fill(_admin_password)
|
||||||
functional.submit(browser)
|
functional.submit(browser, form_class='form-update')
|
||||||
|
|
||||||
|
|
||||||
def _change_password(browser, new_password, current_password=None,
|
def _change_password(browser, new_password, current_password=None,
|
||||||
@ -319,7 +319,7 @@ def _change_password(browser, new_password, current_password=None,
|
|||||||
browser.find_by_id('id_new_password1').fill(new_password)
|
browser.find_by_id('id_new_password1').fill(new_password)
|
||||||
browser.find_by_id('id_new_password2').fill(new_password)
|
browser.find_by_id('id_new_password2').fill(new_password)
|
||||||
browser.find_by_id('id_confirm_password').fill(auth_password)
|
browser.find_by_id('id_confirm_password').fill(auth_password)
|
||||||
functional.submit(browser)
|
functional.submit(browser, form_class='form-change-password')
|
||||||
|
|
||||||
|
|
||||||
def _try_login_to_ssh(key_file=None):
|
def _try_login_to_ssh(key_file=None):
|
||||||
|
|||||||
@ -113,7 +113,8 @@ def _visit_site(browser):
|
|||||||
functional.config['DEFAULT']['password'])
|
functional.config['DEFAULT']['password'])
|
||||||
browser.check('pw_weak')
|
browser.check('pw_weak')
|
||||||
browser.fill('admin_email', 'admin@example.org')
|
browser.fill('admin_email', 'admin@example.org')
|
||||||
functional.submit(browser)
|
submit_button = browser.find_by_id('submit')
|
||||||
|
functional.submit(browser, element=submit_button)
|
||||||
|
|
||||||
if not browser.find_by_css('.install-success'):
|
if not browser.find_by_css('.install-success'):
|
||||||
raise Exception('WordPress installation failed')
|
raise Exception('WordPress installation failed')
|
||||||
@ -124,7 +125,8 @@ def _visit_site(browser):
|
|||||||
functional.visit(browser, '/wordpress/wp-login.php')
|
functional.visit(browser, '/wordpress/wp-login.php')
|
||||||
browser.fill('log', functional.config['DEFAULT']['username'])
|
browser.fill('log', functional.config['DEFAULT']['username'])
|
||||||
browser.fill('pwd', functional.config['DEFAULT']['password'])
|
browser.fill('pwd', functional.config['DEFAULT']['password'])
|
||||||
functional.submit(browser)
|
login_button = browser.find_by_id('wp-submit')
|
||||||
|
functional.submit(browser, element=login_button)
|
||||||
|
|
||||||
|
|
||||||
def _write_post(browser, title):
|
def _write_post(browser, title):
|
||||||
|
|||||||
@ -4,6 +4,7 @@ Functional, browser based tests for zoph app.
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from plinth.tests import functional
|
from plinth.tests import functional
|
||||||
|
|
||||||
pytestmark = [pytest.mark.apps, pytest.mark.zoph]
|
pytestmark = [pytest.mark.apps, pytest.mark.zoph]
|
||||||
@ -24,9 +25,7 @@ class TestZophApp(functional.BaseAppTests):
|
|||||||
def _zoph_is_setup(self, session_browser):
|
def _zoph_is_setup(self, session_browser):
|
||||||
"""Click setup button on the setup page."""
|
"""Click setup button on the setup page."""
|
||||||
functional.nav_to_module(session_browser, self.app_name)
|
functional.nav_to_module(session_browser, self.app_name)
|
||||||
button = session_browser.find_by_css('input[name="zoph_setup"]')
|
functional.submit(session_browser, form_class='form-configuration')
|
||||||
if button:
|
|
||||||
functional.submit(session_browser, element=button)
|
|
||||||
|
|
||||||
def assert_app_running(self, session_browser):
|
def assert_app_running(self, session_browser):
|
||||||
assert functional.app_is_enabled(session_browser, self.app_name)
|
assert functional.app_is_enabled(session_browser, self.app_name)
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
<h3>{{ title }}</h3>
|
<h3>{{ title }}</h3>
|
||||||
|
|
||||||
<form class="form" method="post">
|
<form class="form form-{{ form.prefix }}" method="post">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
|
|
||||||
{{ form|bootstrap }}
|
{{ form|bootstrap }}
|
||||||
|
|||||||
@ -15,7 +15,9 @@
|
|||||||
|
|
||||||
{% if setup_state.value == 'up-to-date' %}
|
{% if setup_state.value == 'up-to-date' %}
|
||||||
|
|
||||||
{% trans "Application installed." %}
|
<div class="app-just-installed">
|
||||||
|
{% trans "Application installed." %}
|
||||||
|
</div>
|
||||||
|
|
||||||
{% elif not operations %}
|
{% elif not operations %}
|
||||||
|
|
||||||
|
|||||||