From 75f4be83eb929b92de367c4aa9bef3ab3e9646ab Mon Sep 17 00:00:00 2001 From: Johannes Keyser Date: Sun, 20 Dec 2020 10:40:29 +0000 Subject: [PATCH 01/21] Translated using Weblate (German) Currently translated at 100.0% (1418 of 1418 strings) --- plinth/locale/de/LC_MESSAGES/django.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plinth/locale/de/LC_MESSAGES/django.po b/plinth/locale/de/LC_MESSAGES/django.po index 23faa193d..889ea3f4d 100644 --- a/plinth/locale/de/LC_MESSAGES/django.po +++ b/plinth/locale/de/LC_MESSAGES/django.po @@ -10,8 +10,8 @@ msgstr "" "Project-Id-Version: FreedomBox UI\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-12-14 18:42-0500\n" -"PO-Revision-Date: 2020-12-19 12:29+0000\n" -"Last-Translator: ikmaak \n" +"PO-Revision-Date: 2020-12-21 11:29+0000\n" +"Last-Translator: Johannes Keyser \n" "Language-Team: German \n" "Language: de\n" @@ -1385,7 +1385,7 @@ msgstr "Diagnose" #: plinth/modules/diagnostics/__init__.py:96 msgid "passed" -msgstr "übergeben" +msgstr "bestanden" #: plinth/modules/diagnostics/__init__.py:97 #: plinth/modules/networks/views.py:49 From 2a7fc709a4c421cb0b1fdb12035fa0cacbb5b28b Mon Sep 17 00:00:00 2001 From: Fioddor Superconcentrado Date: Mon, 21 Dec 2020 13:48:25 +0000 Subject: [PATCH 02/21] Translated using Weblate (Spanish) Currently translated at 99.9% (1417 of 1418 strings) --- plinth/locale/es/LC_MESSAGES/django.po | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/plinth/locale/es/LC_MESSAGES/django.po b/plinth/locale/es/LC_MESSAGES/django.po index 788363fe4..504b6d4b2 100644 --- a/plinth/locale/es/LC_MESSAGES/django.po +++ b/plinth/locale/es/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-12-14 18:42-0500\n" -"PO-Revision-Date: 2020-12-11 19:29+0000\n" +"PO-Revision-Date: 2020-12-21 14:41+0000\n" "Last-Translator: Fioddor Superconcentrado \n" "Language-Team: Spanish \n" @@ -91,10 +91,8 @@ msgid "Error installing application: {error}" msgstr "Error al instalar la aplicación: {error}" #: plinth/modules/apache/__init__.py:41 -#, fuzzy -#| msgid "As a Server" msgid "Apache HTTP Server" -msgstr "Como servidor" +msgstr "Servidor HTTP Apache" #: plinth/modules/apache/__init__.py:44 #: plinth/modules/monkeysphere/templates/monkeysphere.html:67 @@ -1116,7 +1114,7 @@ msgstr "Nombre de dominio no válido" #: plinth/modules/config/forms.py:40 #, python-brace-format msgid "{user}'s website" -msgstr "" +msgstr "sitio web de {user}" #: plinth/modules/config/forms.py:42 msgid "Apache Default" @@ -1450,10 +1448,9 @@ msgid "Diagnostic Results" msgstr "Resultado del diagnóstico" #: plinth/modules/diagnostics/templates/diagnostics_app.html:12 -#, fuzzy, python-format -#| msgid "App: %(app_id)s" +#, python-format msgid "App: %(app_name)s" -msgstr "Aplicación: %(app_id)s" +msgstr "Aplicación: %(app_name)s" #: plinth/modules/diagnostics/templates/diagnostics_app.html:21 msgid "This app does not support diagnostics" From c975fb94e373588623fa0a7d52f471176d4ee6cc Mon Sep 17 00:00:00 2001 From: Joseph Nuthalapati Date: Wed, 23 Dec 2020 15:27:46 +0530 Subject: [PATCH 03/21] deluge: Sync apache2 config with Transmission Use the same reverse proxy configuration as Transmission for Deluge. Signed-off-by: Joseph Nuthalapati Reviewed-by: Veiko Aasa --- .../etc/apache2/conf-available/deluge-plinth.conf | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/plinth/modules/deluge/data/etc/apache2/conf-available/deluge-plinth.conf b/plinth/modules/deluge/data/etc/apache2/conf-available/deluge-plinth.conf index 76c92049e..f89dd42a2 100644 --- a/plinth/modules/deluge/data/etc/apache2/conf-available/deluge-plinth.conf +++ b/plinth/modules/deluge/data/etc/apache2/conf-available/deluge-plinth.conf @@ -1,6 +1,18 @@ ## ## On all sites, provide Deluge on a default path: /deluge ## +## Requires the following Apache modules to be enabled: +## mod_headers +## mod_proxy +## mod_proxy_http +## - ProxyPass http://localhost:8112 + ProxyPass http://localhost:8112 + Include includes/freedombox-single-sign-on.conf + + TKTAuthToken "admin" "bit-torrent" + + ## Send the scheme from user's request to enable Deluge to redirect URLs, + ## set cookies, set absolute URLs (if any) properly. + RequestHeader set X-Forwarded-Proto 'https' env=HTTPS From 80858796439dd0ee675b58d50285e67c92c97586 Mon Sep 17 00:00:00 2001 From: Joseph Nuthalapati Date: Wed, 23 Dec 2020 16:02:28 +0530 Subject: [PATCH 04/21] deluge: Functional tests for bit-torrent group Add tests to check that usage of Deluge is only permitted to users in the group 'bit-torrent'. Signed-off-by: Joseph Nuthalapati Reviewed-by: Veiko Aasa --- plinth/modules/deluge/tests/deluge.feature | 12 ++++++++++++ plinth/tests/functional/step_definitions.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/plinth/modules/deluge/tests/deluge.feature b/plinth/modules/deluge/tests/deluge.feature index 419a9a45c..67bd401fc 100644 --- a/plinth/modules/deluge/tests/deluge.feature +++ b/plinth/modules/deluge/tests/deluge.feature @@ -13,6 +13,18 @@ Scenario: Enable deluge application When I enable the deluge application Then the deluge site should be available +Scenario: User of 'bit-torrent' group + Given the deluge application is enabled + When I create a user named delugeuser with password deluge&456 in group bit-torrent + And I'm logged in as the user delugeuser with password deluge&456 + Then the deluge site should be available + +Scenario: User not of 'bit-torrent' group + Given the deluge application is enabled + When I create a user named nogroupuser with password somep@ssw6 + And I'm logged in as the user nogroupuser with password somep@ssw6 + Then the deluge site should not be available + Scenario: Upload a torrent to deluge Given the deluge application is enabled When all torrents are removed from deluge diff --git a/plinth/tests/functional/step_definitions.py b/plinth/tests/functional/step_definitions.py index abc5d883f..e659068ca 100644 --- a/plinth/tests/functional/step_definitions.py +++ b/plinth/tests/functional/step_definitions.py @@ -170,7 +170,7 @@ def create_user(session_browser, name, password): @when( parsers.parse('I create a user named {name:w} with password {password:S} ' - 'in group {group:w}')) + 'in group {group:S}')) def create_user_in_group(session_browser, name, password, group): if not functional.user_exists(session_browser, name): functional.create_user(session_browser, name, password, groups=[group]) From 9dcf87f1a43847b11146ae53813f2008c8b404a3 Mon Sep 17 00:00:00 2001 From: Fioddor Superconcentrado Date: Wed, 23 Dec 2020 12:30:08 +0000 Subject: [PATCH 05/21] Translated using Weblate (Spanish) Currently translated at 99.9% (1417 of 1418 strings) --- plinth/locale/es/LC_MESSAGES/django.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plinth/locale/es/LC_MESSAGES/django.po b/plinth/locale/es/LC_MESSAGES/django.po index 504b6d4b2..74efd0699 100644 --- a/plinth/locale/es/LC_MESSAGES/django.po +++ b/plinth/locale/es/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-12-14 18:42-0500\n" -"PO-Revision-Date: 2020-12-21 14:41+0000\n" +"PO-Revision-Date: 2020-12-24 17:29+0000\n" "Last-Translator: Fioddor Superconcentrado \n" "Language-Team: Spanish \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.4-dev\n" +"X-Generator: Weblate 4.4.1-dev\n" #: doc/dev/_templates/layout.html:11 msgid "Page source" @@ -3915,7 +3915,7 @@ msgstr "Abierto" #: plinth/modules/networks/forms.py:301 #, python-brace-format msgid "Specify how your {box_name} is connected to your network" -msgstr "Especifique cómo su {box_name} está conectada a la red" +msgstr "Especifique cómo está su {box_name} conectada a la red" #: plinth/modules/networks/forms.py:308 #, python-brace-format @@ -6988,7 +6988,7 @@ msgid "" "When enabled, FreedomBox will update to the next stable distribution release " "when it is available." msgstr "" -"Si de activa, FreedomBox actualizará a la nueva publicación de la " +"Si se activa, FreedomBox actualizará a la nueva publicación de la " "distribución estable cuando esté disponible." #: plinth/modules/upgrades/forms.py:34 From 327e76220b56613f29203ccb3447df7d01180b90 Mon Sep 17 00:00:00 2001 From: Michael Breidenbach Date: Wed, 23 Dec 2020 17:28:55 +0000 Subject: [PATCH 06/21] Translated using Weblate (Swedish) Currently translated at 100.0% (1418 of 1418 strings) --- plinth/locale/sv/LC_MESSAGES/django.po | 25 +++++++++---------------- 1 file changed, 9 insertions(+), 16 deletions(-) diff --git a/plinth/locale/sv/LC_MESSAGES/django.po b/plinth/locale/sv/LC_MESSAGES/django.po index 3e1418cb6..0bfaab08f 100644 --- a/plinth/locale/sv/LC_MESSAGES/django.po +++ b/plinth/locale/sv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-12-14 18:42-0500\n" -"PO-Revision-Date: 2020-12-10 15:29+0000\n" +"PO-Revision-Date: 2020-12-24 17:29+0000\n" "Last-Translator: Michael Breidenbach \n" "Language-Team: Swedish \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.4-dev\n" +"X-Generator: Weblate 4.4.1-dev\n" #: doc/dev/_templates/layout.html:11 msgid "Page source" @@ -91,10 +91,8 @@ msgid "Error installing application: {error}" msgstr "Installationen misslyckades: {error}" #: plinth/modules/apache/__init__.py:41 -#, fuzzy -#| msgid "As a Server" msgid "Apache HTTP Server" -msgstr "Som en server" +msgstr "Apache HTTP-server" #: plinth/modules/apache/__init__.py:44 #: plinth/modules/monkeysphere/templates/monkeysphere.html:67 @@ -1112,7 +1110,7 @@ msgstr "Ogiltigt domännamn" #: plinth/modules/config/forms.py:40 #, python-brace-format msgid "{user}'s website" -msgstr "" +msgstr "{user}s webbplats" #: plinth/modules/config/forms.py:42 msgid "Apache Default" @@ -1429,29 +1427,24 @@ msgid "Results" msgstr "Resultat" #: plinth/modules/diagnostics/templates/diagnostics.html:36 -#, fuzzy, python-format -#| msgid "" -#| "\n" -#| " App: %(app_name)s\n" -#| " " +#, python-format msgid "" "\n" " App: %(app_name)s\n" " " msgstr "" "\n" -" Appen: %(app_name)s\n" -" " +" Appen: %(app_name)s\n" +" " #: plinth/modules/diagnostics/templates/diagnostics_app.html:10 msgid "Diagnostic Results" msgstr "Diagnostikresultat" #: plinth/modules/diagnostics/templates/diagnostics_app.html:12 -#, fuzzy, python-format -#| msgid "App: %(app_id)s" +#, python-format msgid "App: %(app_name)s" -msgstr "App:%(app_id)s" +msgstr "App:%(app_name)s" #: plinth/modules/diagnostics/templates/diagnostics_app.html:21 msgid "This app does not support diagnostics" From 5f3643cc24ed949185c0e42a937a676e63abc374 Mon Sep 17 00:00:00 2001 From: Veiko Aasa Date: Sat, 26 Dec 2020 10:10:53 +0200 Subject: [PATCH 07/21] apache: Create snake oil certificate if not exists When FreedomBox package is installed on a fresh Debian machine where a snakeoil certificate doesn't exist, generate a new one. Fixes #1923 Fixes #1999 Signed-off-by: Joseph Nuthalapati [Veiko: Made added code comment more precise] Signed-off-by: Veiko Aasa Reviewed-by: Veiko Aasa --- actions/apache | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/actions/apache b/actions/apache index a888acac9..6b64c95c6 100755 --- a/actions/apache +++ b/actions/apache @@ -7,6 +7,7 @@ Configuration helper for Apache web server. import argparse import glob +import os import re import subprocess @@ -97,6 +98,11 @@ def subcommand_setup(arguments): subprocess.run([ 'make-ssl-cert', 'generate-default-snakeoil', '--force-overwrite' ], check=True) + # In case the certificate has been removed after ssl-cert is installed + # on a fresh Debian machine. + elif not os.path.exists('/etc/ssl/certs/ssl-cert-snakeoil.pem'): + subprocess.run(['make-ssl-cert', 'generate-default-snakeoil'], + check=True) with action_utils.WebserverChange() as webserver: # Disable mod_php as we have switched to mod_fcgi + php-fpm. Disable From 1101674cf3e64b9013582d272433f20c2bab4b34 Mon Sep 17 00:00:00 2001 From: n0nie4HP Date: Fri, 25 Dec 2020 15:01:53 +0000 Subject: [PATCH 08/21] Translated using Weblate (Polish) Currently translated at 28.1% (399 of 1418 strings) --- plinth/locale/pl/LC_MESSAGES/django.po | 34 +++++++------------------- 1 file changed, 9 insertions(+), 25 deletions(-) diff --git a/plinth/locale/pl/LC_MESSAGES/django.po b/plinth/locale/pl/LC_MESSAGES/django.po index 442069037..743e384a8 100644 --- a/plinth/locale/pl/LC_MESSAGES/django.po +++ b/plinth/locale/pl/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-12-14 18:42-0500\n" -"PO-Revision-Date: 2020-11-01 11:26+0000\n" -"Last-Translator: Radek Pasiok \n" +"PO-Revision-Date: 2020-12-26 15:29+0000\n" +"Last-Translator: n0nie4HP \n" "Language-Team: Polish \n" "Language: pl\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.3.2-dev\n" +"X-Generator: Weblate 4.4.1-dev\n" #: doc/dev/_templates/layout.html:11 msgid "Page source" @@ -92,10 +92,8 @@ msgid "Error installing application: {error}" msgstr "Błąd podczas instalowania aplikacji: {error}" #: plinth/modules/apache/__init__.py:41 -#, fuzzy -#| msgid "Chat Server" msgid "Apache HTTP Server" -msgstr "Serwer czatu" +msgstr "Serwer Apache HTTP" #: plinth/modules/apache/__init__.py:44 #: plinth/modules/monkeysphere/templates/monkeysphere.html:67 @@ -156,8 +154,6 @@ msgid "{app} (No data to backup)" msgstr "{app} (Brak danych do utworzenia kopii zapasowej)" #: plinth/modules/backups/forms.py:50 -#, fuzzy -#| msgid "Create Repository" msgid "Repository" msgstr "Repozytorium" @@ -474,15 +470,7 @@ msgid "Restore data from" msgstr "Odtwórz dane z" #: plinth/modules/backups/templates/backups_upload.html:17 -#, fuzzy, python-format -#| msgid "" -#| "\n" -#| " Upload a backup file downloaded from another %(box_name)s to " -#| "restore is\n" -#| " contents. You can choose the apps you wish to restore after " -#| "uploading a\n" -#| " backup file.\n" -#| " " +#, python-format msgid "" "\n" " Upload a backup file downloaded from another %(box_name)s to restore " @@ -764,16 +752,12 @@ msgid "Password" msgstr "Hasło" #: plinth/modules/bepasty/views.py:23 -#, fuzzy -#| msgid "Admin" msgid "admin" -msgstr "Admin" +msgstr "admin" #: plinth/modules/bepasty/views.py:24 -#, fuzzy -#| msgid "Create Repository" msgid "editor" -msgstr "Repozytorium" +msgstr "edytor" #: plinth/modules/bepasty/views.py:25 msgid "viewer" @@ -1381,12 +1365,12 @@ msgstr "Diagnostyka" #: plinth/modules/diagnostics/__init__.py:96 msgid "passed" -msgstr "" +msgstr "udało się" #: plinth/modules/diagnostics/__init__.py:97 #: plinth/modules/networks/views.py:49 msgid "failed" -msgstr "" +msgstr "nie udało się" #: plinth/modules/diagnostics/__init__.py:98 msgid "error" From 025505865655805d9c3163ef5b1d0a5eea740dec Mon Sep 17 00:00:00 2001 From: Veiko Aasa Date: Tue, 22 Dec 2020 13:46:45 +0200 Subject: [PATCH 09/21] users: Remove timeout when creating Samba user Fixes #2000 Tests performed: - All the users module tests pass - Create a user, add the user to the freedombox-share group, check that the user can connect to the Samba Group share. Signed-off-by: Veiko Aasa Reviewed-by: James Valleroy --- actions/users | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/actions/users b/actions/users index fb91987ef..b60cdbb37 100755 --- a/actions/users +++ b/actions/users @@ -365,13 +365,11 @@ def set_samba_user(username, password): If a user already exists, update password. """ - proc = subprocess.Popen(['smbpasswd', '-a', '-s', username], - stdin=subprocess.PIPE, stdout=subprocess.PIPE, - stderr=subprocess.PIPE) - _, stderr = proc.communicate(input='{0}\n{0}\n'.format(password).encode(), - timeout=10) + proc = subprocess.run(['smbpasswd', '-a', '-s', username], + input='{0}\n{0}\n'.format(password).encode(), + stderr=subprocess.PIPE) if proc.returncode != 0: - raise RuntimeError('Unable to add Samba user: ', stderr) + raise RuntimeError('Unable to add Samba user: ', proc.stderr) def subcommand_set_user_password(arguments): From 79acc9b9183b4974b014dee10422dbd524caaada Mon Sep 17 00:00:00 2001 From: spectral Date: Sat, 26 Dec 2020 08:49:57 -0800 Subject: [PATCH 10/21] calibre: Fix manual page name Reviewed-by: James Valleroy --- plinth/modules/calibre/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plinth/modules/calibre/__init__.py b/plinth/modules/calibre/__init__.py index a166bb1f9..70b6d7136 100644 --- a/plinth/modules/calibre/__init__.py +++ b/plinth/modules/calibre/__init__.py @@ -59,7 +59,7 @@ class CalibreApp(app_module.App): info = app_module.Info(app_id=self.app_id, version=version, name=_('calibre'), icon_filename='calibre', short_description=_('E-book Library'), - description=_description, manual_page='calibre', + description=_description, manual_page='Calibre', clients=clients, donation_url='https://calibre-ebook.com/donate') self.add(info) From 6665052fe86f6b2335a1504808fd90eee2e6a87e Mon Sep 17 00:00:00 2001 From: Veiko Aasa Date: Mon, 21 Dec 2020 15:48:36 +0200 Subject: [PATCH 11/21] security: Fix access denied for user daemon from cron When 'restrict console logins' is activated, debsecan hourly cron jobs fail because the 'daemon' user is not allowed to run cron jobs. Add rule to the login access control file to allow 'daemon' user to run cron jobs. Fixes #1770 Tested that after I copied the file to /etc/security/access.d/10freedombox-security.conf, there are no more debsecan cron job errors in the journalctl logs. Signed-off-by: Veiko Aasa Reviewed-by: Fioddor Superconcentrado --- .../data/etc/security/access.d/10freedombox-security.conf | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 plinth/modules/security/data/etc/security/access.d/10freedombox-security.conf diff --git a/plinth/modules/security/data/etc/security/access.d/10freedombox-security.conf b/plinth/modules/security/data/etc/security/access.d/10freedombox-security.conf new file mode 100644 index 000000000..ae78899bd --- /dev/null +++ b/plinth/modules/security/data/etc/security/access.d/10freedombox-security.conf @@ -0,0 +1,2 @@ +# allow debsecan cron job ++:daemon:cron From 092c7e70d147cabefeb1f172dcf51f913ff268e6 Mon Sep 17 00:00:00 2001 From: James Valleroy Date: Thu, 24 Dec 2020 13:48:46 -0500 Subject: [PATCH 12/21] upgrades: Allow grub-pc upgrade without reinstalling grub Signed-off-by: James Valleroy Reviewed-by: Sunil Mohan Adapa --- actions/upgrades | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/actions/upgrades b/actions/upgrades index 2a2570ec0..ee278845d 100755 --- a/actions/upgrades +++ b/actions/upgrades @@ -11,7 +11,8 @@ import re import subprocess import sys -from plinth.action_utils import apt_hold, run_apt_command, service_restart +from plinth.action_utils import (apt_hold, debconf_set_selections, + run_apt_command, service_restart) from plinth.modules.apache.components import check_url from plinth.modules.upgrades import (BACKPORTS_SOURCES_LIST, SOURCES_LIST, get_current_release, is_backports_current) @@ -392,7 +393,12 @@ def _perform_dist_upgrade(): run_apt_command(['install', 'base-files']) run_apt_command(['install', 'unattended-upgrades']) - print('Running unattended-upgrade...') + # Tell grub-pc to continue without installing grub again. + print('Set grub-pc to not require re-installing grub...', flush=True) + debconf_set_selections( + ['grub-pc grub-pc/install_devices_empty boolean true']) + + print('Running unattended-upgrade...', flush=True) subprocess.run(['unattended-upgrade', '--verbose']) # Remove obsolete packages that may prevent other packages from From 30a0e69548091b920c24c04a9f3e9803ee82fbe6 Mon Sep 17 00:00:00 2001 From: James Valleroy Date: Thu, 24 Dec 2020 13:49:45 -0500 Subject: [PATCH 13/21] upgrades: Update searx search engines during dist upgrade Flush stdout after printing debug info. Signed-off-by: James Valleroy Reviewed-by: Sunil Mohan Adapa --- actions/upgrades | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/actions/upgrades b/actions/upgrades index ee278845d..c54f81c5b 100755 --- a/actions/upgrades +++ b/actions/upgrades @@ -384,12 +384,12 @@ def _check_and_dist_upgrade(develop=False, test_upgrade=False): def _perform_dist_upgrade(): """Perform upgrade to next release of Debian.""" # Hold freedombox package during entire dist upgrade. - print('Holding freedombox package...') + print('Holding freedombox package...', flush=True) with apt_hold(): - print('Updating Apt cache...') + print('Updating Apt cache...', flush=True) run_apt_command(['update']) - print('Upgrading base-files and unattended-upgrades...') + print('Upgrading base-files and unattended-upgrades...', flush=True) run_apt_command(['install', 'base-files']) run_apt_command(['install', 'unattended-upgrades']) @@ -403,29 +403,35 @@ def _perform_dist_upgrade(): # Remove obsolete packages that may prevent other packages from # upgrading. - print('Removing libgcc1...') + print('Removing libgcc1...', flush=True) run_apt_command(['remove', 'libgcc1']) # Hold packages known to have conffile prompts. FreedomBox service # will handle their upgrade later. packages_with_prompts = ['firewalld', 'mumble-server', 'radicale'] - print('Holding packages with conffile prompts: ' + - ', '.join(packages_with_prompts) + '...') + print( + 'Holding packages with conffile prompts: ' + + ', '.join(packages_with_prompts) + '...', flush=True) with apt_hold(packages_with_prompts): - print('Running apt full-upgrade...') + print('Running apt full-upgrade...', flush=True) run_apt_command(['full-upgrade']) - print('Running apt autoremove...') + # If searx is installed, update search engines list. + if pathlib.Path('/etc/searx/settings.yml').exists(): + print('Updating searx search engines list...', flush=True) + subprocess.run(['./searx', 'setup'], check=True) + + print('Running apt autoremove...', flush=True) run_apt_command(['autoremove']) - print('Dist upgrade complete. Removing flag.') + print('Dist upgrade complete. Removing flag.', flush=True) if dist_upgrade_flag.exists(): dist_upgrade_flag.unlink() # FreedomBox Service may have tried to restart several times # during the upgrade, but failed. It will stop trying after 5 # retries. Restart it once more to ensure it is running. - print('Restarting FreedomBox service...') + print('Restarting FreedomBox service...', flush=True) service_restart('plinth') From cb8a7df4a798e876c31b18923cb977a992929ce0 Mon Sep 17 00:00:00 2001 From: Nikita Epifanov Date: Sun, 27 Dec 2020 19:26:19 +0000 Subject: [PATCH 14/21] Translated using Weblate (Russian) Currently translated at 95.4% (1354 of 1418 strings) --- plinth/locale/ru/LC_MESSAGES/django.po | 37 ++++++++++---------------- 1 file changed, 14 insertions(+), 23 deletions(-) diff --git a/plinth/locale/ru/LC_MESSAGES/django.po b/plinth/locale/ru/LC_MESSAGES/django.po index 34b4bf7c8..8bfd0f338 100644 --- a/plinth/locale/ru/LC_MESSAGES/django.po +++ b/plinth/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-12-14 18:42-0500\n" -"PO-Revision-Date: 2020-10-22 11:26+0000\n" +"PO-Revision-Date: 2020-12-29 01:10+0000\n" "Last-Translator: Nikita Epifanov \n" "Language-Team: Russian \n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.3.1\n" +"X-Generator: Weblate 4.4.1-dev\n" #: doc/dev/_templates/layout.html:11 msgid "Page source" @@ -92,10 +92,8 @@ msgid "Error installing application: {error}" msgstr "Ошибка при установке приложения: {error}" #: plinth/modules/apache/__init__.py:41 -#, fuzzy -#| msgid "As a Server" msgid "Apache HTTP Server" -msgstr "Как сервер" +msgstr "Apache HTTP-сервер" #: plinth/modules/apache/__init__.py:44 #: plinth/modules/monkeysphere/templates/monkeysphere.html:67 @@ -346,7 +344,7 @@ msgstr "Создать новую резервную копию" #: plinth/modules/backups/templates/backups.html:34 msgid "Create Backup" -msgstr "Создать учетную запись" +msgstr "Создать резервную копию" #: plinth/modules/backups/templates/backups.html:37 msgid "Upload and restore a backup archive" @@ -757,20 +755,16 @@ msgid "Password" msgstr "Пароль" #: plinth/modules/bepasty/views.py:23 -#, fuzzy -#| msgid "Admin" msgid "admin" msgstr "Админ" #: plinth/modules/bepasty/views.py:24 -#, fuzzy -#| msgid "Repository" msgid "editor" -msgstr "Репозиторий" +msgstr "редактор" #: plinth/modules/bepasty/views.py:25 msgid "viewer" -msgstr "" +msgstr "просмотрщик" #: plinth/modules/bepasty/views.py:50 msgid "Read" @@ -1117,7 +1111,7 @@ msgstr "Недопустимое имя домена" #: plinth/modules/config/forms.py:40 #, python-brace-format msgid "{user}'s website" -msgstr "" +msgstr "веб-сайт {user}a" #: plinth/modules/config/forms.py:42 msgid "Apache Default" @@ -1456,10 +1450,9 @@ msgid "Diagnostic Results" msgstr "Результаты диагностики" #: plinth/modules/diagnostics/templates/diagnostics_app.html:12 -#, fuzzy, python-format -#| msgid "App: %(app_id)s" +#, python-format msgid "App: %(app_name)s" -msgstr "Приложение: %(app_id)s" +msgstr "Приложение: %(app_name)s" #: plinth/modules/diagnostics/templates/diagnostics_app.html:21 msgid "This app does not support diagnostics" @@ -1698,7 +1691,7 @@ msgstr "URL-адрес для поиска публичного IP" #: plinth/modules/dynamicdns/forms.py:119 msgid "Use IPv6 instead of IPv4" -msgstr "" +msgstr "Использовать IPv6 вместо IPv4" #: plinth/modules/dynamicdns/forms.py:142 msgid "Please provide an update URL or a GnuDIP server address" @@ -3115,16 +3108,16 @@ msgstr "" "Оставьте это поле пустым, чтобы сохранить текущий пароль." #: plinth/modules/mediawiki/forms.py:56 -#, fuzzy -#| msgid "Server" msgid "Server URL" -msgstr "Сервер" +msgstr "URL сервера" #: plinth/modules/mediawiki/forms.py:57 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." msgstr "" +"Использовалось MediaWiki для создания ссылок на wiki страницы, например " +"внизу веб-страниц, в RSS-потоках или в электронных письмах." #: plinth/modules/mediawiki/forms.py:62 msgid "Enable public registrations" @@ -3188,10 +3181,8 @@ msgid "Default skin changed" msgstr "Скин по умолчанию изменен" #: plinth/modules/mediawiki/views.py:90 -#, fuzzy -#| msgid "Server deleted." msgid "Server URL updated" -msgstr "Сервер удален." +msgstr "URL сервера удален" #: plinth/modules/minetest/__init__.py:38 #, python-brace-format From 6f2e6f33731e964ecdb58765edac7116b894f5c6 Mon Sep 17 00:00:00 2001 From: ikmaak Date: Mon, 28 Dec 2020 12:45:22 +0000 Subject: [PATCH 15/21] Translated using Weblate (Polish) Currently translated at 34.0% (483 of 1418 strings) --- plinth/locale/pl/LC_MESSAGES/django.po | 213 ++++++++++++------------- 1 file changed, 99 insertions(+), 114 deletions(-) diff --git a/plinth/locale/pl/LC_MESSAGES/django.po b/plinth/locale/pl/LC_MESSAGES/django.po index 743e384a8..ecfa99203 100644 --- a/plinth/locale/pl/LC_MESSAGES/django.po +++ b/plinth/locale/pl/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-12-14 18:42-0500\n" -"PO-Revision-Date: 2020-12-26 15:29+0000\n" -"Last-Translator: n0nie4HP \n" +"PO-Revision-Date: 2020-12-29 01:10+0000\n" +"Last-Translator: ikmaak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -1046,18 +1046,13 @@ msgid "" msgstr "" #: plinth/modules/cockpit/__init__.py:43 -#, fuzzy, python-brace-format -#| msgid "" -#| "When enabled, Cockpit will be available from /" -#| "_cockpit/ path on the web server. It can be accessed by any user on {box_name} belonging to the admin group." +#, python-brace-format msgid "" "It can be accessed by any user on {box_name} " "belonging to the admin group." msgstr "" -"Jeśli Cockpit zostanie włączony, dostępny jest na serwerze pod adresem /_cockpit/. Dostęp do niego mają użytkownicy {box_name} z do grupy administratorów." +"Dostęp do niego mają użytkownicy {box_name} z do " +"grupy administratorów." #: plinth/modules/cockpit/__init__.py:47 msgid "" @@ -1246,7 +1241,7 @@ msgstr "" #: plinth/modules/coturn/__init__.py:52 msgid "Coturn" -msgstr "" +msgstr "Coturn" #: plinth/modules/coturn/__init__.py:53 msgid "VoIP Helper" @@ -1434,10 +1429,9 @@ msgid "Diagnostic Results" msgstr "Wynik diagnostyki" #: plinth/modules/diagnostics/templates/diagnostics_app.html:12 -#, fuzzy, python-format -#| msgid "App: %(app_id)s" +#, python-format msgid "App: %(app_name)s" -msgstr "Aplikacja: %(app_id)s" +msgstr "Aplikacja: %(app_name)s" #: plinth/modules/diagnostics/templates/diagnostics_app.html:21 #, fuzzy @@ -1874,7 +1868,7 @@ msgstr "" #: plinth/modules/ejabberd/manifest.py:73 msgid "Dino" -msgstr "" +msgstr "Dino" #: plinth/modules/ejabberd/manifest.py:85 msgid "Gajim" @@ -2069,7 +2063,7 @@ msgstr "" #: plinth/modules/gitweb/__init__.py:56 plinth/modules/gitweb/manifest.py:13 msgid "Gitweb" -msgstr "" +msgstr "Gitweb" #: plinth/modules/gitweb/__init__.py:57 msgid "Simple Git Hosting" @@ -2149,7 +2143,7 @@ msgstr "" #: plinth/modules/gitweb/manifest.py:21 msgid "Git" -msgstr "" +msgstr "Git" #: plinth/modules/gitweb/templates/gitweb_configure.html:31 #, fuzzy @@ -2301,10 +2295,9 @@ msgstr "Dowiedz się więcej »" #: plinth/modules/help/templates/help_about.html:63 #: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, fuzzy, python-format -#| msgid "You are running %(os_release)s and Plinth version %(version)s." +#, python-format msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "Używasz %(os_release)s i Plinth w wersji %(version)s." +msgstr "Używasz %(os_release)s i %(box_name)s w wersji %(version)s." #: plinth/modules/help/templates/help_about.html:69 #, fuzzy, python-format @@ -2312,14 +2305,13 @@ msgstr "Używasz %(os_release)s i Plinth w wersji %(version)s." msgid "" "There is a new %(box_name)s version available." -msgstr "Nowsza wersja Plinth jest dostępna." +msgstr "Nowsza wersja %(box_name)s jest dostępna." #: plinth/modules/help/templates/help_about.html:74 #: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, fuzzy, python-format -#| msgid "Plinth is up to date." +#, python-format msgid "%(box_name)s is up to date." -msgstr "Plinth jest aktualny." +msgstr "%(box_name)s jest aktualny." #: plinth/modules/help/templates/help_base.html:21 #: plinth/modules/help/templates/help_index.html:61 @@ -2356,10 +2348,8 @@ msgstr "" #: plinth/modules/power/templates/power_restart.html:27 #: plinth/modules/power/templates/power_shutdown.html:26 #: plinth/templates/app-header.html:53 -#, fuzzy -#| msgid "Learn more »" msgid "Learn more..." -msgstr "Dowiedz się więcej »" +msgstr "Dowiedz się więcej..." #: plinth/modules/help/templates/help_feedback.html:12 #, python-format @@ -2526,7 +2516,7 @@ msgstr "Aktywuj aplikację" #: plinth/modules/i2p/__init__.py:59 plinth/modules/i2p/manifest.py:16 msgid "I2P" -msgstr "" +msgstr "I2P" #: plinth/modules/i2p/__init__.py:60 plinth/modules/tor/__init__.py:56 #, fuzzy @@ -2667,10 +2657,9 @@ msgid "Could not create blog: {error}" msgstr "" #: plinth/modules/ikiwiki/views.py:101 -#, fuzzy, python-brace-format -#| msgid "Archive deleted." +#, python-brace-format msgid "{title} deleted." -msgstr "Archiwum zostało usunięte." +msgstr "{title} zostało usunięte." #: plinth/modules/ikiwiki/views.py:105 #, python-brace-format @@ -2691,7 +2680,7 @@ msgstr "" #: plinth/modules/infinoted/__init__.py:45 msgid "infinoted" -msgstr "" +msgstr "infinoted" #: plinth/modules/infinoted/__init__.py:46 msgid "Gobby Server" @@ -2699,7 +2688,7 @@ msgstr "" #: plinth/modules/infinoted/manifest.py:12 msgid "Gobby" -msgstr "" +msgstr "Gobby" #: plinth/modules/infinoted/manifest.py:14 msgid "Gobby is a collaborative text editor" @@ -2721,7 +2710,6 @@ msgstr "" "XMPP uruchomionym lokalnie." #: plinth/modules/jsxc/__init__.py:43 plinth/modules/jsxc/manifest.py:10 -#, fuzzy msgid "JSXC" msgstr "JSXC" @@ -2753,7 +2741,6 @@ msgid "" msgstr "" #: plinth/modules/letsencrypt/__init__.py:65 -#, fuzzy msgid "Let's Encrypt" msgstr "Let's Encrypt" @@ -2896,7 +2883,7 @@ msgstr "" #: plinth/modules/matrixsynapse/manifest.py:13 msgid "Element" -msgstr "" +msgstr "Element" #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 #: plinth/modules/snapshot/templates/snapshot.html:12 @@ -2984,7 +2971,7 @@ msgstr "" #: plinth/modules/mediawiki/__init__.py:58 #: plinth/modules/mediawiki/manifest.py:9 msgid "MediaWiki" -msgstr "" +msgstr "MediaWiki" #: plinth/modules/mediawiki/__init__.py:59 plinth/templates/index.html:132 msgid "Wiki" @@ -3102,7 +3089,7 @@ msgstr "" #: plinth/modules/minetest/__init__.py:60 #: plinth/modules/minetest/manifest.py:10 msgid "Minetest" -msgstr "" +msgstr "Minetest" #: plinth/modules/minetest/__init__.py:61 #, fuzzy @@ -3189,7 +3176,7 @@ msgstr "" #: plinth/modules/minidlna/__init__.py:47 msgid "MiniDLNA" -msgstr "" +msgstr "MiniDLNA" #: plinth/modules/minidlna/__init__.py:48 msgid "Simple Media Server" @@ -3209,19 +3196,19 @@ msgstr "" #: plinth/modules/minidlna/manifest.py:10 msgid "vlc" -msgstr "" +msgstr "vlc" #: plinth/modules/minidlna/manifest.py:49 msgid "kodi" -msgstr "" +msgstr "kodi" #: plinth/modules/minidlna/manifest.py:88 msgid "yaacc" -msgstr "" +msgstr "yaacc" #: plinth/modules/minidlna/manifest.py:99 msgid "totem" -msgstr "" +msgstr "totem" #: plinth/modules/minidlna/views.py:37 msgid "Specified directory does not exist." @@ -3258,7 +3245,7 @@ msgstr "" #: plinth/modules/mldonkey/__init__.py:56 #: plinth/modules/mldonkey/manifest.py:12 msgid "MLDonkey" -msgstr "" +msgstr "MLDonkey" #: plinth/modules/mldonkey/__init__.py:58 msgid "Peer-to-peer File Sharing" @@ -3266,11 +3253,11 @@ msgstr "" #: plinth/modules/mldonkey/manifest.py:19 msgid "KMLDonkey" -msgstr "" +msgstr "KMLDonkey" #: plinth/modules/mldonkey/manifest.py:31 msgid "AMLDonkey" -msgstr "" +msgstr "AMLDonkey" #: plinth/modules/monkeysphere/__init__.py:19 msgid "" @@ -3298,7 +3285,7 @@ msgstr "" #: plinth/modules/monkeysphere/__init__.py:49 #: plinth/modules/monkeysphere/templates/monkeysphere_details.html:11 msgid "Monkeysphere" -msgstr "" +msgstr "Monkeysphere" #: plinth/modules/monkeysphere/templates/monkeysphere.html:39 msgid "Publishing key to keyserver..." @@ -3333,7 +3320,7 @@ msgstr "" #: plinth/modules/monkeysphere/templates/monkeysphere.html:69 #: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 msgid "Other" -msgstr "" +msgstr "Inne" #: plinth/modules/monkeysphere/templates/monkeysphere.html:106 #, python-format @@ -3342,7 +3329,7 @@ msgstr "" #: plinth/modules/monkeysphere/templates/monkeysphere.html:112 msgid "-" -msgstr "" +msgstr "-" #: plinth/modules/monkeysphere/templates/monkeysphere.html:123 msgid "Import Key" @@ -3437,7 +3424,7 @@ msgstr "" #: plinth/modules/mumble/__init__.py:51 plinth/modules/mumble/manifest.py:12 msgid "Mumble" -msgstr "" +msgstr "Mumble" #: plinth/modules/mumble/__init__.py:52 msgid "Voice Chat" @@ -3457,15 +3444,15 @@ msgstr "" #: plinth/modules/mumble/manifest.py:37 msgid "Plumble" -msgstr "" +msgstr "Plumble" #: plinth/modules/mumble/manifest.py:51 msgid "Mumblefly" -msgstr "" +msgstr "Mumblefly" #: plinth/modules/mumble/manifest.py:60 msgid "Mumla" -msgstr "" +msgstr "Mumla" #: plinth/modules/mumble/views.py:39 msgid "SuperUser password successfully updated." @@ -3662,7 +3649,7 @@ msgstr "" #: plinth/modules/networks/forms.py:238 #: plinth/modules/networks/templates/connection_show.html:129 msgid "SSID" -msgstr "" +msgstr "SSID" #: plinth/modules/networks/forms.py:239 msgid "The visible name of the network." @@ -3710,7 +3697,7 @@ msgstr "" #: plinth/modules/networks/forms.py:255 msgid "BSSID" -msgstr "" +msgstr "BSSID" #: plinth/modules/networks/forms.py:256 msgid "" @@ -3731,7 +3718,7 @@ msgstr "" #: plinth/modules/networks/forms.py:265 msgid "WPA" -msgstr "" +msgstr "WPA" #: plinth/modules/networks/forms.py:265 msgid "Open" @@ -3890,7 +3877,7 @@ msgstr "" #: plinth/modules/networks/templates/connection_show.html:202 #: plinth/modules/networks/templates/connection_show.html:241 msgid "yes" -msgstr "" +msgstr "tak" #: plinth/modules/networks/templates/connection_show.html:69 #: plinth/modules/storage/templates/storage.html:25 @@ -3957,7 +3944,7 @@ msgstr "" #: plinth/modules/networks/templates/connection_show.html:166 msgid "IPv4" -msgstr "" +msgstr "IPv4" #: plinth/modules/networks/templates/connection_show.html:171 #: plinth/modules/networks/templates/connection_show.html:212 @@ -3983,7 +3970,7 @@ msgstr "" #: plinth/modules/networks/templates/connection_show.html:207 msgid "IPv6" -msgstr "" +msgstr "IPv6" #: plinth/modules/networks/templates/connection_show.html:248 msgid "This connection is not active." @@ -4179,7 +4166,7 @@ msgstr "" #, fuzzy #| msgid "Update URL" msgid "Update..." -msgstr "Uaktualnij URL" +msgstr "Uaktualnij..." #: plinth/modules/networks/templates/network_topology_content.html:10 #, fuzzy, python-format @@ -4458,7 +4445,7 @@ msgstr "" #: plinth/modules/networks/views.py:103 plinth/modules/wireguard/__init__.py:50 #: plinth/modules/wireguard/manifest.py:14 msgid "WireGuard" -msgstr "" +msgstr "WireGuard" #: plinth/modules/networks/views.py:110 msgid "ad-hoc" @@ -4565,7 +4552,7 @@ msgstr "Odmowa dostępu" #: plinth/modules/openvpn/__init__.py:60 plinth/modules/openvpn/manifest.py:18 msgid "OpenVPN" -msgstr "" +msgstr "OpenVPN" #: plinth/modules/openvpn/__init__.py:61 #: plinth/modules/wireguard/__init__.py:52 @@ -4580,7 +4567,7 @@ msgstr "" #: plinth/modules/openvpn/manifest.py:48 msgid "Tunnelblick" -msgstr "" +msgstr "Tunnelblick" #: plinth/modules/openvpn/templates/migrate_to_ecc.html:7 msgid "Migrate to ECC" @@ -4682,7 +4669,7 @@ msgstr "" #: plinth/modules/pagekite/__init__.py:65 msgid "PageKite" -msgstr "" +msgstr "PageKite" #: plinth/modules/pagekite/__init__.py:66 msgid "Public Visibility" @@ -4926,7 +4913,7 @@ msgstr "" #: plinth/modules/privoxy/__init__.py:55 msgid "Privoxy" -msgstr "" +msgstr "Privoxy" #: plinth/modules/privoxy/__init__.py:56 msgid "Web Proxy" @@ -4958,7 +4945,7 @@ msgstr "" #: plinth/modules/quassel/__init__.py:59 plinth/modules/quassel/manifest.py:10 msgid "Quassel" -msgstr "" +msgstr "Quassel" #: plinth/modules/quassel/__init__.py:60 msgid "IRC Client" @@ -4966,7 +4953,7 @@ msgstr "" #: plinth/modules/quassel/manifest.py:34 msgid "Quasseldroid" -msgstr "" +msgstr "Quasseldroid" #: plinth/modules/radicale/__init__.py:27 #, python-brace-format @@ -4988,7 +4975,7 @@ msgstr "" #: plinth/modules/radicale/__init__.py:54 #: plinth/modules/radicale/manifest.py:75 msgid "Radicale" -msgstr "" +msgstr "Radicale" #: plinth/modules/radicale/__init__.py:55 msgid "Calendar and Addressbook" @@ -5020,7 +5007,7 @@ msgstr "Dostęp" #: plinth/modules/radicale/manifest.py:10 msgid "DAVx5" -msgstr "" +msgstr "DAVx5" #: plinth/modules/radicale/manifest.py:12 msgid "" @@ -5039,7 +5026,7 @@ msgstr "" #: plinth/modules/radicale/manifest.py:57 msgid "Evolution" -msgstr "" +msgstr "Evolution" #: plinth/modules/radicale/manifest.py:59 msgid "" @@ -5089,7 +5076,7 @@ msgstr "" #: plinth/modules/roundcube/__init__.py:53 #: plinth/modules/roundcube/manifest.py:9 msgid "Roundcube" -msgstr "" +msgstr "Roundcube" #: plinth/modules/roundcube/__init__.py:54 #, fuzzy @@ -5134,7 +5121,7 @@ msgstr "" #: plinth/modules/samba/__init__.py:61 msgid "Samba" -msgstr "" +msgstr "Samba" #: plinth/modules/samba/__init__.py:62 msgid "Network File Storage" @@ -5160,7 +5147,7 @@ msgstr "" #: plinth/modules/samba/manifest.py:68 msgid "Dolphin" -msgstr "" +msgstr "Dolphin" #: plinth/modules/samba/templates/samba.html:32 msgid "Shares" @@ -5242,7 +5229,7 @@ msgstr "" #, fuzzy, python-brace-format #| msgid "Error installing application: {error}" msgid "Error enabling share: {error_message}" -msgstr "Błąd podczas instalowania aplikacji: {error}" +msgstr "Błąd podczas instalowania aplikacji: {error_message}" #: plinth/modules/samba/views.py:111 #, fuzzy @@ -5254,7 +5241,7 @@ msgstr "Aplikacja wyłączona" #, fuzzy, python-brace-format #| msgid "Error installing application: {error}" msgid "Error disabling share: {error_message}" -msgstr "Błąd podczas instalowania aplikacji: {error}" +msgstr "Błąd podczas instalowania aplikacji: {error_message}" #: plinth/modules/searx/__init__.py:25 msgid "" @@ -5274,7 +5261,7 @@ msgstr "" #: plinth/modules/searx/__init__.py:48 plinth/modules/searx/manifest.py:9 msgid "Searx" -msgstr "" +msgstr "Searx" #: plinth/modules/searx/__init__.py:49 msgid "Web Search" @@ -5420,11 +5407,11 @@ msgstr "" #: plinth/modules/security/templates/security_report.html:57 msgid "Yes" -msgstr "" +msgstr "Tak" #: plinth/modules/security/templates/security_report.html:59 msgid "No" -msgstr "" +msgstr "Nie" #: plinth/modules/security/templates/security_report.html:66 #, fuzzy @@ -5453,7 +5440,7 @@ msgstr "" #: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:8 msgid "Shaarli" -msgstr "" +msgstr "Shaarli" #: plinth/modules/shaarli/__init__.py:38 msgid "Bookmarks" @@ -5483,7 +5470,7 @@ msgstr "" #: plinth/modules/shadowsocks/__init__.py:50 msgid "Shadowsocks" -msgstr "" +msgstr "Shadowsocks" #: plinth/modules/shadowsocks/__init__.py:52 msgid "Socks5 Proxy" @@ -5800,7 +5787,7 @@ msgstr "" #: plinth/modules/snapshot/views.py:30 msgid "apt" -msgstr "" +msgstr "apt" #: plinth/modules/snapshot/views.py:41 #, fuzzy @@ -5923,30 +5910,29 @@ msgid "Storage" msgstr "" #: plinth/modules/storage/__init__.py:206 -#, fuzzy, python-brace-format -#| msgid "{disk_size} bytes" +#, python-brace-format msgid "{disk_size:.1f} bytes" -msgstr "{disk_size} bajtów" +msgstr "{disk_size:.1f} bajtów" #: plinth/modules/storage/__init__.py:210 -#, fuzzy, python-brace-format +#, python-brace-format msgid "{disk_size:.1f} KiB" -msgstr "{disk_size} KiB" +msgstr "{disk_size:.1f} KiB" #: plinth/modules/storage/__init__.py:214 -#, fuzzy, python-brace-format +#, python-brace-format msgid "{disk_size:.1f} MiB" -msgstr "{disk_size} MiB" +msgstr "{disk_size:.1f} MiB" #: plinth/modules/storage/__init__.py:218 -#, fuzzy, python-brace-format +#, python-brace-format msgid "{disk_size:.1f} GiB" -msgstr "{disk_size} GiB" +msgstr "{disk_size:.1f} GiB" #: plinth/modules/storage/__init__.py:221 -#, fuzzy, python-brace-format +#, python-brace-format msgid "{disk_size:.1f} TiB" -msgstr "{disk_size} TiB" +msgstr "{disk_size:.1f} TiB" #: plinth/modules/storage/__init__.py:233 msgid "The operation failed." @@ -6174,7 +6160,7 @@ msgstr "" #: plinth/modules/syncthing/__init__.py:59 #: plinth/modules/syncthing/manifest.py:13 msgid "Syncthing" -msgstr "" +msgstr "Syncthing" #: plinth/modules/syncthing/__init__.py:60 msgid "File Synchronization" @@ -6198,7 +6184,7 @@ msgstr "" #: plinth/modules/tahoe/__init__.py:61 msgid "Tahoe-LAFS" -msgstr "" +msgstr "Tahoe-LAFS" #: plinth/modules/tahoe/__init__.py:63 msgid "Distributed File Storage" @@ -6424,7 +6410,7 @@ msgstr "" #: plinth/modules/transmission/__init__.py:51 #: plinth/modules/transmission/manifest.py:9 msgid "Transmission" -msgstr "" +msgstr "Transmission" #: plinth/modules/ttrss/__init__.py:29 msgid "" @@ -6563,7 +6549,10 @@ msgid "" "\n" "\t%(box_name)s is up to date. Press Next to continue.\n" " " -msgstr "Plinth jest aktualny." +msgstr "" +"\n" +"\t%(box_name)s jest aktualny. Press Next to continue.\n" +" " #: plinth/modules/upgrades/templates/upgrades-new-release.html:9 #, fuzzy, python-format @@ -6589,10 +6578,9 @@ msgid "Updating..." msgstr "" #: plinth/modules/upgrades/templates/upgrades_configure.html:48 -#, fuzzy, python-format -#| msgid "There is a new Plinth version available." +#, python-format msgid "There is a new %(box_name)s version available." -msgstr "Nowsza wersja Plinth jest dostępna." +msgstr "Nowsza wersja %(box_name)s jest dostępna." #: plinth/modules/upgrades/templates/upgrades_configure.html:51 #, fuzzy @@ -6749,13 +6737,13 @@ msgstr "" #, fuzzy, python-brace-format #| msgid "Creating LDAP user failed." msgid "Creating LDAP user failed: {error}" -msgstr "Tworzenie użytkownika LDAP się nie udało." +msgstr "Tworzenie użytkownika LDAP się nie udało: {error}" #: plinth/modules/users/forms.py:163 #, fuzzy, python-brace-format #| msgid "Failed to add new user to admin group." msgid "Failed to add new user to {group} group: {error}" -msgstr "Nieudane dodawanie użytkownika do grupy admin." +msgstr "Nieudane dodawanie użytkownika do {group} grupy:{error}" #: plinth/modules/users/forms.py:177 msgid "Authorized SSH Keys" @@ -6799,10 +6787,9 @@ msgid "Changing LDAP user password failed." msgstr "" #: plinth/modules/users/forms.py:405 -#, fuzzy, python-brace-format -#| msgid "Failed to add new user to admin group." +#, python-brace-format msgid "Failed to add new user to admin group: {error}" -msgstr "Nieudane dodawanie użytkownika do grupy admin." +msgstr "Nieudane dodawanie użytkownika do grupy admin: {error}" #: plinth/modules/users/forms.py:424 #, python-brace-format @@ -6902,7 +6889,7 @@ msgstr "" #, fuzzy, python-format #| msgid "Delete Wiki or Blog %(name)s" msgid "Edit User %(username)s" -msgstr "Usuń wiki lub blog %(name)s" +msgstr "Usuń wiki lub blog %(username)s" #: plinth/modules/users/templates/users_update.html:19 #, python-format @@ -7308,7 +7295,7 @@ msgstr "Archiwum zostało usunięte." #: plinth/network.py:29 msgid "PPPoE" -msgstr "" +msgstr "PPPoE" #: plinth/network.py:30 msgid "Generic" @@ -7469,7 +7456,7 @@ msgstr "Klient czatu" #: plinth/templates/clients.html:53 msgid "GNU/Linux" -msgstr "" +msgstr "GNU/Linux" #: plinth/templates/clients.html:55 msgid "Windows" @@ -7491,7 +7478,7 @@ msgstr "" #: plinth/templates/clients.html:86 msgid "F-Droid" -msgstr "" +msgstr "F-Droid" #: plinth/templates/clients.html:88 msgid "App Store" @@ -7503,17 +7490,15 @@ msgstr "" #: plinth/templates/clients.html:111 msgid "Debian:" -msgstr "" +msgstr "Debian:" #: plinth/templates/clients.html:114 -#, fuzzy -#| msgid "Home" msgid "Homebrew:" -msgstr "Dom" +msgstr "Homebrew:" #: plinth/templates/clients.html:117 msgid "RPM:" -msgstr "" +msgstr "RPM:" #: plinth/templates/first_setup.html:24 #, python-format @@ -7704,7 +7689,7 @@ msgstr "" #: plinth/web_framework.py:113 msgid "Gujarati" -msgstr "" +msgstr "Gujarati" #, fuzzy #~| msgid "Domain Name" From c46696ad0abf03008e8f78da6e6dc9c6a1ac890a Mon Sep 17 00:00:00 2001 From: n0nie4HP Date: Mon, 28 Dec 2020 12:40:29 +0000 Subject: [PATCH 16/21] Translated using Weblate (Polish) Currently translated at 34.0% (483 of 1418 strings) --- plinth/locale/pl/LC_MESSAGES/django.po | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/plinth/locale/pl/LC_MESSAGES/django.po b/plinth/locale/pl/LC_MESSAGES/django.po index ecfa99203..87e604db0 100644 --- a/plinth/locale/pl/LC_MESSAGES/django.po +++ b/plinth/locale/pl/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-12-14 18:42-0500\n" "PO-Revision-Date: 2020-12-29 01:10+0000\n" -"Last-Translator: ikmaak \n" +"Last-Translator: n0nie4HP \n" "Language-Team: Polish \n" "Language: pl\n" @@ -761,7 +761,7 @@ msgstr "edytor" #: plinth/modules/bepasty/views.py:25 msgid "viewer" -msgstr "" +msgstr "użytkownik" #: plinth/modules/bepasty/views.py:50 msgid "Read" @@ -939,7 +939,7 @@ msgstr "" #: plinth/modules/calibre/__init__.py:60 plinth/modules/calibre/manifest.py:9 msgid "calibre" -msgstr "" +msgstr "calibre" #: plinth/modules/calibre/__init__.py:61 msgid "E-book Library" @@ -1017,7 +1017,7 @@ msgstr "" #: plinth/modules/calibre/views.py:64 plinth/modules/gitweb/views.py:138 #, python-brace-format msgid "{name} deleted." -msgstr "" +msgstr "Usunięto {name}." #: plinth/modules/calibre/views.py:68 plinth/modules/gitweb/views.py:142 #, python-brace-format @@ -1369,19 +1369,19 @@ msgstr "nie udało się" #: plinth/modules/diagnostics/__init__.py:98 msgid "error" -msgstr "" +msgstr "błąd" #. Translators: This is the unit of computer storage Mebibyte similar to #. Megabyte. #: plinth/modules/diagnostics/__init__.py:191 msgid "MiB" -msgstr "" +msgstr "MiB" #. Translators: This is the unit of computer storage Gibibyte similar to #. Gigabyte. #: plinth/modules/diagnostics/__init__.py:196 msgid "GiB" -msgstr "" +msgstr "GiB" #: plinth/modules/diagnostics/__init__.py:203 msgid "You should disable some apps to reduce memory usage." @@ -1423,6 +1423,9 @@ msgid "" " App: %(app_name)s\n" " " msgstr "" +"\n" +" Aplikacja: %(app_name)s\n" +" " #: plinth/modules/diagnostics/templates/diagnostics_app.html:10 msgid "Diagnostic Results" @@ -1624,7 +1627,7 @@ msgstr "Użytkownik który był używany podczas zakladania konta." #: plinth/modules/dynamicdns/forms.py:65 msgid "GnuDIP" -msgstr "" +msgstr "GnuDIP" #: plinth/modules/dynamicdns/forms.py:68 #, fuzzy @@ -1872,7 +1875,7 @@ msgstr "Dino" #: plinth/modules/ejabberd/manifest.py:85 msgid "Gajim" -msgstr "" +msgstr "Gajim" #: plinth/modules/ejabberd/templates/ejabberd.html:18 #, python-format From d94af183e765747c13e5ce60eaa4e41915de5078 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Doma=20Gerg=C5=91?= Date: Mon, 28 Dec 2020 22:06:28 +0000 Subject: [PATCH 17/21] Translated using Weblate (Hungarian) Currently translated at 88.7% (1259 of 1418 strings) --- plinth/locale/hu/LC_MESSAGES/django.po | 943 +++++++------------------ 1 file changed, 273 insertions(+), 670 deletions(-) diff --git a/plinth/locale/hu/LC_MESSAGES/django.po b/plinth/locale/hu/LC_MESSAGES/django.po index 5aadfbe45..11a319dc8 100644 --- a/plinth/locale/hu/LC_MESSAGES/django.po +++ b/plinth/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-12-14 18:42-0500\n" -"PO-Revision-Date: 2020-07-20 02:41+0000\n" +"PO-Revision-Date: 2020-12-29 01:10+0000\n" "Last-Translator: Doma Gergő \n" "Language-Team: Hungarian \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.4.1-dev\n" #: doc/dev/_templates/layout.html:11 msgid "Page source" @@ -91,10 +91,8 @@ msgid "Error installing application: {error}" msgstr "Hiba lépett fel az alkalmazás telepítésekor: {error}" #: plinth/modules/apache/__init__.py:41 -#, fuzzy -#| msgid "Chat Server" msgid "Apache HTTP Server" -msgstr "Chat szerver" +msgstr "Apache HTTP szerver" #: plinth/modules/apache/__init__.py:44 #: plinth/modules/monkeysphere/templates/monkeysphere.html:67 @@ -156,10 +154,8 @@ msgid "{app} (No data to backup)" msgstr "{app} (Nincs mit menteni)" #: plinth/modules/backups/forms.py:50 -#, fuzzy -#| msgid "Create Repository" msgid "Repository" -msgstr "Tároló létrehozása" +msgstr "Tároló" #: plinth/modules/backups/forms.py:52 #: plinth/modules/backups/templates/backups_delete.html:18 @@ -230,10 +226,8 @@ msgstr "" "biztonsági mentéssel együtt van tárolva." #: plinth/modules/backups/forms.py:122 -#, fuzzy -#| msgid "Create Repository" msgid "Key in Repository" -msgstr "Tároló létrehozása" +msgstr "Kulcs a tárolóban" #: plinth/modules/backups/forms.py:122 plinth/modules/searx/forms.py:15 msgid "None" @@ -646,6 +640,11 @@ msgid "" "audio, video and PDF documents can be previewed in the browser. Shared files " "can be set to expire after a time period." msgstr "" +"A bepasty egy webalkalmazás, amely nagy fájlok feltöltését és megosztását " +"teszi lehetővé. A szöveg- és kódrészleteket lehet beilleszteni és " +"megosztani. A böngészőben megtekinthetők a szöveges, képi, audio, video és " +"PDF dokumentumok. A megosztott fájlokhoz beállítható, hogy egy bizonyos idő " +"után lejárjanak." #: plinth/modules/bepasty/__init__.py:27 msgid "" @@ -654,6 +653,10 @@ msgid "" "password, you can share it with the users who should have the associated " "permissions." msgstr "" +"A bepasty nem használ felhasználóneveket a bejelentkezéshez, csak " +"jelszavakat. Minden jelszóhoz engedélyek halmaza társítható hozzá. Miután " +"létrehozta a jelszót, megoszthatja azt azokkal felhasználókkal, akiknek " +"rendelkezniük kell a társított engedélyekkel." #: plinth/modules/bepasty/__init__.py:31 msgid "" @@ -662,56 +665,55 @@ msgid "" "revoke access for a single person or group, by removing their password from " "the list." msgstr "" +"Több jelszót is létrehozhatsz ugyanazokkal a jogosultságokkal, és " +"terjesztheted azokat különböző személyeknek vagy csoportoknak. Ez lehetővé " +"teszi, hogy később visszavond egyetlen személy vagy csoport hozzáférését " +"azáltal, hogy jelszavukat eltávolítod a listáról." #: plinth/modules/bepasty/__init__.py:40 plinth/modules/bepasty/__init__.py:49 msgid "Read a file, if a web link to the file is available" -msgstr "" +msgstr "Fájlt olvasása, ha elérhető a fájlra mutató weblink" #: plinth/modules/bepasty/__init__.py:41 -#, fuzzy -#| msgid "Restore from uploaded file" msgid "Create or upload files" -msgstr "Visszaállítás a feltöltött fájlból" +msgstr "Fájlok létrehozása vagy feltöltése" #: plinth/modules/bepasty/__init__.py:42 msgid "List all files and their web links" -msgstr "" +msgstr "Fájlok és azok weblinkjeinek listázása" #: plinth/modules/bepasty/__init__.py:43 -#, fuzzy -#| msgid "Delete User" msgid "Delete files" -msgstr "Felhasználó törlése" +msgstr "Fájlok törlése" #: plinth/modules/bepasty/__init__.py:44 msgid "Administer files: lock/unlock files" -msgstr "" +msgstr "Fájlok adminisztrációja: fájlok zárolása / feloldása" #: plinth/modules/bepasty/__init__.py:48 msgid "None, password is always required" -msgstr "" +msgstr "Nincs, jelszó mindig szükséges" #: plinth/modules/bepasty/__init__.py:50 msgid "List and read all files" -msgstr "" +msgstr "Az összes fájl listázása és olvasása" #: plinth/modules/bepasty/__init__.py:63 plinth/modules/bepasty/manifest.py:9 msgid "bepasty" -msgstr "" +msgstr "bepasty" #: plinth/modules/bepasty/__init__.py:65 -#, fuzzy -#| msgid "File Sharing" msgid "File & Snippet Sharing" -msgstr "Fájlmegosztás" +msgstr "Fájl és kódrészlet megosztása" #: plinth/modules/bepasty/forms.py:17 msgid "Public Access (default permissions)" -msgstr "" +msgstr "Nyilvános hozzáférés (alapértelmezett jogosultságok)" #: plinth/modules/bepasty/forms.py:18 msgid "Permissions for anonymous users, who have not provided a password." msgstr "" +"Jogosultságok névtelen felhasználók számára, akik nem adtak meg jelszót." #: plinth/modules/bepasty/forms.py:27 #: plinth/modules/bepasty/templates/bepasty.html:30 @@ -723,34 +725,30 @@ msgstr "Engedélyek" msgid "" "Users that log in with this password will have the selected permissions." msgstr "" +"Azok a felhasználók, akik ezzel a jelszóval jelentkeznek be, a kiválasztott " +"engedélyekkel fognak rendelkezni." #: plinth/modules/bepasty/forms.py:33 #: plinth/modules/bepasty/templates/bepasty.html:31 msgid "Comment" -msgstr "" +msgstr "Megjegyzés" #: plinth/modules/bepasty/forms.py:34 msgid "Any comment to help you remember the purpose of this password." -msgstr "" +msgstr "Bármilyen megjegyzés, amely segít megjegyezni a jelszó célját." #: plinth/modules/bepasty/templates/bepasty.html:12 -#, fuzzy -#| msgid "Change Password" msgid "Manage Passwords" -msgstr "Jelszómódosítás" +msgstr "Jelszavak kezelése" #: plinth/modules/bepasty/templates/bepasty.html:16 #: plinth/modules/bepasty/templates/bepasty.html:18 -#, fuzzy -#| msgid "Show password" msgid "Add password" -msgstr "Jelszó mutatása" +msgstr "Jelszó hozzáadása" #: plinth/modules/bepasty/templates/bepasty.html:23 -#, fuzzy -#| msgid "No shares currently configured." msgid "No passwords currently configured." -msgstr "Jelenleg nincs beállított megosztás." +msgstr "Jelenleg nincs beállítva jelszó." #: plinth/modules/bepasty/templates/bepasty.html:29 #: plinth/modules/dynamicdns/forms.py:106 plinth/modules/networks/forms.py:204 @@ -760,21 +758,19 @@ msgstr "Jelszó" #: plinth/modules/bepasty/views.py:23 msgid "admin" -msgstr "" +msgstr "adminisztrátor" #: plinth/modules/bepasty/views.py:24 -#, fuzzy -#| msgid "Create Repository" msgid "editor" -msgstr "Tároló létrehozása" +msgstr "szerkesztő" #: plinth/modules/bepasty/views.py:25 msgid "viewer" -msgstr "" +msgstr "megtekintő" #: plinth/modules/bepasty/views.py:50 msgid "Read" -msgstr "" +msgstr "Olvas" #: plinth/modules/bepasty/views.py:51 msgid "Create" @@ -782,7 +778,7 @@ msgstr "Létrehoz" #: plinth/modules/bepasty/views.py:52 msgid "List" -msgstr "" +msgstr "Listáz" #: plinth/modules/bepasty/views.py:53 #: plinth/modules/letsencrypt/templates/letsencrypt.html:91 @@ -797,7 +793,7 @@ msgstr "Törlés" #: plinth/modules/bepasty/views.py:54 msgid "Admin" -msgstr "" +msgstr "Adminisztrál" #: plinth/modules/bepasty/views.py:91 plinth/modules/searx/views.py:38 #: plinth/modules/searx/views.py:49 plinth/modules/tor/views.py:130 @@ -812,22 +808,16 @@ msgid "An error occurred during configuration." msgstr "Hiba történt a beállítás közben." #: plinth/modules/bepasty/views.py:105 -#, fuzzy -#| msgid "Password updated" msgid "Password added." -msgstr "Jelszó frissítve" +msgstr "Jelszó hozzáadva." #: plinth/modules/bepasty/views.py:110 -#, fuzzy -#| msgid "Password" msgid "Add Password" -msgstr "Jelszó" +msgstr "Jelszó hozzáadása" #: plinth/modules/bepasty/views.py:127 -#, fuzzy -#| msgid "Password updated" msgid "Password deleted." -msgstr "Jelszó frissítve" +msgstr "Jelszó törölve." #: plinth/modules/bind/__init__.py:29 msgid "" @@ -921,6 +911,9 @@ msgid "" "store your e-books on your {box_name}, read them online or from any of your " "devices." msgstr "" +"A calibre kiszolgáló online hozzáférést biztosít az e-könyv gyűjteményedhez. " +"{box_name} eszközödön tárolhatod e-könyveidet, olvashatod online vagy " +"bármely eszközödről." #: plinth/modules/calibre/__init__.py:33 msgid "" @@ -950,22 +943,17 @@ msgid "E-book Library" msgstr "" #: plinth/modules/calibre/forms.py:18 -#, fuzzy -#| msgid "Name of the repository" msgid "Name of the new library" -msgstr "Tároló neve" +msgstr "Az új könyvtár neve" #: plinth/modules/calibre/forms.py:27 -#, fuzzy -#| msgid "A share with this name already exists." msgid "A library with this name already exists." -msgstr "Egy megosztás ezzel a névvel már létezik." +msgstr "Már létezik ilyen nevű könyvtár." #: plinth/modules/calibre/templates/calibre-delete-library.html:11 -#, fuzzy, python-format -#| msgid "Delete Git Repository %(name)s" +#, python-format msgid "Delete calibre Library %(name)s" -msgstr "%(name)s Git tároló törlése" +msgstr "%(name)s calibre könyvtár törlése" #: plinth/modules/calibre/templates/calibre-delete-library.html:17 msgid "" @@ -982,29 +970,22 @@ msgid "Delete %(name)s" msgstr "%(name)s törlése" #: plinth/modules/calibre/templates/calibre.html:23 -#, fuzzy -#| msgid "Manage Repositories" msgid "Manage Libraries" -msgstr "Tárolók kezelése" +msgstr "Könyvtárak kezelése" #: plinth/modules/calibre/templates/calibre.html:27 #: plinth/modules/calibre/templates/calibre.html:29 -#, fuzzy -#| msgid "Create Repository" msgid "Create Library" -msgstr "Tároló létrehozása" +msgstr "Könyvtár létrehozása" #: plinth/modules/calibre/templates/calibre.html:36 -#, fuzzy -#| msgid "No repositories available." msgid "No libraries available." -msgstr "Nincs elérhető tároló." +msgstr "Nincs elérhető könyvtár." #: plinth/modules/calibre/templates/calibre.html:43 -#, fuzzy, python-format -#| msgid "Delete site %(site)s" +#, python-format msgid "Delete library %(library)s" -msgstr "%(site)s webhely törlése" +msgstr "%(library)s könyvtár törlése" #: plinth/modules/calibre/templates/calibre.html:49 #, python-format @@ -1012,16 +993,12 @@ msgid "Go to library %(library)s" msgstr "" #: plinth/modules/calibre/views.py:39 -#, fuzzy -#| msgid "Repository created." msgid "Library created." -msgstr "Tároló létrehozva." +msgstr "Könyvtár létrehozva." #: plinth/modules/calibre/views.py:50 -#, fuzzy -#| msgid "An error occurred while creating the repository." msgid "An error occurred while creating the library." -msgstr "Hiba történt a tároló létrehozása közben." +msgstr "Hiba történt a könyvtár létrehozása közben." #: plinth/modules/calibre/views.py:64 plinth/modules/gitweb/views.py:138 #, python-brace-format @@ -1388,17 +1365,13 @@ msgid "Diagnostics" msgstr "Hibaellenőrzés" #: plinth/modules/diagnostics/__init__.py:96 -#, fuzzy -#| msgid "Quassel" msgid "passed" -msgstr "Quassel" +msgstr "sikerült" #: plinth/modules/diagnostics/__init__.py:97 #: plinth/modules/networks/views.py:49 -#, fuzzy -#| msgid "Setup failed." msgid "failed" -msgstr "Beállítás sikertelen." +msgstr "sikertelen" #: plinth/modules/diagnostics/__init__.py:98 msgid "error" @@ -1413,10 +1386,8 @@ msgstr "" #. Translators: This is the unit of computer storage Gibibyte similar to #. Gigabyte. #: plinth/modules/diagnostics/__init__.py:196 -#, fuzzy -#| msgid "Git" msgid "GiB" -msgstr "Git" +msgstr "GiB" #: plinth/modules/diagnostics/__init__.py:203 msgid "You should disable some apps to reduce memory usage." @@ -1464,10 +1435,9 @@ msgid "Diagnostic Results" msgstr "Az ellenőrzés eredménye" #: plinth/modules/diagnostics/templates/diagnostics_app.html:12 -#, fuzzy, python-format -#| msgid "App: %(app_id)s" +#, python-format msgid "App: %(app_name)s" -msgstr "Alkalmazás: %(app_id)s" +msgstr "Alkalmazás: %(app_name)s" #: plinth/modules/diagnostics/templates/diagnostics_app.html:21 msgid "This app does not support diagnostics" @@ -1668,10 +1638,8 @@ msgid "GnuDIP" msgstr "" #: plinth/modules/dynamicdns/forms.py:68 -#, fuzzy -#| msgid "Update URL" msgid "other update URL" -msgstr "Frissítési URL" +msgstr "egyéb frissítési URL" #: plinth/modules/dynamicdns/forms.py:70 msgid "Enable Dynamic DNS" @@ -1806,7 +1774,7 @@ msgstr "Legutolsó frissítés" #: plinth/modules/dynamicdns/views.py:26 plinth/modules/help/__init__.py:53 #: plinth/templates/help-menu.html:46 plinth/templates/help-menu.html:47 msgid "About" -msgstr "Leírás" +msgstr "Névjegy" #: plinth/modules/dynamicdns/views.py:32 #: plinth/modules/firewall/templates/firewall.html:10 @@ -2180,10 +2148,8 @@ msgstr "" "Olyan betűkből és számokból álló szöveg ami egyedien azonosítja a tárolót." #: plinth/modules/gitweb/forms.py:134 -#, fuzzy -#| msgid "Default Skin" msgid "Default branch" -msgstr "Alapértelmezett felszín" +msgstr "Alapértelmezett ág" #: plinth/modules/gitweb/forms.py:135 msgid "Gitweb displays this as a default branch." @@ -2251,8 +2217,6 @@ msgstr "Dokumentáció" #: plinth/modules/help/__init__.py:37 plinth/templates/help-menu.html:20 #: plinth/templates/help-menu.html:21 plinth/templates/index.html:128 -#, fuzzy -#| msgid "Manual" msgctxt "User guide" msgid "Manual" msgstr "Kézikönyv" @@ -2348,12 +2312,11 @@ msgstr "" "Az eszközön %(os_release)s és a %(box_name)s %(version)s számú verziója fut." #: plinth/modules/help/templates/help_about.html:69 -#, fuzzy, python-format -#| msgid "There is a new %(box_name)s version available." +#, python-format msgid "" "There is a new %(box_name)s version available." -msgstr "Új %(box_name)s verzió hozzáférhető." +msgstr "Új %(box_name)s verzió elérhető." #: plinth/modules/help/templates/help_about.html:74 #: plinth/modules/upgrades/templates/upgrades_configure.html:53 @@ -2984,19 +2947,14 @@ msgstr "" "keresztül." #: plinth/modules/matrixsynapse/__init__.py:40 -#, fuzzy -#| msgid "" -#| "To communicate, you can use the available clients for mobile, desktop and the web. Riot client is recommended." msgid "" "To communicate, you can use the available clients for mobile, desktop and the web. Element client is recommended." msgstr "" -"A kommunikációhoz válassz az elérhető kliensek közül, akár mobil, asztali vagy webes felületűt. Riot kliens az ajánlott." +"A kommunikációhoz válassz az elérhető kliensek közül, akár mobil, asztali vagy webes felületűt. Element kliens az ajánlott." #: plinth/modules/matrixsynapse/__init__.py:67 msgid "Matrix Synapse" @@ -3156,10 +3114,8 @@ msgstr "" "üresen ezt a mezőt a jelenlegi jelszó megtartásához." #: plinth/modules/mediawiki/forms.py:56 -#, fuzzy -#| msgid "Server" msgid "Server URL" -msgstr "Kiszolgáló" +msgstr "Kiszolgáló URL" #: plinth/modules/mediawiki/forms.py:57 msgid "" @@ -3229,10 +3185,8 @@ msgid "Default skin changed" msgstr "Az alapértelmezett felszín megváltozott" #: plinth/modules/mediawiki/views.py:90 -#, fuzzy -#| msgid "Share deleted." msgid "Server URL updated" -msgstr "Megosztás törölve." +msgstr "Kiszolgáló URL frissítve" #: plinth/modules/minetest/__init__.py:38 #, python-brace-format @@ -3697,10 +3651,8 @@ msgid "All web apps" msgstr "Összes webalkalmazás" #: plinth/modules/names/templates/names.html:16 -#, fuzzy -#| msgid "Service" msgid "Services" -msgstr "Szolgáltatás" +msgstr "Szolgáltatások" #: plinth/modules/networks/__init__.py:41 msgid "" @@ -3781,8 +3733,6 @@ msgid "Shared" msgstr "Megosztott" #: plinth/modules/networks/forms.py:47 plinth/modules/networks/forms.py:78 -#, fuzzy -#| msgid "Manual" msgctxt "Not automatically" msgid "Manual" msgstr "Kézikönyv" @@ -4369,10 +4319,8 @@ msgid "Edit Connection" msgstr "Kapcsolat szerkesztése" #: plinth/modules/networks/templates/connections_list.html:8 -#, fuzzy -#| msgid "Connection" msgid "Connections" -msgstr "Kapcsolat" +msgstr "Kapcsolatok" #: plinth/modules/networks/templates/connections_list.html:12 #: plinth/modules/networks/templates/connections_list.html:14 @@ -4432,10 +4380,8 @@ msgid "Next" msgstr "" #: plinth/modules/networks/templates/internet_connectivity_main.html:9 -#, fuzzy -#| msgid "Connection Type" msgid "Your Internet Connection Type" -msgstr "Kapcsolat típusa" +msgstr "Internetkapcsolatod típusa" #: plinth/modules/networks/templates/internet_connectivity_main.html:14 msgid "" @@ -4462,16 +4408,13 @@ msgstr "" #: plinth/modules/networks/templates/internet_connectivity_main.html:41 #: plinth/modules/networks/templates/network_topology_main.html:41 -#, fuzzy -#| msgid "Update" msgid "Update..." -msgstr "Frissítés" +msgstr "Frissítés…" #: plinth/modules/networks/templates/network_topology_content.html:10 -#, fuzzy, python-format -#| msgid "Direct connection to the Internet." +#, python-format msgid "How is Your %(box_name)s Connected to the Internet?" -msgstr "Közvetlen kapcsolat az Internetre." +msgstr "%(box_name)s eszközöd hogyan kapcsolódik az internethez?" #: plinth/modules/networks/templates/network_topology_content.html:16 #, python-format @@ -4522,10 +4465,9 @@ msgid "" msgstr "" #: plinth/modules/networks/templates/router_configuration_content.html:10 -#, fuzzy, python-format -#| msgid "%(box_name)s is up to date." +#, python-format msgid "Setup %(box_name)s Behind a Router" -msgstr "A %(box_name)s naprakész." +msgstr "%(box_name)s beállítása router mögé" #: plinth/modules/networks/templates/router_configuration_content.html:16 #, python-format @@ -4571,28 +4513,20 @@ msgid "" msgstr "" #: plinth/modules/networks/views.py:27 -#, fuzzy -#| msgid "Disabled" msgid "disabled" -msgstr "Letiltva" +msgstr "letiltva" #: plinth/modules/networks/views.py:28 -#, fuzzy -#| msgid "Automatic" msgid "automatic" -msgstr "Automatikus" +msgstr "automatikus" #: plinth/modules/networks/views.py:29 -#, fuzzy -#| msgid "Manual" msgid "manual" -msgstr "Kézikönyv" +msgstr "kézi" #: plinth/modules/networks/views.py:30 -#, fuzzy -#| msgid "Shared" msgid "shared" -msgstr "Megosztott" +msgstr "megosztott" #: plinth/modules/networks/views.py:31 msgid "link-local" @@ -4604,40 +4538,28 @@ msgid "unknown" msgstr "" #: plinth/modules/networks/views.py:38 -#, fuzzy -#| msgid "Manage" msgid "unmanaged" -msgstr "Kezel" +msgstr "nem-menedzselt" #: plinth/modules/networks/views.py:39 -#, fuzzy -#| msgid "Available Domains" msgid "unavailable" -msgstr "Elérhető Domainek" +msgstr "elérhetetlen" #: plinth/modules/networks/views.py:40 -#, fuzzy -#| msgid "cable is connected" msgid "disconnected" -msgstr "kábel csatlakoztatva" +msgstr "szétkapcsolva" #: plinth/modules/networks/views.py:41 -#, fuzzy -#| msgid "Sharing" msgid "preparing" -msgstr "Megosztás" +msgstr "előkészítés" #: plinth/modules/networks/views.py:42 -#, fuzzy -#| msgid "Connection" msgid "connecting" -msgstr "Kapcsolat" +msgstr "kapcsolódás" #: plinth/modules/networks/views.py:43 -#, fuzzy -#| msgid "Use HTTP basic authentication" msgid "needs authentication" -msgstr "HTTP alap hitelesítés használata" +msgstr "hitelesítést igényel" #: plinth/modules/networks/views.py:44 msgid "requesting address" @@ -4652,44 +4574,32 @@ msgid "waiting for secondary" msgstr "" #: plinth/modules/networks/views.py:47 -#, fuzzy -#| msgid "Deactivate" msgid "activated" -msgstr "Deaktivál" +msgstr "aktiválva" #: plinth/modules/networks/views.py:48 -#, fuzzy -#| msgid "Deactivate" msgid "deactivating" -msgstr "Deaktivál" +msgstr "deaktiválás" #: plinth/modules/networks/views.py:56 -#, fuzzy -#| msgid "State reason" msgid "no reason" -msgstr "Az állapot oka" +msgstr "nincs ok" #: plinth/modules/networks/views.py:58 msgid "unknown error" msgstr "" #: plinth/modules/networks/views.py:60 -#, fuzzy -#| msgid "The device is not mounted." msgid "device is now managed" -msgstr "Az eszköz nincs felcsatolva." +msgstr "az eszköz most már menedzselt" #: plinth/modules/networks/views.py:62 -#, fuzzy -#| msgid "The device is not mounted." msgid "device is now unmanaged" -msgstr "Az eszköz nincs felcsatolva." +msgstr "az eszköz most már nem-menedzselt" #: plinth/modules/networks/views.py:64 -#, fuzzy -#| msgid "configuration file: {file}" msgid "configuration failed" -msgstr "konfigurációs fájl: {file}" +msgstr "konfiguráció sikertelen" #: plinth/modules/networks/views.py:66 msgid "secrets required" @@ -4704,48 +4614,36 @@ msgid "DHCP client error" msgstr "" #: plinth/modules/networks/views.py:72 -#, fuzzy -#| msgid "Archive deleted." msgid "DHCP client failed" -msgstr "Archívum törölve." +msgstr "DHCP kliens sikertelen" #: plinth/modules/networks/views.py:74 msgid "shared connection service failed to start" msgstr "" #: plinth/modules/networks/views.py:76 -#, fuzzy -#| msgid "The operation failed." msgid "shared connection service failed" -msgstr "A művelet sikertelen." +msgstr "megosztott kapcsolatszolgáltatás sikertelen" #: plinth/modules/networks/views.py:78 -#, fuzzy -#| msgid "The device is already mounted." msgid "device was removed" -msgstr "Az eszköz már fel lett csatolva." +msgstr "eszköz el lett távolítva" #: plinth/modules/networks/views.py:80 -#, fuzzy -#| msgid "The device is mounted by another user." msgid "device disconnected by user" -msgstr "Az eszközt egy másik felhasználó felcsatolva." +msgstr "eszközt a felhasználó leválasztotta" #: plinth/modules/networks/views.py:82 msgid "a dependency of the connection failed" msgstr "" #: plinth/modules/networks/views.py:84 -#, fuzzy -#| msgid "Repository not found" msgid "Wi-Fi network not found" -msgstr "Tároló nem található" +msgstr "Wi-Fi hálózat nem található" #: plinth/modules/networks/views.py:86 -#, fuzzy -#| msgid "The operation failed." msgid "a secondary connection failed" -msgstr "A művelet sikertelen." +msgstr "másodlagos kapcsolat sikertelen" #: plinth/modules/networks/views.py:88 msgid "new connection activation was enqueued" @@ -4760,16 +4658,12 @@ msgid "selected IP method is not supported" msgstr "" #: plinth/modules/networks/views.py:101 -#, fuzzy -#| msgid "Generic" msgid "generic" -msgstr "Általános" +msgstr "általános" #: plinth/modules/networks/views.py:102 -#, fuzzy -#| msgid "Network Interface" msgid "TUN or TAP interface" -msgstr "Hálózati interfész" +msgstr "TUN vagy TAP interfész" #: plinth/modules/networks/views.py:103 plinth/modules/wireguard/__init__.py:50 #: plinth/modules/wireguard/manifest.py:14 @@ -4777,28 +4671,20 @@ msgid "WireGuard" msgstr "" #: plinth/modules/networks/views.py:110 -#, fuzzy -#| msgid "Ad-hoc" msgid "ad-hoc" -msgstr "Ad-hoc" +msgstr "ad-hoc" #: plinth/modules/networks/views.py:111 -#, fuzzy -#| msgid "Infrastructure" msgid "infrastructure" -msgstr "Infrastuktúra" +msgstr "infrastuktúra" #: plinth/modules/networks/views.py:112 -#, fuzzy -#| msgid "Access Point" msgid "access point" -msgstr "Hozzáférési pont" +msgstr "hozzáférési pont" #: plinth/modules/networks/views.py:113 -#, fuzzy -#| msgid "Access Point" msgid "mesh point" -msgstr "Hozzáférési pont" +msgstr "hálópont" #: plinth/modules/networks/views.py:127 msgid "Network Connections" @@ -4889,10 +4775,8 @@ msgstr "" "érdekében." #: plinth/modules/openvpn/__init__.py:57 -#, fuzzy -#| msgid "Connection Type" msgid "Connect to VPN services" -msgstr "Kapcsolat típusa" +msgstr "Csatlakozás VPN-szolgáltatásokhoz" #: plinth/modules/openvpn/__init__.py:60 plinth/modules/openvpn/manifest.py:18 msgid "OpenVPN" @@ -4943,35 +4827,26 @@ msgid "" msgstr "" #: plinth/modules/openvpn/templates/migrate_to_ecc.html:38 -#, fuzzy -#| msgid "Moderate" msgid "Migrate" -msgstr "Enyhe" +msgstr "Áttelepítés" #: plinth/modules/openvpn/templates/openvpn.html:22 msgid "Profile" msgstr "Profil" #: plinth/modules/openvpn/templates/openvpn.html:25 -#, fuzzy, python-format -#| msgid "" -#| "To connect to %(box_name)s's VPN, you need to download a profile and feed " -#| "it to an OpenVPN client on your mobile or desktop machine. OpenVPN " -#| "Clients are available for most platforms. See the manual page " -#| "on recommended clients and instructions on how to configure them." +#, python-format msgid "" "To connect to %(box_name)s's VPN, you need to download a profile and feed it " "to an OpenVPN client on your mobile or desktop machine. OpenVPN Clients are " "available for most platforms. Click \"Learn more...\" above for recommended " "clients and instructions on how to configure them." msgstr "" -"Ahhoz, hogy a te %(box_name)s eszközöd virtuális magánhálózatára (VPN) " +"Ahhoz, hogy a Te %(box_name)s eszközöd virtuális magánhálózatára (VPN) " "kapcsolódj, le kell töltened a profilt és azt meg kell adnod a mobil vagy " "asztali géped OpenVPN kliensének. OpenVPN kliensek a legtöbb platformra " -"elérhetőek. Tekintsd meg a dokumentációt az ajánlott " -"kliensekhez és a beállítási utasításokhoz." +"elérhetőek. Kattints a fentebbi „További információk…” gombra az ajánlott " +"kliensek és a beállítási utasítások megtekintéséhez." #: plinth/modules/openvpn/templates/openvpn.html:35 #, python-format @@ -5031,13 +4906,7 @@ msgid "Your ISP limits incoming connections." msgstr "Az internetszolgáltatód korlátozza a bejövő kapcsolatokat." #: plinth/modules/pagekite/__init__.py:44 -#, fuzzy, python-brace-format -#| msgid "" -#| "PageKite works around NAT, firewalls and IP-address limitations by using " -#| "a combination of tunnels and reverse proxies. You can use any pagekite " -#| "service provider, for example pagekite." -#| "net. In future it might be possible to use your buddy's {box_name} " -#| "for this." +#, python-brace-format msgid "" "PageKite works around NAT, firewalls and IP address limitations by using a " "combination of tunnels and reverse proxies. You can use any pagekite service " @@ -5047,7 +4916,7 @@ msgstr "" "A PageKite megkerüli a NAT, tűzfal és IP-cím korlátozásokat alagutak és " "fordított proxy-k kombinációjának használatával. Bármely pagekite " "szolgáltatót használhatod, pl.: pagekite." -"net. A jövőben talán a barátod {box_name} eszközét is lehetőséged lesz " +"net. A jövőben talán a barátod {box_name} eszközét is lehetőséged lesz " "használni erre a célra." #: plinth/modules/pagekite/__init__.py:65 @@ -5127,14 +4996,8 @@ msgid "Deleted custom service" msgstr "Törölt egyéni szolgáltatás" #: plinth/modules/pagekite/forms.py:174 -#, fuzzy -#| msgid "" -#| "This service is available as a standard service. Please use the " -#| "\"Standard Services\" page to enable it." msgid "This service is already available as a standard service." -msgstr "" -"Ez egy szabványosként elérhető szolgáltatás. Kérlek használd a \"Szabványos " -"szolgáltatások\" lapot az engedélyezéséhez." +msgstr "Ez a szolgáltatás már elérhető szabványosként." #: plinth/modules/pagekite/forms.py:182 msgid "Added custom service" @@ -5150,10 +5013,8 @@ msgstr "Egyedi szolgáltatások" #: plinth/modules/pagekite/templates/pagekite_configure.html:29 #: plinth/modules/pagekite/templates/pagekite_configure.html:31 -#, fuzzy -#| msgid "Custom Services" msgid "Add Custom Service" -msgstr "Egyedi szolgáltatások" +msgstr "Egyedi szolgáltatás hozzáadása" #: plinth/modules/pagekite/templates/pagekite_configure.html:47 #, python-format @@ -5166,10 +5027,8 @@ msgstr "Szolgáltatás törlése" #: plinth/modules/pagekite/templates/pagekite_custom_services.html:11 #: plinth/modules/pagekite/views.py:33 -#, fuzzy -#| msgid "Added custom service" msgid "Add custom PageKite service" -msgstr "Egyedi szolgáltatás hozzáadva" +msgstr "Egyedi PageKite szolgáltatás hozzáadása" #: plinth/modules/pagekite/templates/pagekite_custom_services.html:14 msgid "" @@ -5230,10 +5089,8 @@ msgid "" msgstr "" #: plinth/modules/performance/__init__.py:46 -#, fuzzy -#| msgid "System Configuration" msgid "System Monitoring" -msgstr "Rendszerbeállítások" +msgstr "Rendszerfigyelés" #: plinth/modules/power/__init__.py:16 msgid "Restart or shut down the system." @@ -5383,12 +5240,7 @@ msgid "Quasseldroid" msgstr "Quasseldroid" #: plinth/modules/radicale/__init__.py:27 -#, fuzzy, python-brace-format -#| msgid "" -#| "Radicale is a CalDAV and CardDAV server. It allows synchronization and " -#| "sharing of scheduling and contact data. To use Radicale, a supported client application is " -#| "needed. Radicale can be accessed by any user with a {box_name} login." +#, python-brace-format msgid "" "Radicale is a CalDAV and CardDAV server. It allows synchronization and " "sharing of scheduling and contact data. To use Radicale, a támogatott kliens alkalmazásra is. A Radicale elérhető " -"bármely felhasználó számára „{box_name}” felhasználónév használatával." +"Radicale használatához szükség lesz egy támogatott kliens alkalmazásra " +"is. A Radicale elérhető bármely felhasználó számára „{box_name}” " +"felhasználónév használatával." #: plinth/modules/radicale/__init__.py:33 msgid "" @@ -5446,10 +5299,8 @@ msgstr "" "módosíthatja is akármelyik naptárt/címjegyzéket." #: plinth/modules/radicale/forms.py:30 -#, fuzzy -#| msgid "Access Point" msgid "Access rights" -msgstr "Hozzáférési pont" +msgstr "Hozzáférési jogok" #: plinth/modules/radicale/manifest.py:10 msgid "DAVx5" @@ -5514,13 +5365,6 @@ msgstr "" "címjegyzéket, mappa kezelést, üzenet keresést és helyesírás-ellenőrzést." #: plinth/modules/roundcube/__init__.py:26 -#, fuzzy -#| msgid "" -#| "You can access Roundcube from /roundcube. " -#| "Provide the username and password of the email account you wish to access " -#| "followed by the domain name of the IMAP server for your email provider, " -#| "like imap.example.com. For IMAP over SSL (recommended), " -#| "fill the server field like imaps://imap.example.com." msgid "" "You can use it by providing the username and password of the email account " "you wish to access followed by the domain name of the IMAP server for your " @@ -5528,11 +5372,11 @@ msgid "" "(recommended), fill the server field like imaps://imap.example.com." msgstr "" -"A Roundcube-ot elérheted itt: /roundcube. Add meg " -"az elérni kívánt e-mail fiókhoz tartozó felhasználónevet és jelszót, majd a " -"e-mail szolgáltatód IMAP szerverének domain-nevét, mint pl.: imap." -"example.com. Az SSL-en kersztüli IMAP-hoz (ez az ajánlott), töltsd ki " -"a kiszolgáló mezőt ezen minta alapján: imaps://imap.example.com." +"Használhatod az elérni kívánt e-mail fiókhoz tartozó felhasználónév és " +"jelszó megadásával, folytatva az e-mail szolgáltatód IMAP szerverének domain-" +"nevével, mint pl.: imap.example.com. Az SSL-en kersztüli IMAP-" +"hoz (ez az ajánlott), töltsd ki a kiszolgáló mezőt ezen minta alapján: " +"imaps://imap.example.com." #: plinth/modules/roundcube/__init__.py:31 msgid "" @@ -5599,16 +5443,12 @@ msgid "Samba" msgstr "" #: plinth/modules/samba/__init__.py:62 -#, fuzzy -#| msgid "Distributed File Storage" msgid "Network File Storage" -msgstr "Elosztott fájltároló" +msgstr "Hálózati fájltároló" #: plinth/modules/samba/manifest.py:15 -#, fuzzy -#| msgid "IRC Client" msgid "Android Samba Client" -msgstr "IRC kliens" +msgstr "Android Samba kliens" #: plinth/modules/samba/manifest.py:28 msgid "Ghost Commander - Samba plugin" @@ -5619,20 +5459,16 @@ msgid "VLC media player" msgstr "" #: plinth/modules/samba/manifest.py:56 -#, fuzzy -#| msgid "GNOME Calendar" msgid "GNOME Files" -msgstr "GNOME naptár" +msgstr "GNOME Fájlok" #: plinth/modules/samba/manifest.py:68 msgid "Dolphin" msgstr "" #: plinth/modules/samba/templates/samba.html:32 -#, fuzzy -#| msgid "Shared" msgid "Shares" -msgstr "Megosztott" +msgstr "Megosztások" #: plinth/modules/samba/templates/samba.html:34 msgid "" @@ -5663,10 +5499,8 @@ msgid "" msgstr "" #: plinth/modules/samba/templates/samba.html:139 -#, fuzzy -#| msgid "Available Domains" msgid "Unavailable Shares" -msgstr "Elérhető Domainek" +msgstr "Nem elérhető megosztások" #: plinth/modules/samba/templates/samba.html:141 msgid "" @@ -5675,64 +5509,46 @@ msgid "" msgstr "" #: plinth/modules/samba/templates/samba.html:149 -#, fuzzy -#| msgid "Share added." msgid "Share name" -msgstr "Megosztás hozzáadva." +msgstr "Megosztás neve" #: plinth/modules/samba/templates/samba.html:150 -#, fuzzy -#| msgid "Actions" msgid "Action" -msgstr "Műveletek" +msgstr "Művelet" #: plinth/modules/samba/views.py:32 -#, fuzzy -#| msgid "FreedomBox" msgid "FreedomBox OS disk" -msgstr "FreedomBox" +msgstr "FreedomBox OS lemez" #: plinth/modules/samba/views.py:58 plinth/modules/storage/forms.py:147 -#, fuzzy -#| msgid "Add Share" msgid "Open Share" -msgstr "Megosztás hozzáadása" +msgstr "Nyílt megosztás" #: plinth/modules/samba/views.py:62 plinth/modules/storage/forms.py:145 -#, fuzzy -#| msgid "Add Share" msgid "Group Share" -msgstr "Megosztás hozzáadása" +msgstr "Csoport megosztás" #: plinth/modules/samba/views.py:66 -#, fuzzy -#| msgid "Homepage" msgid "Home Share" -msgstr "Honlap" +msgstr "Sajátkönyvtár megosztás" #: plinth/modules/samba/views.py:101 -#, fuzzy -#| msgid "Share deleted." msgid "Share enabled." -msgstr "Megosztás törölve." +msgstr "Megosztás engedélyezve." #: plinth/modules/samba/views.py:106 -#, fuzzy, python-brace-format -#| msgid "Error ejecting device: {error_message}" +#, python-brace-format msgid "Error enabling share: {error_message}" -msgstr "Hiba történt az eszköz kiadása során: {error_message}" +msgstr "Hiba történt a megosztás engedélyezése során: {error_message}" #: plinth/modules/samba/views.py:111 -#, fuzzy -#| msgid "Share edited." msgid "Share disabled." -msgstr "Megosztás szerkesztve." +msgstr "Megosztás letiltva." #: plinth/modules/samba/views.py:116 -#, fuzzy, python-brace-format -#| msgid "Error ejecting device: {error_message}" +#, python-brace-format msgid "Error disabling share: {error_message}" -msgstr "Hiba történt az eszköz kiadása során: {error_message}" +msgstr "Hiba történt a megosztás letiltásakor: {error_message}" #: plinth/modules/searx/__init__.py:25 msgid "" @@ -5819,10 +5635,8 @@ msgstr "" #: plinth/modules/security/templates/security.html:11 #: plinth/modules/security/templates/security.html:13 -#, fuzzy -#| msgid "Show security vulnerabilities" msgid "Show security report" -msgstr "Biztonsági rések megjelenítése" +msgstr "Biztonsági jelentés megjelenítése" #: plinth/modules/security/templates/security.html:17 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 @@ -5851,10 +5665,8 @@ msgstr "" #: plinth/modules/security/templates/security_report.html:10 #: plinth/modules/security/views.py:74 -#, fuzzy -#| msgid "Security Notice" msgid "Security Report" -msgstr "Biztonsági értesítés" +msgstr "Biztonsági jelentés" #: plinth/modules/security/templates/security_report.html:12 #, python-format @@ -5866,16 +5678,12 @@ msgstr "" "tartalmaz." #: plinth/modules/security/templates/security_report.html:18 -#, fuzzy -#| msgid "" -#| "The following table lists the reported number of security vulnerabilities " -#| "for each installed app." msgid "" "The following table lists the current reported number, and historical count, " "of security vulnerabilities for each installed app." msgstr "" -"Az alábbi táblázat felsorolja az egyes telepített alkalmazások bejelentett " -"biztonsági réseinek számát." +"Az alábbi táblázat felsorolja az egyes telepített alkalmazások jelenleg " +"bejelentett és múltbéli biztonsági réseinek számát." #: plinth/modules/security/templates/security_report.html:24 msgid "" @@ -5896,50 +5704,36 @@ msgid "App Name" msgstr "Alkalmazás neve" #: plinth/modules/security/templates/security_report.html:41 -#, fuzzy -#| msgid "Show security vulnerabilities" msgid "Current Vulnerabilities" -msgstr "Biztonsági rések megjelenítése" +msgstr "Jelenlegi biztonsági rések" #: plinth/modules/security/templates/security_report.html:42 -#, fuzzy -#| msgid "Show security vulnerabilities" msgid "Past Vulnerabilities" -msgstr "Biztonsági rések megjelenítése" +msgstr "Múltbéli biztonsági rések" #: plinth/modules/security/templates/security_report.html:43 -#, fuzzy -#| msgid "Block Sandbox" msgid "Sandboxed" -msgstr "Blokk sandbox" +msgstr "Virtuális környezetben" #: plinth/modules/security/templates/security_report.html:44 -#, fuzzy -#| msgid "Block Sandbox" msgid "Sandbox Coverage" -msgstr "Blokk sandbox" +msgstr "Virtuális környezet lefedettsége" #: plinth/modules/security/templates/security_report.html:55 msgid "N/A" msgstr "" #: plinth/modules/security/templates/security_report.html:57 -#, fuzzy -#| msgid "yes" msgid "Yes" -msgstr "igen" +msgstr "Igen" #: plinth/modules/security/templates/security_report.html:59 -#, fuzzy -#| msgid "None" msgid "No" -msgstr "Nincs" +msgstr "Nem" #: plinth/modules/security/templates/security_report.html:66 -#, fuzzy -#| msgid "Tor is running" msgid "Not running" -msgstr "A Tor fut" +msgstr "Nem fut" #: plinth/modules/security/views.py:56 #, python-brace-format @@ -5955,18 +5749,12 @@ msgid "Shaarli allows you to save and share bookmarks." msgstr "A Shaarli lehetővé teszi hogy elmentsd és megoszd a könyvjelzőidet." #: plinth/modules/shaarli/__init__.py:21 -#, fuzzy -#| msgid "" -#| "When enabled, Shaarli will be available from /" -#| "shaarli path on the web server. Note that Shaarli only supports a " -#| "single user account, which you will need to setup on the initial visit." msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." msgstr "" -"Ha engedélyezett, a Shaarli elérhető lesz a webkiszolgáló /shaarli elérési útvonalán. Vedd figyelembe, hogy a Shaarli csak egy " -"felhasználói fiókot támogat, melyet az első látogatás során be kell állítani." +"Vedd figyelembe, hogy a Shaarli csak egy felhasználói fiókot támogat, melyet " +"az első látogatás során be kell állítani." #: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:8 msgid "Shaarli" @@ -6265,16 +6053,12 @@ msgid "Yearly Snapshots Limit" msgstr "Évenkénti pillanatképek korlátja" #: plinth/modules/snapshot/forms.py:49 -#, fuzzy -#| msgid "" -#| "Keep a maximum of this many yearly snapshots. The default value is 0 " -#| "(disabled)." msgid "" "Keep a maximum of this many yearly snapshots. The default value is 0 (keep " "no yearly snapshot)." msgstr "" "Legfeljebb ennyi évenkénti pillanatkép legyen megtartva. Az alapértelmezett " -"érték 0 (letiltva)." +"érték 0 (nem tart meg éves pillanatképeket)." #: plinth/modules/snapshot/templates/snapshot_delete_selected.html:12 msgid "Delete the following snapshots permanently?" @@ -6320,18 +6104,14 @@ msgid "Rollback to snapshot #%(number)s" msgstr "Visszaállítás erre a pillanatképre: %(number)s" #: plinth/modules/snapshot/templates/snapshot_not_supported.html:11 -#, fuzzy, python-format -#| msgid "" -#| "Your have a filesystem of type %(fs_type)s. Snapshots " -#| "are currently only available on %(types_supported)s " -#| "filesystems." +#, python-format msgid "" "You have a filesystem of type %(fs_type)s. Snapshots are " "currently only available on %(types_supported)s filesystems." msgstr "" "Az általad használt fájlrendszer típusa: %(fs_type)s. A " -"Pillanatképek jelenleg csak a következő fájlrendszereken érhető el: " -"%(types_supported)s." +"Pillanatképek jelenleg csak a következő fájlrendszereken érhető el: " +"%(types_supported)s." #: plinth/modules/snapshot/templates/snapshot_rollback.html:12 msgid "Roll back the system to this snapshot?" @@ -6353,10 +6133,8 @@ msgid "Rollback to Snapshot #%(number)s" msgstr "Visszaállítás erre a pillanatképre: %(number)s" #: plinth/modules/snapshot/views.py:28 -#, fuzzy -#| msgid "Repository created." msgid "manually created" -msgstr "Tároló létrehozva." +msgstr "kézzel létrehozva" #: plinth/modules/snapshot/views.py:29 msgid "timeline" @@ -6422,10 +6200,8 @@ msgid "Secure Shell (SSH) Server" msgstr "Biztonságos parancsértelmező (SSH) kiszolgáló" #: plinth/modules/ssh/forms.py:13 -#, fuzzy -#| msgid "Use HTTP basic authentication" msgid "Disable password authentication" -msgstr "HTTP alap hitelesítés használata" +msgstr "Jelszavas hitelesítés letiltása" #: plinth/modules/ssh/forms.py:14 msgid "" @@ -6435,10 +6211,8 @@ msgid "" msgstr "" #: plinth/modules/ssh/templates/ssh.html:11 -#, fuzzy -#| msgid "SSH Fingerprint" msgid "Server Fingerprints" -msgstr "SSH ujjlenyomat" +msgstr "Kiszolgáló ujjlenyomatok" #: plinth/modules/ssh/templates/ssh.html:14 msgid "" @@ -6451,20 +6225,16 @@ msgid "Algorithm" msgstr "" #: plinth/modules/ssh/templates/ssh.html:24 -#, fuzzy -#| msgid "SSH Fingerprint" msgid "Fingerprint" -msgstr "SSH ujjlenyomat" +msgstr "Ujjlenyomat" #: plinth/modules/ssh/views.py:48 msgid "SSH authentication with password disabled." msgstr "" #: plinth/modules/ssh/views.py:51 -#, fuzzy -#| msgid "Authentication to remote server failed." msgid "SSH authentication with password enabled." -msgstr "Sikertelen a hitelesítés a távoli kiszolgálóra." +msgstr "SSH jelszavas hitelesítés engedélyezve." #: plinth/modules/sso/__init__.py:34 msgid "Single Sign On" @@ -6574,24 +6344,20 @@ msgid "The device is mounted by another user." msgstr "Az eszközt egy másik felhasználó felcsatolva." #: plinth/modules/storage/__init__.py:307 -#, fuzzy, no-python-format, python-brace-format -#| msgid "" -#| "Warning: Low space on system partition ({percent_used}% used, " -#| "{free_space} free)." +#, no-python-format, python-brace-format msgid "Low space on system partition: {percent_used}% used, {free_space} free." msgstr "" -"Figyelmeztetés: Kevés a szabad hely a rendszerpartíción ({percent_used}% " -"felhasználva, {free_space} szabad)." +"Kevés a szabad hely a rendszerpartíción: {percent_used}% felhasználva, " +"{free_space} szabad." #: plinth/modules/storage/__init__.py:309 msgid "Low disk space" msgstr "" #: plinth/modules/storage/__init__.py:319 -#, fuzzy, python-brace-format -#| msgid "About {box_name}" +#, python-brace-format msgid "Go to {app_name}" -msgstr "A {box_name} projektről" +msgstr "Ugrás ide: {app_name}" #: plinth/modules/storage/__init__.py:337 msgid "Disk failure imminent" @@ -6605,46 +6371,36 @@ msgid "" msgstr "" #: plinth/modules/storage/forms.py:63 -#, fuzzy -#| msgid "Invalid repository name." msgid "Invalid directory name." -msgstr "Érvénytelen tárolónév." +msgstr "Érvénytelen könyvtárnév." #: plinth/modules/storage/forms.py:80 msgid "Directory does not exist." msgstr "" #: plinth/modules/storage/forms.py:83 -#, fuzzy -#| msgid "Download directory" msgid "Path is not a directory." -msgstr "Letöltési könyvtár" +msgstr "Az elérési út nem könyvtár." #: plinth/modules/storage/forms.py:86 -#, fuzzy -#| msgid "The device is mounted by another user." msgid "Directory is not readable by the user." -msgstr "Az eszközt egy másik felhasználó felcsatolva." +msgstr "A könyvtár nem olvasható a felhasználó által." #: plinth/modules/storage/forms.py:89 msgid "Directory is not writable by the user." msgstr "" #: plinth/modules/storage/forms.py:94 -#, fuzzy -#| msgid "Download directory" msgid "Directory" -msgstr "Letöltési könyvtár" +msgstr "Könyvtár" #: plinth/modules/storage/forms.py:96 msgid "Subdirectory (optional)" msgstr "" #: plinth/modules/storage/forms.py:143 -#, fuzzy -#| msgid "Shared" msgid "Share" -msgstr "Megosztott" +msgstr "Megosztás" #: plinth/modules/storage/forms.py:151 msgid "Other directory (specify below)" @@ -6740,14 +6496,7 @@ msgstr "" "jelentkeznek, amennyiben azokra telepítve van a szolgáltatás." #: plinth/modules/syncthing/__init__.py:32 -#, fuzzy, python-brace-format -#| msgid "" -#| "Running Syncthing on {box_name} provides an extra synchronization point " -#| "for your data that is available most of the time, allowing your devices " -#| "to synchronize more often. {box_name} runs a single instance of " -#| "Syncthing that may be used by multiple users. Each user's set of devices " -#| "may be synchronized with a distinct set of folders. The web interface on " -#| "{box_name} is only available for users belonging to the \"admin\" group." +#, python-brace-format msgid "" "Running Syncthing on {box_name} provides an extra synchronization point for " "your data that is available most of the time, allowing your devices to " @@ -6763,8 +6512,8 @@ msgstr "" "{box_name} eszközön egyetlen, több felhasználó által használható Syncthing-" "példány fut. Az egyes felhasználók eszközeiket különböző " "könyvtárcsoportokkal szinkronizálhatják össze. {box_name} eszközön a webes " -"felület csak az \"admin\" csoporthoz tartozó felhasználók számára " -"hozzáférhető." +"felület csak az \"admin\" vagy a \"syncthing\" csoporthoz tartozó " +"felhasználók számára hozzáférhető." #: plinth/modules/syncthing/__init__.py:56 msgid "Administer Syncthing application" @@ -6869,10 +6618,8 @@ msgid "Tor" msgstr "Tor" #: plinth/modules/tor/__init__.py:67 -#, fuzzy -#| msgid "Tor Hidden Service" msgid "Tor Onion Service" -msgstr "Tor rejtett szolgáltatás" +msgstr "Tor Onion szolgáltatás" #: plinth/modules/tor/__init__.py:71 msgid "Tor Socks Proxy" @@ -6975,17 +6722,11 @@ msgstr "" "cenzúrázását. Ez segít másoknak a cenzúra megkerülésében." #: plinth/modules/tor/forms.py:103 -#, fuzzy -#| msgid "Enable Tor Hidden Service" msgid "Enable Tor Hidden Service" msgstr "Tor rejtett szolgáltatás engedélyezése" #: plinth/modules/tor/forms.py:105 -#, fuzzy, python-brace-format -#| msgid "" -#| "A hidden service will allow {box_name} to provide selected services (such " -#| "as wiki or chat) without revealing its location. Do not use this for " -#| "strong anonymity yet." +#, python-brace-format msgid "" "A hidden service will allow {box_name} to provide selected services (such as " "wiki or chat) without revealing its location. Do not use this for strong " @@ -7026,10 +6767,8 @@ msgid "Tor configuration is being updated" msgstr "A Tor beállításainak frissítése folyamatban" #: plinth/modules/tor/templates/tor.html:25 -#, fuzzy -#| msgid "Hidden Service" msgid "Onion Service" -msgstr "Rejtett szolgáltatás" +msgstr "Onion szolgáltatás" #: plinth/modules/tor/templates/tor.html:27 msgid "Ports" @@ -7088,25 +6827,15 @@ msgstr "" "egy valódi asztali alkalmazás érzetét kelteni." #: plinth/modules/ttrss/__init__.py:33 -#, fuzzy, python-brace-format -#| msgid "" -#| "When enabled, Tiny Tiny RSS will be available from /" -#| "tt-rss path on the web server. It can be accessed by any user with a {box_name} login." +#, python-brace-format msgid "" "When enabled, Tiny Tiny RSS can be accessed by any user with a {box_name} login." msgstr "" -"Ha engedélyezett, a Tiny Tiny RSS elérhető lesz a webkiszolgáló /tt-rss útvonalán. Elérhető lesz bármely felhasználó számára {box_name} " -"felhasználónévvel." +"Ha engedélyezett, a Tiny Tiny RSS elérhető lesz bármely felhasználó számára {box_name} felhasználónévvel." #: plinth/modules/ttrss/__init__.py:37 -#, fuzzy -#| msgid "" -#| "When using a mobile or desktop application for Tiny Tiny RSS, use the URL " -#| "/tt-rss-app for connecting." msgid "" "When using a mobile or desktop application for Tiny Tiny RSS, use the URL /tt-rss-app for connecting." @@ -7153,16 +6882,12 @@ msgid "Update" msgstr "Frissítés" #: plinth/modules/upgrades/__init__.py:110 -#, fuzzy -#| msgid "Update" msgid "Updates" -msgstr "Frissítés" +msgstr "Frissítések" #: plinth/modules/upgrades/__init__.py:113 -#, fuzzy -#| msgid "FreedomBox Foundation" msgid "FreedomBox Updated" -msgstr "FreedomBox Alapítvány" +msgstr "FreedomBox frissítve" #: plinth/modules/upgrades/forms.py:15 msgid "Enable auto-update" @@ -7174,10 +6899,8 @@ msgstr "" "Ha engedélyezett, akkor a FreedomBox automatikusan frissít naponta egyszer." #: plinth/modules/upgrades/forms.py:19 -#, fuzzy -#| msgid "Enable auto-update" msgid "Enable auto-update to next stable release" -msgstr "Automatikus frissítések engedélyezése" +msgstr "Automatikus frissítés engedélyezése a következő stabil kiadásra" #: plinth/modules/upgrades/forms.py:20 msgid "" @@ -7191,10 +6914,8 @@ msgid "Activate frequent feature updates (recommended)" msgstr "" #: plinth/modules/upgrades/forms.py:40 -#, fuzzy -#| msgid "Fail2Ban (recommended)" msgid "Update now (recommended)" -msgstr "Fail2Ban (ajánlott)" +msgstr "Frissítés most (ajánlott)" #: plinth/modules/upgrades/templates/backports-firstboot.html:26 msgid "" @@ -7209,42 +6930,35 @@ msgid "" msgstr "" #: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 -#, fuzzy -#| msgid "Updating..." msgid "Updating, please wait..." -msgstr "Frissítés…" +msgstr "Frissítés, várjon…" #: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 #: plinth/modules/upgrades/templates/update-firstboot.html:20 -#, fuzzy -#| msgid "" -#| "This may take a long time to complete. During an update, " -#| "you cannot install apps. Also, this web interface may be temporarily " -#| "unavailable and show an error. In that case, refresh the page to continue." msgid "" "This may take a long time to complete. During an update, " "this web interface may be temporarily unavailable and show an error. In that " "case, refresh the page to continue." msgstr "" "Ez a művelet sokáig tarthat. Amíg a frissítés folyamatban " -"van, nem tudsz más csomagot telepíteni. A frissítés folyamán ez a webes " -"felület átmenetileg elérhetetlenné válhat és hibát jelezhet. Ebben az " -"esetben frissítsd az oldalt a folytatáshoz." +"van ez a webes felület átmenetileg elérhetetlenné válhat és hibát jelezhet. " +"Ebben az esetben frissítsd az oldalt a folytatáshoz." #: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 -#, fuzzy, python-format -#| msgid "%(box_name)s is up to date." +#, python-format msgid "" "\n" "\t%(box_name)s is up to date. Press Next to continue.\n" " " -msgstr "A %(box_name)s naprakész." +msgstr "" +"\n" +"\tA %(box_name)s naprakész. A folytatáshoz nyomja meg a Tovább gombot.\n" +" " #: plinth/modules/upgrades/templates/upgrades-new-release.html:9 -#, fuzzy, python-format -#| msgid "%(box_name)s is up to date." +#, python-format msgid "%(box_name)s Updated" -msgstr "A %(box_name)s naprakész." +msgstr "%(box_name)s fel lett frissítve" #: plinth/modules/upgrades/templates/upgrades-new-release.html:13 #, python-format @@ -7269,10 +6983,8 @@ msgid "There is a new %(box_name)s version available." msgstr "Új %(box_name)s verzió hozzáférhető." #: plinth/modules/upgrades/templates/upgrades_configure.html:51 -#, fuzzy -#| msgid "FreedomBox Foundation" msgid "Your Freedombox needs an update!" -msgstr "FreedomBox Alapítvány" +msgstr "A Freedombox frissítésre szorul!" #: plinth/modules/upgrades/templates/upgrades_configure.html:63 msgid "" @@ -7294,8 +7006,6 @@ msgid "" msgstr "" #: plinth/modules/upgrades/templates/upgrades_configure.html:110 -#, fuzzy -#| msgid "Manual update" msgid "Manual Update" msgstr "Kézi frissítés" @@ -7304,11 +7014,6 @@ msgid "Update now" msgstr "Frissítés most" #: plinth/modules/upgrades/templates/upgrades_configure.html:130 -#, fuzzy -#| msgid "" -#| "This may take a long time to complete. During an update, " -#| "you cannot install apps. Also, this web interface may be temporarily " -#| "unavailable and show an error. In that case, refresh the page to continue." msgid "" "This may take a long time to complete. During an update, " "you cannot install apps. Also, this web interface may be temporarily " @@ -7320,10 +7025,8 @@ msgstr "" "esetben frissítsd az oldalt a folytatáshoz." #: plinth/modules/upgrades/templates/upgrades_configure.html:144 -#, fuzzy -#| msgid "Toggle recent update logs" msgid "Show recent update logs" -msgstr "Frissítésnapló megjelenítése" +msgstr "Legutóbbi frissítési naplók megjelenítése" #: plinth/modules/upgrades/views.py:67 #, python-brace-format @@ -7339,16 +7042,12 @@ msgid "Automatic upgrades disabled" msgstr "Automatikus frissítések kikapcsolva" #: plinth/modules/upgrades/views.py:82 -#, fuzzy -#| msgid "Automatic upgrades enabled" msgid "Distribution upgrade enabled" -msgstr "Automatikus frissítések engedélyezve" +msgstr "Disztribúció frissítés engedélyezve" #: plinth/modules/upgrades/views.py:85 -#, fuzzy -#| msgid "Automatic upgrades disabled" msgid "Distribution upgrade disabled" -msgstr "Automatikus frissítések kikapcsolva" +msgstr "Disztribúció frissítés letiltva" #: plinth/modules/upgrades/views.py:126 msgid "Upgrade process started." @@ -7395,10 +7094,8 @@ msgid "Username is taken or is reserved." msgstr "A felhasználói név (már) foglalt." #: plinth/modules/users/forms.py:64 -#, fuzzy -#| msgid "Invalid server name" msgid "Enter a valid username." -msgstr "Érvénytelen kiszolgálónév" +msgstr "Adjon meg egy érvényes felhasználónevet." #: plinth/modules/users/forms.py:71 msgid "" @@ -7406,29 +7103,18 @@ msgid "" msgstr "" #: plinth/modules/users/forms.py:79 -#, fuzzy -#| msgid "Administrator Password" msgid "Authorization Password" -msgstr "Rendszergazdai jelszó" +msgstr "Hitelesítési jelszó" #: plinth/modules/users/forms.py:80 msgid "Enter your current password to authorize account modifications." msgstr "" #: plinth/modules/users/forms.py:88 -#, fuzzy -#| msgid "Show password" msgid "Invalid password." -msgstr "Jelszó mutatása" +msgstr "Érvénytelen jelszó." #: plinth/modules/users/forms.py:105 -#, fuzzy -#| msgid "" -#| "Select which services should be available to the new user. The user will " -#| "be able to log in to services that support single sign-on through LDAP, " -#| "if they are in the appropriate group.

Users in the admin group " -#| "will be able to log in to all services. They can also log in to the " -#| "system through SSH and have administrative privileges (sudo)." msgid "" "Select which services should be available to the new user. The user will be " "able to log in to services that support single sign-on through LDAP, if they " @@ -7445,16 +7131,14 @@ msgstr "" "rendelkeznek (sudo)." #: plinth/modules/users/forms.py:150 plinth/modules/users/forms.py:394 -#, fuzzy, python-brace-format -#| msgid "Creating LDAP user failed." +#, python-brace-format msgid "Creating LDAP user failed: {error}" -msgstr "LDAP felhasználó létrehozása sikertelen." +msgstr "LDAP felhasználó létrehozása sikertelen: {error}" #: plinth/modules/users/forms.py:163 -#, fuzzy, python-brace-format -#| msgid "Failed to add new user to {group} group." +#, python-brace-format msgid "Failed to add new user to {group} group: {error}" -msgstr "Nem sikerült hozzáadni az új felhasználót ehhez a csoporthoz: {group}." +msgstr "Az új felhasználó hozzáadása {group} csoporthoz nem sikerült: {error}" #: plinth/modules/users/forms.py:177 msgid "Authorized SSH Keys" @@ -7487,10 +7171,8 @@ msgid "Unable to set SSH keys." msgstr "SSH kulcsok beállítása sikertelen." #: plinth/modules/users/forms.py:322 -#, fuzzy -#| msgid "Failed to add user to group." msgid "Failed to change user status." -msgstr "Nem sikerült hozzáadni a felhasználót a csoporthoz." +msgstr "Nem sikerült a felhasználói állapot megváltoztatása." #: plinth/modules/users/forms.py:330 msgid "Cannot delete the only administrator in the system." @@ -7501,16 +7183,16 @@ msgid "Changing LDAP user password failed." msgstr "LDAP felhasználó jelszavának megváltoztatása sikertelen." #: plinth/modules/users/forms.py:405 -#, fuzzy, python-brace-format -#| msgid "Failed to add new user to admin group." +#, python-brace-format msgid "Failed to add new user to admin group: {error}" -msgstr "Nem sikerült hozzáadni az új felhasználót a rendszergazda csoporthoz." +msgstr "" +"Nem sikerült hozzáadni az új felhasználót a rendszergazdai csoporthoz: " +"{error}" #: plinth/modules/users/forms.py:424 -#, fuzzy, python-brace-format -#| msgid "Failed to restrict console access." +#, python-brace-format msgid "Failed to restrict console access: {error}" -msgstr "Nem sikerült a konzol hozzáférés korlátozása." +msgstr "Nem sikerült a konzol hozzáférés korlátozása: {error}" #: plinth/modules/users/forms.py:437 msgid "User account created, you are now logged in" @@ -7568,16 +7250,12 @@ msgid "Create Account" msgstr "Fiók létrehozása" #: plinth/modules/users/templates/users_firstboot.html:32 -#, fuzzy -#| msgid "Administrator Account" msgid "An administrator account already exists." -msgstr "Rendszergazda fiók" +msgstr "Már létezik egy rendszergazdai fiók." #: plinth/modules/users/templates/users_firstboot.html:38 -#, fuzzy -#| msgid "Cannot delete the only administrator in the system." msgid "The following administrator accounts exist in the system." -msgstr "Nem lehet törölni a rendszer egyetlen rendszergazdáját." +msgstr "Az alábbi rendszergazdai fiókok léteznek a rendszerben." #: plinth/modules/users/templates/users_firstboot.html:50 #, python-format, python-brace-format @@ -7605,10 +7283,9 @@ msgid "Edit user %(username)s" msgstr "%(username)s felhasználó szerkesztése" #: plinth/modules/users/templates/users_update.html:11 -#, fuzzy, python-format -#| msgid "Edit user %(username)s" +#, python-format msgid "Edit User %(username)s" -msgstr "%(username)s felhasználó szerkesztése" +msgstr "%(username)s felhasználó szerkesztése" #: plinth/modules/users/templates/users_update.html:19 #, python-format @@ -7675,19 +7352,15 @@ msgid "" msgstr "" #: plinth/modules/wireguard/forms.py:32 -#, fuzzy -#| msgid "Invalid kite name" msgid "Invalid key." -msgstr "Érvénytelen kite név" +msgstr "Érvénytelen kulcs." #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 #: plinth/modules/wireguard/templates/wireguard.html:74 #: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 -#, fuzzy -#| msgid "Publish Key" msgid "Public Key" -msgstr "Kulcs közzététele" +msgstr "Nyilvános kulcs" #: plinth/modules/wireguard/forms.py:62 msgid "" @@ -7706,10 +7379,8 @@ msgid "" msgstr "" #: plinth/modules/wireguard/forms.py:76 -#, fuzzy -#| msgid "Published key to keyserver." msgid "Public key of the server" -msgstr "Kulcs közzétéve a kulcskiszolgálónak." +msgstr "A kiszolgáló nyilvános kulcsa" #: plinth/modules/wireguard/forms.py:77 msgid "" @@ -7760,10 +7431,8 @@ msgid "Typically checked for a VPN service though which all traffic is sent." msgstr "" #: plinth/modules/wireguard/templates/wireguard.html:10 -#, fuzzy -#| msgid "Chat Server" msgid "As a Server" -msgstr "Chat szerver" +msgstr "Kiszolgálóként" #: plinth/modules/wireguard/templates/wireguard.html:12 msgid "Peers allowed to connect to this server:" @@ -7775,10 +7444,8 @@ msgstr "" #: plinth/modules/wireguard/templates/wireguard.html:19 #: plinth/modules/wireguard/templates/wireguard.html:75 -#, fuzzy -#| msgid "Create Connection" msgid "Last Connected Time" -msgstr "Kapcsolat létrehozása" +msgstr "Utolsó csatlakoztatási idő" #: plinth/modules/wireguard/templates/wireguard.html:38 #, python-format @@ -7791,16 +7458,12 @@ msgid "Public key for this %(box_name)s:" msgstr "" #: plinth/modules/wireguard/templates/wireguard.html:53 -#, fuzzy -#| msgid "No shares currently configured." msgid "Not configured yet." -msgstr "Jelenleg nincs beállított megosztás." +msgstr "Még nincs konfigurálva." #: plinth/modules/wireguard/templates/wireguard.html:57 -#, fuzzy -#| msgid "Add new introducer" msgid "Add a new peer" -msgstr "Új bevezető hozzáadása" +msgstr "Új társ hozzáadása" #: plinth/modules/wireguard/templates/wireguard.html:61 #: plinth/modules/wireguard/views.py:48 @@ -7808,10 +7471,8 @@ msgid "Add Allowed Client" msgstr "" #: plinth/modules/wireguard/templates/wireguard.html:64 -#, fuzzy -#| msgid "Chat Client" msgid "As a Client" -msgstr "Chat kliens" +msgstr "Ügyfélként" #: plinth/modules/wireguard/templates/wireguard.html:66 #, python-format @@ -7824,53 +7485,37 @@ msgid "Endpoint" msgstr "" #: plinth/modules/wireguard/templates/wireguard.html:96 -#, fuzzy -#| msgid "Authentication to remote server failed." msgid "No connections to remote servers are configured yet." -msgstr "Sikertelen a hitelesítés a távoli kiszolgálóra." +msgstr "A távoli kiszolgálókhoz még nincsenek konfigurálva kapcsolatok." #: plinth/modules/wireguard/templates/wireguard.html:104 -#, fuzzy -#| msgid "Add new introducer" msgid "Add a new server" -msgstr "Új bevezető hozzáadása" +msgstr "Új kiszolgáló hozzáadása" #: plinth/modules/wireguard/templates/wireguard.html:108 #: plinth/modules/wireguard/views.py:157 -#, fuzzy -#| msgid "Add Connection" msgid "Add Connection to Server" -msgstr "Kapcsolat hozzáadása" +msgstr "Kapcsolat hozzáadása a kiszolgálóhoz" #: plinth/modules/wireguard/templates/wireguard_add_client.html:19 -#, fuzzy -#| msgid "IRC Client" msgid "Add Client" -msgstr "IRC kliens" +msgstr "Ügyfél hozzáadása" #: plinth/modules/wireguard/templates/wireguard_delete_client.html:14 -#, fuzzy -#| msgid "Are you sure that you want to remove this repository?" msgid "Are you sure that you want to delete this client?" -msgstr "Biztosan el szeretnéd távolítani ezt a tárolót?" +msgstr "Biztosan el szeretnéd távolítani ezt az ügyfelet?" #: plinth/modules/wireguard/templates/wireguard_delete_server.html:14 -#, fuzzy -#| msgid "Are you sure that you want to remove this repository?" msgid "Are you sure that you want to delete this server?" -msgstr "Biztosan el szeretnéd távolítani ezt a tárolót?" +msgstr "Biztosan el szeretnéd távolítani ezt a kiszolgálót?" #: plinth/modules/wireguard/templates/wireguard_edit_client.html:19 -#, fuzzy -#| msgid "Chat Client" msgid "Update Client" -msgstr "Chat kliens" +msgstr "Ügyfél frissítése" #: plinth/modules/wireguard/templates/wireguard_edit_server.html:19 -#, fuzzy -#| msgid "Create Connection" msgid "Update Connection" -msgstr "Kapcsolat létrehozása" +msgstr "Kapcsolat frissítése" #: plinth/modules/wireguard/templates/wireguard_show_client.html:12 #, python-format @@ -7893,17 +7538,13 @@ msgid "Pre-shared key:" msgstr "" #: plinth/modules/wireguard/templates/wireguard_show_client.html:32 -#, fuzzy -#| msgid "Server domain" msgid "Server endpoints:" -msgstr "Kiszolgáló domain" +msgstr "Kiszolgáló végpontok:" #: plinth/modules/wireguard/templates/wireguard_show_client.html:40 #: plinth/modules/wireguard/templates/wireguard_show_server.html:27 -#, fuzzy -#| msgid "Select verified SSH public key" msgid "Server public key:" -msgstr "Válaszd ki az ellenőrzött SSH nyilvános kulcsot" +msgstr "Kiszolgáló nyilvános kulcsa:" #: plinth/modules/wireguard/templates/wireguard_show_client.html:50 #: plinth/modules/wireguard/templates/wireguard_show_server.html:49 @@ -7929,10 +7570,8 @@ msgid "" msgstr "" #: plinth/modules/wireguard/templates/wireguard_show_server.html:23 -#, fuzzy -#| msgid "Server domain" msgid "Server endpoint:" -msgstr "Kiszolgáló domain" +msgstr "Kiszolgáló végpont:" #: plinth/modules/wireguard/templates/wireguard_show_server.html:35 msgid "Public key of this machine:" @@ -7943,86 +7582,60 @@ msgid "IP address of this machine:" msgstr "" #: plinth/modules/wireguard/views.py:43 -#, fuzzy -#| msgid "Add new introducer" msgid "Added new client." -msgstr "Új bevezető hozzáadása" +msgstr "Új ügyfél hozzáadva." #: plinth/modules/wireguard/views.py:58 plinth/modules/wireguard/views.py:117 -#, fuzzy -#| msgid "A share with this name already exists." msgid "Client with public key already exists" -msgstr "Egy megosztás ezzel a névvel már létezik." +msgstr "Egy ügyfél ezzel a nyilvános kulccsal már létezik" #: plinth/modules/wireguard/views.py:71 -#, fuzzy -#| msgid "Email Client" msgid "Allowed Client" -msgstr "E-mail kliens" +msgstr "Engedélyezett ügyfél" #: plinth/modules/wireguard/views.py:93 -#, fuzzy -#| msgid "Update setup" msgid "Updated client." -msgstr "Beállítások frissítése" +msgstr "Frissített ügyfél." #: plinth/modules/wireguard/views.py:98 -#, fuzzy -#| msgid "Email Client" msgid "Modify Client" -msgstr "E-mail kliens" +msgstr "Ügyfél módosítása" #: plinth/modules/wireguard/views.py:131 msgid "Delete Allowed Client" msgstr "" #: plinth/modules/wireguard/views.py:140 -#, fuzzy -#| msgid "Archive deleted." msgid "Client deleted." -msgstr "Archívum törölve." +msgstr "Ügyfél törölve." #: plinth/modules/wireguard/views.py:142 -#, fuzzy -#| msgid "Repository not found" msgid "Client not found" -msgstr "Tároló nem található" +msgstr "Az ügyfél nem található" #: plinth/modules/wireguard/views.py:152 -#, fuzzy -#| msgid "Added custom service" msgid "Added new server." -msgstr "Egyedi szolgáltatás hozzáadva" +msgstr "Új kiszolgáló hozzáadva." #: plinth/modules/wireguard/views.py:173 -#, fuzzy -#| msgid "Connection Type" msgid "Connection to Server" -msgstr "Kapcsolat típusa" +msgstr "Kapcsolat a kiszolgálóhoz" #: plinth/modules/wireguard/views.py:191 -#, fuzzy -#| msgid "Update setup" msgid "Updated server." -msgstr "Beállítások frissítése" +msgstr "Kiszolgáló frissítve." #: plinth/modules/wireguard/views.py:196 -#, fuzzy -#| msgid "Edit Connection" msgid "Modify Connection to Server" -msgstr "Kapcsolat szerkesztése" +msgstr "Kapcsolat módosítása a kiszolgálóhoz" #: plinth/modules/wireguard/views.py:233 -#, fuzzy -#| msgid "Delete Connection" msgid "Delete Connection to Server" -msgstr "Kapcsolat törlése" +msgstr "Kapcsolat törlése a kiszolgálóval" #: plinth/modules/wireguard/views.py:253 -#, fuzzy -#| msgid "Share deleted." msgid "Server deleted." -msgstr "Megosztás törölve." +msgstr "Kiszolgáló törölve." #: plinth/network.py:29 msgid "PPPoE" @@ -8285,14 +7898,14 @@ msgid "Mailing list" msgstr "Levelezőlista" #: plinth/templates/internal-zone.html:11 -#, fuzzy, python-format -#| msgid "%(service_name)s is available only on internal networks." +#, python-format msgid "" "%(service_name)s is available only on internal networks or when the " "client is connected to %(box_name)s through VPN." msgstr "" -"%(service_name)s néven futó szolgáltatás csak belső hálózaton " -"elérhető." +"%(service_name)s néven futó szolgáltatás csak a belső hálózaton " +"érhető el, vagy ha az ügyfél VPN-en keresztül csatlakozik %(box_name)s " +"eszközhöz." #: plinth/templates/internal-zone.html:17 msgid "Currently there are no network interfaces configured as internal." @@ -8316,16 +7929,13 @@ msgid "Port Forwarding" msgstr "Porttovábbítás" #: plinth/templates/port-forwarding-info.html:13 -#, fuzzy, python-format -#| msgid "" -#| "You may want to check the network setup " -#| "and modify it if necessary." +#, python-format msgid "" "Your FreedomBox is not behind a router. No " "action is necessary." msgstr "" -"Esetleg leellenőrizheted a hálózati beállítást és módosíthatod ha szükséges." +"A FreedomBox-od nincs router mögött. Nincs " +"szükség semmilyen intézkedésre." #: plinth/templates/port-forwarding-info.html:19 #, python-format @@ -8336,35 +7946,28 @@ msgid "" msgstr "" #: plinth/templates/port-forwarding-info.html:26 -#, fuzzy, python-format -#| msgid "" -#| "If your FreedomBox is behind a router, you will need to set up port " -#| "forwarding on your router. You should forward the following ports for " -#| "%(service_name)s:" +#, python-format msgid "" "Your FreedomBox is behind a router and you " "are not using the DMZ feature. You will need to set up port forwarding on " "your router. You should forward the following ports for %(service_name)s:" msgstr "" -"Ha a FreedomBox eszközöd egy router mögött található, akkor a router-en be " -"kell állítanod a port továbbítást. A %(service_name)s szolgáltatáshoz a " -"következő portokat kellene továbbítani:" +"A FreedomBox-od router mögött található, és " +"nem használod a DMZ funkciót. Be kell állítanod a port továbbítást a " +"routeren. A következő portokat kell továbbítani a %(service_name)s számára:" #: plinth/templates/port-forwarding-info.html:36 -#, fuzzy -#| msgid "protocol" msgid "Protocol" -msgstr "protokoll" +msgstr "Protokoll" #: plinth/templates/port-forwarding-info.html:37 msgid "From Router/WAN Ports" msgstr "" #: plinth/templates/port-forwarding-info.html:38 -#, fuzzy, python-format -#| msgid "%(box_name)s Setup" +#, python-format msgid "To %(box_name)s Ports" -msgstr "%(box_name)s beállítás" +msgstr "%(box_name)s portokhoz" #: plinth/templates/setup.html:24 msgid "Install this application?" From 48c8a8fd29f96a39dcfe9030fc5e90bd3f2f883a Mon Sep 17 00:00:00 2001 From: James Valleroy Date: Mon, 28 Dec 2020 20:12:06 -0500 Subject: [PATCH 18/21] locale: Update translation strings Signed-off-by: James Valleroy --- plinth/locale/ar_SA/LC_MESSAGES/django.po | 895 +++++++++--------- plinth/locale/bg/LC_MESSAGES/django.po | 895 +++++++++--------- plinth/locale/bn/LC_MESSAGES/django.po | 895 +++++++++--------- plinth/locale/cs/LC_MESSAGES/django.po | 946 +++++++++---------- plinth/locale/da/LC_MESSAGES/django.po | 961 +++++++++---------- plinth/locale/de/LC_MESSAGES/django.po | 948 +++++++++---------- plinth/locale/django.pot | 895 +++++++++--------- plinth/locale/el/LC_MESSAGES/django.po | 941 ++++++++++--------- plinth/locale/es/LC_MESSAGES/django.po | 948 +++++++++---------- plinth/locale/fa/LC_MESSAGES/django.po | 932 +++++++++---------- plinth/locale/fake/LC_MESSAGES/django.po | 965 +++++++++---------- plinth/locale/fr/LC_MESSAGES/django.po | 962 +++++++++---------- plinth/locale/gl/LC_MESSAGES/django.po | 895 +++++++++--------- plinth/locale/gu/LC_MESSAGES/django.po | 905 +++++++++--------- plinth/locale/hi/LC_MESSAGES/django.po | 948 +++++++++---------- plinth/locale/hu/LC_MESSAGES/django.po | 966 ++++++++++---------- plinth/locale/id/LC_MESSAGES/django.po | 953 +++++++++---------- plinth/locale/it/LC_MESSAGES/django.po | 931 ++++++++++--------- plinth/locale/ja/LC_MESSAGES/django.po | 895 +++++++++--------- plinth/locale/kn/LC_MESSAGES/django.po | 895 +++++++++--------- plinth/locale/lt/LC_MESSAGES/django.po | 895 +++++++++--------- plinth/locale/nb/LC_MESSAGES/django.po | 940 +++++++++---------- plinth/locale/nl/LC_MESSAGES/django.po | 948 +++++++++---------- plinth/locale/pl/LC_MESSAGES/django.po | 951 +++++++++---------- plinth/locale/pt/LC_MESSAGES/django.po | 912 +++++++++--------- plinth/locale/ru/LC_MESSAGES/django.po | 944 +++++++++---------- plinth/locale/sl/LC_MESSAGES/django.po | 905 +++++++++--------- plinth/locale/sr/LC_MESSAGES/django.po | 895 +++++++++--------- plinth/locale/sv/LC_MESSAGES/django.po | 950 +++++++++---------- plinth/locale/ta/LC_MESSAGES/django.po | 895 +++++++++--------- plinth/locale/te/LC_MESSAGES/django.po | 963 +++++++++---------- plinth/locale/tr/LC_MESSAGES/django.po | 958 +++++++++---------- plinth/locale/uk/LC_MESSAGES/django.po | 905 +++++++++--------- plinth/locale/zh_Hans/LC_MESSAGES/django.po | 963 +++++++++---------- plinth/locale/zh_Hant/LC_MESSAGES/django.po | 895 +++++++++--------- 35 files changed, 16412 insertions(+), 16078 deletions(-) diff --git a/plinth/locale/ar_SA/LC_MESSAGES/django.po b/plinth/locale/ar_SA/LC_MESSAGES/django.po index c6899b606..5164e92db 100644 --- a/plinth/locale/ar_SA/LC_MESSAGES/django.po +++ b/plinth/locale/ar_SA/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: 2020-06-10 15:41+0000\n" "Last-Translator: aiman an \n" "Language-Team: Arabic (Saudi Arabia) diaspora.%(domain_name)s " msgstr "" +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1594,16 +1601,16 @@ msgid "About" msgstr "" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 msgid "Status" msgstr "" @@ -1733,7 +1740,7 @@ msgstr "" msgid "Port {name} ({details}) unavailable for external networks" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -1742,57 +1749,53 @@ msgid "" "system with systemd 'systemctl start firewalld'." msgstr "" -#: plinth/modules/firewall/templates/firewall.html:28 -msgid "Show Ports" -msgstr "" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " "disabled in the firewall." msgstr "" -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -1830,7 +1833,7 @@ msgid "" "modify it if necessary." msgstr "" -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "" @@ -1923,31 +1926,31 @@ msgstr "" msgid "Git" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 msgid "Manage Repositories" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 msgid "Create repository" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 msgid "No repositories available." msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 #, python-format -msgid "Delete repository %(repo.name)s" +msgid "Go to repository %(repo.name)s" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 msgid "Cloning…" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 #, python-format -msgid "Go to repository %(repo.name)s" +msgid "Delete repository %(repo.name)s" msgstr "" #: plinth/modules/gitweb/templates/gitweb_delete.html:12 @@ -2007,6 +2010,25 @@ msgid "Contribute" msgstr "" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, python-format +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:23 +#, python-format +msgid "" +"There is a new %(box_name)s version available." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, python-format +msgid "%(box_name)s is up to date." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:35 #, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2018,7 +2040,7 @@ msgid "" "your data stays with you." msgstr "" -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2028,7 +2050,7 @@ msgid "" "returning the Internet to its intended peer-to-peer architecture." msgstr "" -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2036,34 +2058,15 @@ msgid "" "package." msgstr "" -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the %(box_name)s Wiki." msgstr "" -#: plinth/modules/help/templates/help_about.html:60 -msgid "Learn more »" -msgstr "" - -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, python-format -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "" - -#: plinth/modules/help/templates/help_about.html:69 -#, python-format -msgid "" -"There is a new %(box_name)s version available." -msgstr "" - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, python-format -msgid "%(box_name)s is up to date." +#: plinth/modules/help/templates/help_about.html:78 +msgid "Learn more" msgstr "" #: plinth/modules/help/templates/help_base.html:21 @@ -2129,7 +2132,7 @@ msgid "Thank you!" msgstr "" #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 msgid "Help" msgstr "" @@ -2165,7 +2168,7 @@ msgid "" "channel using the IRC web interface." msgstr "" -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 msgid "Download as PDF" msgstr "" @@ -2343,16 +2346,16 @@ msgstr "" msgid "No wikis or blogs available." msgstr "" -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2443,8 +2446,8 @@ msgstr "" msgid "Chat Client" msgstr "" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "" @@ -2474,63 +2477,63 @@ msgstr "" msgid "Certificates" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 msgid "Domain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 msgid "Actions" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, python-format msgid "Valid, expires on %(expiry_date)s" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 msgid "Revoked" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, python-format msgid "Expired on %(expiry_date)s" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 msgid "Invalid test certificate" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 msgid "No certificate" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, python-format msgid "" "No domains have been configured. Configure " @@ -2607,12 +2610,6 @@ msgstr "" msgid "Element" msgstr "" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -2697,53 +2694,53 @@ msgstr "" msgid "Wiki" msgstr "" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 msgid "Administrator Password" msgstr "" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." msgstr "" -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 #, fuzzy #| msgid "Web Server" msgid "Server URL" msgstr "خادم ويب" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." msgstr "" -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 msgid "Enable public registrations" msgstr "" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." msgstr "" -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 msgid "Enable private mode" msgstr "" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 msgid "" "If enabled, access will be restricted. Only people who have accounts can " "read/write to the wiki. Public registrations will also be disabled." msgstr "" -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 msgid "Default Skin" msgstr "" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -2831,13 +2828,13 @@ msgstr "" msgid "When disabled, players cannot die or receive damage of any kind." msgstr "" -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "" @@ -2985,109 +2982,108 @@ msgstr "" msgid "Monkeysphere" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 msgid "Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 msgid "OpenPGP Fingerprint" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 msgid "Secure Shell" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 msgid "Other" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 msgid "-" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 msgid "Add Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 msgid "SSH Key Type" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 msgid "SSH Key Size" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 msgid "SSH Fingerprint" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 msgid "Available Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 msgid "Added Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 msgid "Download the key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 msgid "Send the key back to the keyservers" msgstr "" @@ -3175,7 +3171,7 @@ msgstr "" msgid "All web apps" msgstr "" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 msgid "Services" msgstr "" @@ -3262,8 +3258,8 @@ msgid "" msgstr "" #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "" @@ -3339,7 +3335,7 @@ msgid "-- select --" msgstr "" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 msgid "SSID" msgstr "" @@ -3348,7 +3344,7 @@ msgid "The visible name of the network." msgstr "" #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "" @@ -3377,7 +3373,7 @@ msgid "B/G (2.4 GHz)" msgstr "" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 msgid "Channel" msgstr "" @@ -3525,179 +3521,179 @@ msgid "" "to be reminded later. Some of the other configuration steps may fail.

" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 msgid "MAC address" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 msgid "Interface" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 msgid "please check cable" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 msgid "" "This interface should be connected to a local network/machine. If you " "connect this interface to a public network, services meant to be available " "only internally will become available externally. This is a security risk." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 msgid "" "This interface should receive your Internet connection. If you connect it to " "a local network/machine, many services meant to available only internally " "will not be available." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -3718,40 +3714,40 @@ msgstr "" msgid "Delete connection %(name)s permanently?" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 msgid "Spacing" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "" @@ -3777,19 +3773,19 @@ msgstr "" msgid "Add Connection" msgstr "" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "" @@ -3815,8 +3811,8 @@ msgstr "" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "" @@ -3900,7 +3896,7 @@ msgid "" "are no other devices on the network." msgstr "" -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -4340,93 +4336,93 @@ msgstr "" msgid "PageKite Domain" msgstr "" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 msgid "Server domain" msgstr "" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " "pagekite.net server." msgstr "" -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." msgstr "" -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 msgid "Deleted custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 msgid "This service is already available as a standard service." msgstr "" -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 msgid "Added custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 msgid "Custom Services" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 msgid "Add Custom Service" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "" @@ -4506,12 +4502,13 @@ msgid "" "finished before shutting down or restarting." msgstr "" -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +msgid "Restart" msgstr "" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" +msgid "Shut Down" msgstr "" #: plinth/modules/power/templates/power_restart.html:17 @@ -4797,21 +4794,21 @@ msgstr "" msgid "Dolphin" msgstr "" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 msgid "Shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 msgid "" "Note: Only specially created directories will be shared on selected disks, " "not the whole disk." msgstr "" -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 msgid "VFAT partitions are not supported" msgstr "" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the users module page." msgstr "" -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 msgid "Users who can currently access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 msgid "" "Users needing to re-enter their password on the password change page to " "access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 msgid "Unavailable Shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." msgstr "" -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 msgid "Share name" msgstr "" -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 msgid "Action" msgstr "" @@ -4951,25 +4948,25 @@ msgid "" "services." msgstr "" -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 msgid "Show security report" msgstr "" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "" -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5013,39 +5010,39 @@ msgid "" "running." msgstr "" -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 msgid "App Name" msgstr "" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 msgid "Current Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 msgid "Past Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 msgid "Sandboxed" msgstr "" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 msgid "Sandbox Coverage" msgstr "" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 msgid "N/A" msgstr "" -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 msgid "Yes" msgstr "" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 msgid "No" msgstr "" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 msgid "Not running" msgstr "" @@ -5186,28 +5183,28 @@ msgstr "" msgid "Shares should be either public or shared with at least one group" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 msgid "Add share" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "" -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 msgid "Shared Over" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 msgid "With Groups" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "" @@ -5331,41 +5328,41 @@ msgstr "" msgid "Delete the following snapshots permanently?" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 msgid "Delete Snapshots" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 msgid "Create Snapshot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 msgid "will be used at next boot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "" @@ -5388,7 +5385,7 @@ msgid "" "the newly created snapshot." msgstr "" -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "" @@ -5476,11 +5473,11 @@ msgid "" "client matches one of these fingerprints." msgstr "" -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 msgid "Fingerprint" msgstr "" @@ -5653,27 +5650,27 @@ msgstr "" msgid "Other directory (specify below)" msgstr "" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 msgid "The following storage devices are in use:" msgstr "" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 msgid "Used" msgstr "" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -5681,13 +5678,13 @@ msgid "" "will provide you additional free space to store your files." msgstr "" -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -5794,25 +5791,25 @@ msgstr "" msgid "Local introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 msgid "Pet Name" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 msgid "Add" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "" @@ -5956,19 +5953,19 @@ msgstr "" msgid "Tor configuration is being updated" msgstr "" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 msgid "Onion Service" msgstr "" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 msgid "Ports" msgstr "" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 msgid "Relay" msgstr "" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, python-format msgid "" "If your %(box_name)s is behind a router or firewall, you should make sure " @@ -6049,7 +6046,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 msgid "Update" @@ -6082,7 +6079,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "" @@ -6102,11 +6099,11 @@ msgid "" "cannot be deactivated." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 msgid "Updating, please wait..." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 msgid "" "This may take a long time to complete. During an update, " @@ -6114,7 +6111,7 @@ msgid "" "case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, python-format msgid "" "\n" @@ -6139,32 +6136,32 @@ msgstr "" msgid "Dismiss" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, python-format msgid "There is a new %(box_name)s version available." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 msgid "Your Freedombox needs an update!" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -6172,22 +6169,22 @@ msgid "" "\"%(snapshot_url)s\">Storage Snapshots before continuing." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 msgid "Manual Update" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 msgid "Update now" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 msgid "" "This may take a long time to complete. During an update, " "you cannot install apps. Also, this web interface may be temporarily " "unavailable and show an error. In that case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 msgid "Show recent update logs" msgstr "" @@ -6360,8 +6357,8 @@ msgstr "" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "" @@ -6414,21 +6411,21 @@ msgid "" "step." msgstr "" -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "" + #: plinth/modules/users/templates/users_update.html:11 #, python-format msgid "Edit User %(username)s" @@ -6502,8 +6499,8 @@ msgstr "" #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 msgid "Public Key" msgstr "" @@ -6588,7 +6585,7 @@ msgid "Allowed IPs" msgstr "" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 msgid "Last Connected Time" msgstr "" @@ -6597,47 +6594,47 @@ msgstr "" msgid "No peers configured to connect to this %(box_name)s yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, python-format msgid "Public key for this %(box_name)s:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 msgid "Not configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 msgid "Add a new peer" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 msgid "As a Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "" @@ -6669,40 +6666,40 @@ msgid "" "is configured with the following information." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 msgid "Server endpoints:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 msgid "Server public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "" @@ -6714,15 +6711,15 @@ msgid "" "public key and IP address." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 msgid "Server endpoint:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "" @@ -6858,49 +6855,53 @@ msgstr "" msgid "Service %(service_name)s is not running." msgstr "" -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, python-format msgid "Core functionality and web interface for %(box_name)s" msgstr "" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" +#: plinth/templates/base.html:107 +msgid " Home" msgstr "" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +msgid " Apps" +msgstr "" + +#: plinth/templates/base.html:119 msgid "Apps" msgstr "" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +msgid " System" +msgstr "" + +#: plinth/templates/base.html:128 msgid "System" msgstr "" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -msgid "Restart" -msgstr "" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 msgid "Shut down" msgstr "" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 msgid "Select language" msgstr "" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "" @@ -6964,7 +6965,7 @@ msgstr "" msgid "RPM:" msgstr "" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -6978,10 +6979,6 @@ msgid "" "this page." msgstr "" -#: plinth/templates/index.html:46 -msgid "Configure »" -msgstr "" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -7006,7 +7003,7 @@ msgstr "" msgid "Source Code" msgstr "" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "" @@ -7040,6 +7037,10 @@ msgid "" "%(interface_list)s" msgstr "" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 msgid "Notifications" msgstr "" @@ -7071,15 +7072,15 @@ msgid "" "your router. You should forward the following ports for %(service_name)s:" msgstr "" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 msgid "Protocol" msgstr "" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, python-format msgid "To %(box_name)s Ports" msgstr "" diff --git a/plinth/locale/bg/LC_MESSAGES/django.po b/plinth/locale/bg/LC_MESSAGES/django.po index e0b69c060..8240198bf 100644 --- a/plinth/locale/bg/LC_MESSAGES/django.po +++ b/plinth/locale/bg/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: 2019-10-12 14:52+0000\n" "Last-Translator: Nevena Mircheva \n" "Language-Team: Bulgarian diaspora.%(domain_name)s " msgstr "" +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1601,16 +1608,16 @@ msgid "About" msgstr "" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 msgid "Status" msgstr "" @@ -1740,7 +1747,7 @@ msgstr "" msgid "Port {name} ({details}) unavailable for external networks" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -1749,57 +1756,53 @@ msgid "" "system with systemd 'systemctl start firewalld'." msgstr "" -#: plinth/modules/firewall/templates/firewall.html:28 -msgid "Show Ports" -msgstr "" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " "disabled in the firewall." msgstr "" -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -1837,7 +1840,7 @@ msgid "" "modify it if necessary." msgstr "" -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "" @@ -1930,31 +1933,31 @@ msgstr "" msgid "Git" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 msgid "Manage Repositories" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 msgid "Create repository" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 msgid "No repositories available." msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 #, python-format -msgid "Delete repository %(repo.name)s" +msgid "Go to repository %(repo.name)s" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 msgid "Cloning…" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 #, python-format -msgid "Go to repository %(repo.name)s" +msgid "Delete repository %(repo.name)s" msgstr "" #: plinth/modules/gitweb/templates/gitweb_delete.html:12 @@ -2014,6 +2017,25 @@ msgid "Contribute" msgstr "" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, python-format +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:23 +#, python-format +msgid "" +"There is a new %(box_name)s version available." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, python-format +msgid "%(box_name)s is up to date." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:35 #, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2025,7 +2047,7 @@ msgid "" "your data stays with you." msgstr "" -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2035,7 +2057,7 @@ msgid "" "returning the Internet to its intended peer-to-peer architecture." msgstr "" -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2043,34 +2065,15 @@ msgid "" "package." msgstr "" -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the %(box_name)s Wiki." msgstr "" -#: plinth/modules/help/templates/help_about.html:60 -msgid "Learn more »" -msgstr "" - -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, python-format -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "" - -#: plinth/modules/help/templates/help_about.html:69 -#, python-format -msgid "" -"There is a new %(box_name)s version available." -msgstr "" - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, python-format -msgid "%(box_name)s is up to date." +#: plinth/modules/help/templates/help_about.html:78 +msgid "Learn more" msgstr "" #: plinth/modules/help/templates/help_base.html:21 @@ -2136,7 +2139,7 @@ msgid "Thank you!" msgstr "" #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 msgid "Help" msgstr "" @@ -2172,7 +2175,7 @@ msgid "" "channel using the IRC web interface." msgstr "" -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 msgid "Download as PDF" msgstr "" @@ -2350,16 +2353,16 @@ msgstr "" msgid "No wikis or blogs available." msgstr "" -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2450,8 +2453,8 @@ msgstr "" msgid "Chat Client" msgstr "" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "" @@ -2481,63 +2484,63 @@ msgstr "" msgid "Certificates" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 msgid "Domain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 msgid "Actions" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, python-format msgid "Valid, expires on %(expiry_date)s" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 msgid "Revoked" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, python-format msgid "Expired on %(expiry_date)s" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 msgid "Invalid test certificate" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 msgid "No certificate" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, python-format msgid "" "No domains have been configured. Configure " @@ -2614,12 +2617,6 @@ msgstr "" msgid "Element" msgstr "" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -2704,53 +2701,53 @@ msgstr "" msgid "Wiki" msgstr "" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 msgid "Administrator Password" msgstr "" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." msgstr "" -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 #, fuzzy #| msgid "Web Server" msgid "Server URL" msgstr "Уеб Сървър" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." msgstr "" -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 msgid "Enable public registrations" msgstr "" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." msgstr "" -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 msgid "Enable private mode" msgstr "" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 msgid "" "If enabled, access will be restricted. Only people who have accounts can " "read/write to the wiki. Public registrations will also be disabled." msgstr "" -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 msgid "Default Skin" msgstr "" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -2838,13 +2835,13 @@ msgstr "" msgid "When disabled, players cannot die or receive damage of any kind." msgstr "" -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "" @@ -2992,109 +2989,108 @@ msgstr "" msgid "Monkeysphere" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 msgid "Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 msgid "OpenPGP Fingerprint" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 msgid "Secure Shell" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 msgid "Other" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 msgid "-" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 msgid "Add Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 msgid "SSH Key Type" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 msgid "SSH Key Size" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 msgid "SSH Fingerprint" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 msgid "Available Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 msgid "Added Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 msgid "Download the key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 msgid "Send the key back to the keyservers" msgstr "" @@ -3182,7 +3178,7 @@ msgstr "" msgid "All web apps" msgstr "" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 msgid "Services" msgstr "" @@ -3269,8 +3265,8 @@ msgid "" msgstr "" #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "" @@ -3346,7 +3342,7 @@ msgid "-- select --" msgstr "" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 msgid "SSID" msgstr "" @@ -3355,7 +3351,7 @@ msgid "The visible name of the network." msgstr "" #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "" @@ -3384,7 +3380,7 @@ msgid "B/G (2.4 GHz)" msgstr "" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 msgid "Channel" msgstr "" @@ -3532,179 +3528,179 @@ msgid "" "to be reminded later. Some of the other configuration steps may fail.

" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 msgid "MAC address" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 msgid "Interface" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 msgid "please check cable" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 msgid "" "This interface should be connected to a local network/machine. If you " "connect this interface to a public network, services meant to be available " "only internally will become available externally. This is a security risk." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 msgid "" "This interface should receive your Internet connection. If you connect it to " "a local network/machine, many services meant to available only internally " "will not be available." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -3725,40 +3721,40 @@ msgstr "" msgid "Delete connection %(name)s permanently?" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 msgid "Spacing" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "" @@ -3784,19 +3780,19 @@ msgstr "" msgid "Add Connection" msgstr "" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "" @@ -3822,8 +3818,8 @@ msgstr "" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "" @@ -3907,7 +3903,7 @@ msgid "" "are no other devices on the network." msgstr "" -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -4347,93 +4343,93 @@ msgstr "" msgid "PageKite Domain" msgstr "" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 msgid "Server domain" msgstr "" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " "pagekite.net server." msgstr "" -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." msgstr "" -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 msgid "Deleted custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 msgid "This service is already available as a standard service." msgstr "" -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 msgid "Added custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 msgid "Custom Services" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 msgid "Add Custom Service" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "" @@ -4513,12 +4509,13 @@ msgid "" "finished before shutting down or restarting." msgstr "" -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +msgid "Restart" msgstr "" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" +msgid "Shut Down" msgstr "" #: plinth/modules/power/templates/power_restart.html:17 @@ -4804,21 +4801,21 @@ msgstr "" msgid "Dolphin" msgstr "" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 msgid "Shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 msgid "" "Note: Only specially created directories will be shared on selected disks, " "not the whole disk." msgstr "" -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 msgid "VFAT partitions are not supported" msgstr "" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the users module page." msgstr "" -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 msgid "Users who can currently access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 msgid "" "Users needing to re-enter their password on the password change page to " "access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 msgid "Unavailable Shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." msgstr "" -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 msgid "Share name" msgstr "" -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 msgid "Action" msgstr "" @@ -4962,25 +4959,25 @@ msgid "" "services." msgstr "" -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 msgid "Show security report" msgstr "" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "" -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5024,39 +5021,39 @@ msgid "" "running." msgstr "" -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 msgid "App Name" msgstr "" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 msgid "Current Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 msgid "Past Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 msgid "Sandboxed" msgstr "" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 msgid "Sandbox Coverage" msgstr "" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 msgid "N/A" msgstr "" -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 msgid "Yes" msgstr "" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 msgid "No" msgstr "" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 msgid "Not running" msgstr "" @@ -5197,28 +5194,28 @@ msgstr "" msgid "Shares should be either public or shared with at least one group" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 msgid "Add share" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "" -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 msgid "Shared Over" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 msgid "With Groups" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "" @@ -5342,41 +5339,41 @@ msgstr "" msgid "Delete the following snapshots permanently?" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 msgid "Delete Snapshots" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 msgid "Create Snapshot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 msgid "will be used at next boot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "" @@ -5399,7 +5396,7 @@ msgid "" "the newly created snapshot." msgstr "" -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "" @@ -5487,11 +5484,11 @@ msgid "" "client matches one of these fingerprints." msgstr "" -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 msgid "Fingerprint" msgstr "" @@ -5664,27 +5661,27 @@ msgstr "" msgid "Other directory (specify below)" msgstr "" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 msgid "The following storage devices are in use:" msgstr "" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 msgid "Used" msgstr "" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -5692,13 +5689,13 @@ msgid "" "will provide you additional free space to store your files." msgstr "" -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -5805,25 +5802,25 @@ msgstr "" msgid "Local introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 msgid "Pet Name" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 msgid "Add" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "" @@ -5967,19 +5964,19 @@ msgstr "" msgid "Tor configuration is being updated" msgstr "" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 msgid "Onion Service" msgstr "" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 msgid "Ports" msgstr "" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 msgid "Relay" msgstr "" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, python-format msgid "" "If your %(box_name)s is behind a router or firewall, you should make sure " @@ -6060,7 +6057,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 msgid "Update" @@ -6095,7 +6092,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "" @@ -6115,11 +6112,11 @@ msgid "" "cannot be deactivated." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 msgid "Updating, please wait..." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 msgid "" "This may take a long time to complete. During an update, " @@ -6127,7 +6124,7 @@ msgid "" "case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, python-format msgid "" "\n" @@ -6152,34 +6149,34 @@ msgstr "" msgid "Dismiss" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, python-format msgid "There is a new %(box_name)s version available." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 #, fuzzy #| msgid "FreedomBox" msgid "Your Freedombox needs an update!" msgstr "FreedomBox" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -6187,22 +6184,22 @@ msgid "" "\"%(snapshot_url)s\">Storage Snapshots before continuing." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 msgid "Manual Update" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 msgid "Update now" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 msgid "" "This may take a long time to complete. During an update, " "you cannot install apps. Also, this web interface may be temporarily " "unavailable and show an error. In that case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 msgid "Show recent update logs" msgstr "" @@ -6375,8 +6372,8 @@ msgstr "" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "" @@ -6429,21 +6426,21 @@ msgid "" "step." msgstr "" -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "" + #: plinth/modules/users/templates/users_update.html:11 #, python-format msgid "Edit User %(username)s" @@ -6517,8 +6514,8 @@ msgstr "" #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 msgid "Public Key" msgstr "" @@ -6605,7 +6602,7 @@ msgid "Allowed IPs" msgstr "" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 msgid "Last Connected Time" msgstr "" @@ -6614,47 +6611,47 @@ msgstr "" msgid "No peers configured to connect to this %(box_name)s yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, python-format msgid "Public key for this %(box_name)s:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 msgid "Not configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 msgid "Add a new peer" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 msgid "As a Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "" @@ -6686,40 +6683,40 @@ msgid "" "is configured with the following information." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 msgid "Server endpoints:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 msgid "Server public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "" @@ -6731,15 +6728,15 @@ msgid "" "public key and IP address." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 msgid "Server endpoint:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "" @@ -6875,49 +6872,53 @@ msgstr "" msgid "Service %(service_name)s is not running." msgstr "" -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, python-format msgid "Core functionality and web interface for %(box_name)s" msgstr "" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" +#: plinth/templates/base.html:107 +msgid " Home" msgstr "" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +msgid " Apps" +msgstr "" + +#: plinth/templates/base.html:119 msgid "Apps" msgstr "" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +msgid " System" +msgstr "" + +#: plinth/templates/base.html:128 msgid "System" msgstr "" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -msgid "Restart" -msgstr "" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 msgid "Shut down" msgstr "" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 msgid "Select language" msgstr "" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "" @@ -6981,7 +6982,7 @@ msgstr "" msgid "RPM:" msgstr "" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -6995,10 +6996,6 @@ msgid "" "this page." msgstr "" -#: plinth/templates/index.html:46 -msgid "Configure »" -msgstr "" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -7023,7 +7020,7 @@ msgstr "" msgid "Source Code" msgstr "" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "" @@ -7057,6 +7054,10 @@ msgid "" "%(interface_list)s" msgstr "" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 msgid "Notifications" msgstr "" @@ -7088,15 +7089,15 @@ msgid "" "your router. You should forward the following ports for %(service_name)s:" msgstr "" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 msgid "Protocol" msgstr "" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, python-format msgid "To %(box_name)s Ports" msgstr "" diff --git a/plinth/locale/bn/LC_MESSAGES/django.po b/plinth/locale/bn/LC_MESSAGES/django.po index 7aa1f234d..ec32618eb 100644 --- a/plinth/locale/bn/LC_MESSAGES/django.po +++ b/plinth/locale/bn/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: 2020-11-30 22:24+0000\n" "Last-Translator: Oymate \n" "Language-Team: Bengali diaspora.%(domain_name)s " msgstr "" +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1593,16 +1600,16 @@ msgid "About" msgstr "" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 msgid "Status" msgstr "" @@ -1732,7 +1739,7 @@ msgstr "" msgid "Port {name} ({details}) unavailable for external networks" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -1741,57 +1748,53 @@ msgid "" "system with systemd 'systemctl start firewalld'." msgstr "" -#: plinth/modules/firewall/templates/firewall.html:28 -msgid "Show Ports" -msgstr "" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " "disabled in the firewall." msgstr "" -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -1829,7 +1832,7 @@ msgid "" "modify it if necessary." msgstr "" -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "" @@ -1922,31 +1925,31 @@ msgstr "" msgid "Git" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 msgid "Manage Repositories" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 msgid "Create repository" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 msgid "No repositories available." msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 #, python-format -msgid "Delete repository %(repo.name)s" +msgid "Go to repository %(repo.name)s" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 msgid "Cloning…" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 #, python-format -msgid "Go to repository %(repo.name)s" +msgid "Delete repository %(repo.name)s" msgstr "" #: plinth/modules/gitweb/templates/gitweb_delete.html:12 @@ -2006,6 +2009,25 @@ msgid "Contribute" msgstr "" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, python-format +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:23 +#, python-format +msgid "" +"There is a new %(box_name)s version available." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, python-format +msgid "%(box_name)s is up to date." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:35 #, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2017,7 +2039,7 @@ msgid "" "your data stays with you." msgstr "" -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2027,7 +2049,7 @@ msgid "" "returning the Internet to its intended peer-to-peer architecture." msgstr "" -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2035,34 +2057,15 @@ msgid "" "package." msgstr "" -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the %(box_name)s Wiki." msgstr "" -#: plinth/modules/help/templates/help_about.html:60 -msgid "Learn more »" -msgstr "" - -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, python-format -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "" - -#: plinth/modules/help/templates/help_about.html:69 -#, python-format -msgid "" -"There is a new %(box_name)s version available." -msgstr "" - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, python-format -msgid "%(box_name)s is up to date." +#: plinth/modules/help/templates/help_about.html:78 +msgid "Learn more" msgstr "" #: plinth/modules/help/templates/help_base.html:21 @@ -2128,7 +2131,7 @@ msgid "Thank you!" msgstr "" #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 msgid "Help" msgstr "" @@ -2164,7 +2167,7 @@ msgid "" "channel using the IRC web interface." msgstr "" -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 msgid "Download as PDF" msgstr "" @@ -2342,16 +2345,16 @@ msgstr "" msgid "No wikis or blogs available." msgstr "" -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2442,8 +2445,8 @@ msgstr "" msgid "Chat Client" msgstr "" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "" @@ -2473,63 +2476,63 @@ msgstr "" msgid "Certificates" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 msgid "Domain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 msgid "Actions" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, python-format msgid "Valid, expires on %(expiry_date)s" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 msgid "Revoked" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, python-format msgid "Expired on %(expiry_date)s" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 msgid "Invalid test certificate" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 msgid "No certificate" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, python-format msgid "" "No domains have been configured. Configure " @@ -2606,12 +2609,6 @@ msgstr "" msgid "Element" msgstr "" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -2696,51 +2693,51 @@ msgstr "" msgid "Wiki" msgstr "" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 msgid "Administrator Password" msgstr "" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." msgstr "" -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 msgid "Server URL" msgstr "" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." msgstr "" -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 msgid "Enable public registrations" msgstr "" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." msgstr "" -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 msgid "Enable private mode" msgstr "" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 msgid "" "If enabled, access will be restricted. Only people who have accounts can " "read/write to the wiki. Public registrations will also be disabled." msgstr "" -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 msgid "Default Skin" msgstr "" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -2828,13 +2825,13 @@ msgstr "" msgid "When disabled, players cannot die or receive damage of any kind." msgstr "" -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "" @@ -2982,109 +2979,108 @@ msgstr "" msgid "Monkeysphere" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 msgid "Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 msgid "OpenPGP Fingerprint" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 msgid "Secure Shell" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 msgid "Other" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 msgid "-" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 msgid "Add Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 msgid "SSH Key Type" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 msgid "SSH Key Size" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 msgid "SSH Fingerprint" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 msgid "Available Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 msgid "Added Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 msgid "Download the key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 msgid "Send the key back to the keyservers" msgstr "" @@ -3172,7 +3168,7 @@ msgstr "" msgid "All web apps" msgstr "" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 msgid "Services" msgstr "" @@ -3259,8 +3255,8 @@ msgid "" msgstr "" #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "" @@ -3336,7 +3332,7 @@ msgid "-- select --" msgstr "" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 msgid "SSID" msgstr "" @@ -3345,7 +3341,7 @@ msgid "The visible name of the network." msgstr "" #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "" @@ -3374,7 +3370,7 @@ msgid "B/G (2.4 GHz)" msgstr "" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 msgid "Channel" msgstr "" @@ -3522,179 +3518,179 @@ msgid "" "to be reminded later. Some of the other configuration steps may fail.

" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 msgid "MAC address" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 msgid "Interface" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 msgid "please check cable" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 msgid "" "This interface should be connected to a local network/machine. If you " "connect this interface to a public network, services meant to be available " "only internally will become available externally. This is a security risk." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 msgid "" "This interface should receive your Internet connection. If you connect it to " "a local network/machine, many services meant to available only internally " "will not be available." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -3715,40 +3711,40 @@ msgstr "" msgid "Delete connection %(name)s permanently?" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 msgid "Spacing" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "" @@ -3774,19 +3770,19 @@ msgstr "" msgid "Add Connection" msgstr "" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "" @@ -3812,8 +3808,8 @@ msgstr "" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "" @@ -3897,7 +3893,7 @@ msgid "" "are no other devices on the network." msgstr "" -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -4337,93 +4333,93 @@ msgstr "" msgid "PageKite Domain" msgstr "" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 msgid "Server domain" msgstr "" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " "pagekite.net server." msgstr "" -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." msgstr "" -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 msgid "Deleted custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 msgid "This service is already available as a standard service." msgstr "" -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 msgid "Added custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 msgid "Custom Services" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 msgid "Add Custom Service" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "" @@ -4503,12 +4499,13 @@ msgid "" "finished before shutting down or restarting." msgstr "" -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +msgid "Restart" msgstr "" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" +msgid "Shut Down" msgstr "" #: plinth/modules/power/templates/power_restart.html:17 @@ -4794,21 +4791,21 @@ msgstr "" msgid "Dolphin" msgstr "" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 msgid "Shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 msgid "" "Note: Only specially created directories will be shared on selected disks, " "not the whole disk." msgstr "" -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 msgid "VFAT partitions are not supported" msgstr "" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the users module page." msgstr "" -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 msgid "Users who can currently access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 msgid "" "Users needing to re-enter their password on the password change page to " "access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 msgid "Unavailable Shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." msgstr "" -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 msgid "Share name" msgstr "" -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 msgid "Action" msgstr "" @@ -4950,25 +4947,25 @@ msgid "" "services." msgstr "" -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 msgid "Show security report" msgstr "" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "" -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5012,39 +5009,39 @@ msgid "" "running." msgstr "" -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 msgid "App Name" msgstr "" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 msgid "Current Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 msgid "Past Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 msgid "Sandboxed" msgstr "" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 msgid "Sandbox Coverage" msgstr "" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 msgid "N/A" msgstr "" -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 msgid "Yes" msgstr "" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 msgid "No" msgstr "" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 msgid "Not running" msgstr "" @@ -5185,28 +5182,28 @@ msgstr "" msgid "Shares should be either public or shared with at least one group" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 msgid "Add share" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "" -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 msgid "Shared Over" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 msgid "With Groups" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "" @@ -5330,41 +5327,41 @@ msgstr "" msgid "Delete the following snapshots permanently?" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 msgid "Delete Snapshots" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 msgid "Create Snapshot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 msgid "will be used at next boot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "" @@ -5387,7 +5384,7 @@ msgid "" "the newly created snapshot." msgstr "" -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "" @@ -5475,11 +5472,11 @@ msgid "" "client matches one of these fingerprints." msgstr "" -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 msgid "Fingerprint" msgstr "" @@ -5652,27 +5649,27 @@ msgstr "" msgid "Other directory (specify below)" msgstr "" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 msgid "The following storage devices are in use:" msgstr "" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 msgid "Used" msgstr "" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -5680,13 +5677,13 @@ msgid "" "will provide you additional free space to store your files." msgstr "" -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -5793,25 +5790,25 @@ msgstr "" msgid "Local introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 msgid "Pet Name" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 msgid "Add" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "" @@ -5955,19 +5952,19 @@ msgstr "" msgid "Tor configuration is being updated" msgstr "" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 msgid "Onion Service" msgstr "" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 msgid "Ports" msgstr "" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 msgid "Relay" msgstr "" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, python-format msgid "" "If your %(box_name)s is behind a router or firewall, you should make sure " @@ -6048,7 +6045,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 msgid "Update" @@ -6081,7 +6078,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "" @@ -6101,11 +6098,11 @@ msgid "" "cannot be deactivated." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 msgid "Updating, please wait..." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 msgid "" "This may take a long time to complete. During an update, " @@ -6113,7 +6110,7 @@ msgid "" "case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, python-format msgid "" "\n" @@ -6138,32 +6135,32 @@ msgstr "" msgid "Dismiss" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, python-format msgid "There is a new %(box_name)s version available." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 msgid "Your Freedombox needs an update!" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -6171,22 +6168,22 @@ msgid "" "\"%(snapshot_url)s\">Storage Snapshots before continuing." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 msgid "Manual Update" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 msgid "Update now" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 msgid "" "This may take a long time to complete. During an update, " "you cannot install apps. Also, this web interface may be temporarily " "unavailable and show an error. In that case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 msgid "Show recent update logs" msgstr "" @@ -6359,8 +6356,8 @@ msgstr "" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "" @@ -6413,21 +6410,21 @@ msgid "" "step." msgstr "" -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "" + #: plinth/modules/users/templates/users_update.html:11 #, python-format msgid "Edit User %(username)s" @@ -6501,8 +6498,8 @@ msgstr "" #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 msgid "Public Key" msgstr "" @@ -6587,7 +6584,7 @@ msgid "Allowed IPs" msgstr "" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 msgid "Last Connected Time" msgstr "" @@ -6596,47 +6593,47 @@ msgstr "" msgid "No peers configured to connect to this %(box_name)s yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, python-format msgid "Public key for this %(box_name)s:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 msgid "Not configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 msgid "Add a new peer" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 msgid "As a Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "" @@ -6668,40 +6665,40 @@ msgid "" "is configured with the following information." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 msgid "Server endpoints:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 msgid "Server public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "" @@ -6713,15 +6710,15 @@ msgid "" "public key and IP address." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 msgid "Server endpoint:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "" @@ -6857,49 +6854,53 @@ msgstr "" msgid "Service %(service_name)s is not running." msgstr "" -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, python-format msgid "Core functionality and web interface for %(box_name)s" msgstr "" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" +#: plinth/templates/base.html:107 +msgid " Home" msgstr "" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +msgid " Apps" +msgstr "" + +#: plinth/templates/base.html:119 msgid "Apps" msgstr "" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +msgid " System" +msgstr "" + +#: plinth/templates/base.html:128 msgid "System" msgstr "" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -msgid "Restart" -msgstr "" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 msgid "Shut down" msgstr "" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 msgid "Select language" msgstr "" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "" @@ -6963,7 +6964,7 @@ msgstr "" msgid "RPM:" msgstr "" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -6977,10 +6978,6 @@ msgid "" "this page." msgstr "" -#: plinth/templates/index.html:46 -msgid "Configure »" -msgstr "" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -7005,7 +7002,7 @@ msgstr "" msgid "Source Code" msgstr "" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "" @@ -7039,6 +7036,10 @@ msgid "" "%(interface_list)s" msgstr "" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 msgid "Notifications" msgstr "" @@ -7070,15 +7071,15 @@ msgid "" "your router. You should forward the following ports for %(service_name)s:" msgstr "" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 msgid "Protocol" msgstr "" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, python-format msgid "To %(box_name)s Ports" msgstr "" diff --git a/plinth/locale/cs/LC_MESSAGES/django.po b/plinth/locale/cs/LC_MESSAGES/django.po index 51173b19c..b0d23991a 100644 --- a/plinth/locale/cs/LC_MESSAGES/django.po +++ b/plinth/locale/cs/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: 2020-06-24 11:41+0000\n" "Last-Translator: Pavel Borecki \n" "Language-Team: Czech diaspora." "%(domain_name)s " +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "Nastavení" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1813,16 +1820,16 @@ msgid "About" msgstr "O projektu" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 msgid "Status" msgstr "Stav" @@ -1979,7 +1986,7 @@ msgstr "" msgid "Port {name} ({details}) unavailable for external networks" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -1993,44 +2000,40 @@ msgstr "" "příkazem „service firewalld start“ nebo v případě systému se systemd pomocí " "„systemctl start firewalld“." -#: plinth/modules/firewall/templates/firewall.html:28 -msgid "Show Ports" -msgstr "Zobrazit porty" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "Služba/port" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "Zapnuto" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "Vypnuto" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "Umožněno" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "Umožněno (pouze vnitřní)" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "Umožněno (pouze vnější)" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "Blokováno" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " @@ -2040,13 +2043,13 @@ msgstr "" "také povolena na bráně firewall a když nějako službu vypnete, je také " "zakázána na bráně firewall." -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -2091,7 +2094,7 @@ msgstr "" "Možná bude třeba zkontrolovat nastavení sítě a případně upravit." -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "Spustit nastavení" @@ -2202,33 +2205,33 @@ msgstr "" msgid "Git" msgstr "Git" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 msgid "Manage Repositories" msgstr "Spravovat repozitáře" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 msgid "Create repository" msgstr "Vytvořit repozitář" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 msgid "No repositories available." msgstr "Nejsou k dispozici žádné repozitáře." -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 -#, python-format -msgid "Delete repository %(repo.name)s" -msgstr "Smazat repozitář %(repo.name)s" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 -msgid "Cloning…" -msgstr "" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 #, python-format msgid "Go to repository %(repo.name)s" msgstr "Přejít do repozitáře %(repo.name)s" +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 +msgid "Cloning…" +msgstr "" + +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 +#, python-format +msgid "Delete repository %(repo.name)s" +msgstr "Smazat repozitář %(repo.name)s" + #: plinth/modules/gitweb/templates/gitweb_delete.html:12 #, python-format msgid "Delete Git Repository %(name)s" @@ -2290,6 +2293,26 @@ msgid "Contribute" msgstr "Zapojit se" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, python-format +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "Provozujete %(os_release)s a %(box_name)s verze %(version)s." + +#: plinth/modules/help/templates/help_about.html:23 +#, fuzzy, python-format +#| msgid "There is a new %(box_name)s version available." +msgid "" +"There is a new %(box_name)s version available." +msgstr "Je k dispozici nová verze %(box_name)s." + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, python-format +msgid "%(box_name)s is up to date." +msgstr "%(box_name)s je aktuální." + +#: plinth/modules/help/templates/help_about.html:35 #, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2308,7 +2331,7 @@ msgstr "" "proxy a Tor předávání. To vše na zařízení, které může nahradit váš Wi-Fi " "směrovač. Vaše data zůstávají u vás." -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2324,7 +2347,7 @@ msgstr "" "ochranu. Vrácením moci uživatelům nad jejich sítěmi a stroji, vracíme " "Internet k jeho původně zamýšlené decentralizované architektuře." -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2335,7 +2358,7 @@ msgstr "" "distribuovaných služeb; %(box_name)s se snaží je všechny spojit dohromady v " "pohodlně použitelné podobě." -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the %(box_name)s Wiki." -#: plinth/modules/help/templates/help_about.html:60 -msgid "Learn more »" -msgstr "Zjistit víc o »" - -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, python-format -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "Provozujete %(os_release)s a %(box_name)s verze %(version)s." - -#: plinth/modules/help/templates/help_about.html:69 -#, fuzzy, python-format -#| msgid "There is a new %(box_name)s version available." -msgid "" -"There is a new %(box_name)s version available." -msgstr "Je k dispozici nová verze %(box_name)s." - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, python-format -msgid "%(box_name)s is up to date." -msgstr "%(box_name)s je aktuální." +#: plinth/modules/help/templates/help_about.html:78 +#, fuzzy +#| msgid "Learn more..." +msgid "Learn more" +msgstr "Zjistit více…" #: plinth/modules/help/templates/help_base.html:21 #: plinth/modules/help/templates/help_index.html:61 @@ -2450,7 +2455,7 @@ msgid "Thank you!" msgstr "Děkujeme!" #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 msgid "Help" msgstr "Nápověda" @@ -2498,7 +2503,7 @@ msgstr "" "webchat.oftc.net/?randomnick=1&channels=freedombox&prompt=1\"> #freedombox kanálu pomocí webového rozhraní k IRC." -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 msgid "Download as PDF" msgstr "Stáhnout jako PDF" @@ -2721,16 +2726,16 @@ msgstr "Vytvořit wiki nebo blog" msgid "No wikis or blogs available." msgstr "Nejsou k dispozici žádné wiki nebo blogy." -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "Smazat stránku %(site)s" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "Přejít na stránku %(site)s" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "Smazat stránku %(site)s" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2831,8 +2836,8 @@ msgstr "JSXC" msgid "Chat Client" msgstr "Chatovací klient" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "Licenční informace o JavaScriptu" @@ -2871,63 +2876,63 @@ msgstr "Let's Encrypt" msgid "Certificates" msgstr "Certifikáty" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 msgid "Domain" msgstr "Doména" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "Stav certifikátu" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "Zabezpečení webové stránky" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 msgid "Actions" msgstr "Akce" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, python-format msgid "Valid, expires on %(expiry_date)s" msgstr "Platné, končí %(expiry_date)s" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 msgid "Revoked" msgstr "Platnost odvolána" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, python-format msgid "Expired on %(expiry_date)s" msgstr "Platnost skončila %(expiry_date)s" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 msgid "Invalid test certificate" msgstr "Neplatný testovací certifikát" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "Neplatné (%(reason)s)" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 msgid "No certificate" msgstr "Žádný certifikát" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "Získat znovu" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "Odvolat platnost" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "Získat" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, python-format msgid "" "No domains have been configured. Configure " @@ -3026,12 +3031,6 @@ msgstr "" msgid "Element" msgstr "" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "Nastavení" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -3148,11 +3147,11 @@ msgstr "MediaWiki" msgid "Wiki" msgstr "Wiki" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 msgid "Administrator Password" msgstr "Heslo k účtu správce" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." @@ -3160,23 +3159,23 @@ msgstr "" "Nastavte nové heslo pro účet správce (admin) MediaWiki. Pro ponechání " "stávajícího hesla tuto kolonku nevyplňujte." -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 #, fuzzy #| msgid "Server" msgid "Server URL" msgstr "Server" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." msgstr "" -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 msgid "Enable public registrations" msgstr "Umožnit registraci veřejnosti" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." @@ -3184,11 +3183,11 @@ msgstr "" "Pokud je zapnuto, kdokoli z Internetu si bude moci vytvořit účet na vaší " "instanci MediaWiki." -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 msgid "Enable private mode" msgstr "Zapnout soukromý režim" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 msgid "" "If enabled, access will be restricted. Only people who have accounts can " "read/write to the wiki. Public registrations will also be disabled." @@ -3196,13 +3195,13 @@ msgstr "" "Když je zapnuto, přístup bude omezen. Pouze lidé kteří zde mají uživatelské " "účty mohou číst/psát do wiki. Registrace veřejnosti jsou také vypnuté." -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 #, fuzzy #| msgid "Default" msgid "Default Skin" msgstr "Výchozí" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -3302,13 +3301,13 @@ msgstr "Zapnout poškozování" msgid "When disabled, players cannot die or receive damage of any kind." msgstr "Pokud je vypnuto, postavy hráčů nemohou zemřít nebo se zranit." -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "Adresa" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "Port" @@ -3479,95 +3478,94 @@ msgstr "" msgid "Monkeysphere" msgstr "Monkeysphere" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "Zveřejňování klíče na serveru s klíči…" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "Storno" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "Služba" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 msgid "Domains" msgstr "Domény" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 msgid "OpenPGP Fingerprint" msgstr "OpenPGP otisk" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 msgid "Secure Shell" msgstr "Zabezpečený shell" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 msgid "Other" msgstr "Ostatní" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "Zobrazit podrobnosti klíče %(fingerprint)s" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 msgid "-" msgstr "-" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "Importovat klíč" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "Zveřejnit klíč" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 msgid "Add Domains" msgstr "Přidat domény" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "OpenPGP identifikátory uživatele" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "Datum importu klíče" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 msgid "SSH Key Type" msgstr "Typ SSH klíče" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 msgid "SSH Key Size" msgstr "Délka SSH klíče" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 msgid "SSH Fingerprint" msgstr "SSH otisk" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "Soubor s klíčem" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 msgid "Available Domains" msgstr "Domény k dispozici" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 msgid "Added Domains" msgstr "Přidané domény" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" @@ -3576,15 +3574,15 @@ msgstr "" "nástroje GnuPG a to následujícími " "příkazy:" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 msgid "Download the key" msgstr "Stáhnout si klíč" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "Podepsat klíč" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 msgid "Send the key back to the keyservers" msgstr "Poslat klíč zpět na servery s klíči" @@ -3691,7 +3689,7 @@ msgstr "Vše" msgid "All web apps" msgstr "Všechny webové aplikace" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 #, fuzzy #| msgid "Service" msgid "Services" @@ -3794,8 +3792,8 @@ msgstr "" "třídy IP adresy." #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "Brána" @@ -3881,7 +3879,7 @@ msgid "-- select --" msgstr "-- vybrat --" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 msgid "SSID" msgstr "SSID" @@ -3890,7 +3888,7 @@ msgid "The visible name of the network." msgstr "Viditelný název sítě." #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "Režim" @@ -3919,7 +3917,7 @@ msgid "B/G (2.4 GHz)" msgstr "B/G (2,4 GHz)" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 msgid "Channel" msgstr "Kanál" @@ -4077,158 +4075,158 @@ msgid "" "to be reminded later. Some of the other configuration steps may fail.

" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "Upravit připojení" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "Upravit" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "Deaktivovat" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "Aktivovat" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "Smazat připojení" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "Připojení" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "Hlavní připojení" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "ano" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "Zařízení" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "Stav" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "Důvod stavu" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 msgid "MAC address" msgstr "MAC adresa" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 msgid "Interface" msgstr "Rozhraní" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "Popis" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "Fyzická linka" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "Stav linky" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "kabel je připojen" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 msgid "please check cable" msgstr "zkontrolujte kabel" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "Rychlost" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "%(ethernet_speed)s Mbit/s" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "%(wireless_bitrate)s Mbit/s" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "Síla signálu" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "IPv4" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "Metoda" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "IP adresa" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "DNS server" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "Výchozí" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "IPv6" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "Toto připojení není aktivní." -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "Zabezpečení" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "Zóna brány firewall" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 msgid "" "This interface should be connected to a local network/machine. If you " "connect this interface to a public network, services meant to be available " @@ -4238,8 +4236,8 @@ msgstr "" "připojíte do veřejné sítě, služby které jsou zamýšleny být k dispozici pouze " "vnitřně se stanou dostupné zvenčí. To je bezpečnostní riziko." -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 msgid "" "This interface should receive your Internet connection. If you connect it to " "a local network/machine, many services meant to available only internally " @@ -4249,13 +4247,13 @@ msgstr "" "připojíte do místní sítě/stroji, mnohé služby, které jsou určené být " "dostupné pouze vnitřně nebudou dostupné." -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "Vnější" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -4276,40 +4274,40 @@ msgstr "Smazat připojení" msgid "Delete connection %(name)s permanently?" msgstr "Nevratně smazat připojení %(name)s?" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "Internet" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 msgid "Spacing" msgstr "Mezery" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "Ethernet" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "Wi-Fi" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "Zobrazit připojení %(name)s" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "Vnitřní" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "Počítač" @@ -4335,19 +4333,19 @@ msgstr "Wi-Fi sítě poblíž" msgid "Add Connection" msgstr "Přidat připojení" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "Smazat připojení %(name)s" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "Aktivní" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "Neaktivní" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "Smazat připojení %(name)s" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "Vytvořit…" @@ -4373,8 +4371,8 @@ msgstr "" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "" @@ -4463,7 +4461,7 @@ msgid "" "are no other devices on the network." msgstr "" -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -5006,11 +5004,11 @@ msgstr "Viditelnost na veřejnosti" msgid "PageKite Domain" msgstr "PageKite doména" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 msgid "Server domain" msgstr "Doména serveru" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " "pagekite.net server." @@ -5018,31 +5016,31 @@ msgstr "" "Vyberte pagekite server, který chcete používat. Pokud to má být ten výchozí, " "zadejte „pagekite.net“." -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "Port serveru" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "Port pagekite serveru (výchozí: 80)" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "Kite název" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "Příklad: mybox.pagekite.me" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "Neplatný kite název" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "Kite heslo" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." @@ -5050,27 +5048,27 @@ msgstr "" "Heslo přiřazené ke kite nebo výchozí heslo pro váš účet pokud není na kite " "žádné nastavené." -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "protokol" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "vnější (frontend) port" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "vnitřní (freedombox) port" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "Zapnout podřízené domény" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 msgid "Deleted custom service" msgstr "Uživatelem určená služba smazána" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 #, fuzzy #| msgid "" #| "This service is available as a standard service. Please use the " @@ -5080,31 +5078,31 @@ msgstr "" "Tato služba je k dispozici jako standardní služba. Zapněte ji na stránce " "„Standardní služby“." -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 msgid "Added custom service" msgstr "Uživatelem určená služba přidána" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "Tato služba už existuje" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 msgid "Custom Services" msgstr "Uživatelem určené služby" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 #, fuzzy #| msgid "Custom Services" msgid "Add Custom Service" msgstr "Uživatelem určené služby" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "připojeno na %(backend_host)s:%(backend_port)s" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "Smazat tuto službu" @@ -5195,13 +5193,16 @@ msgstr "" "Nyní je spuštěná instalace nebo přechod na novější verzi. Počkejte s vypínám " "či restartem na dokončení této operace." -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" -msgstr "Restartovat »" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +msgid "Restart" +msgstr "Restartovat" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" -msgstr "Vypnout »" +#, fuzzy +#| msgid "Shut down" +msgid "Shut Down" +msgstr "Vypnout" #: plinth/modules/power/templates/power_restart.html:17 msgid "" @@ -5570,23 +5571,23 @@ msgstr "Kalendář GNOME" msgid "Dolphin" msgstr "" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 #, fuzzy #| msgid "Shared" msgid "Shares" msgstr "Sdílené" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 msgid "" "Note: Only specially created directories will be shared on selected disks, " "not the whole disk." msgstr "" -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 msgid "VFAT partitions are not supported" msgstr "" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the users module page." msgstr "" -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 msgid "Users who can currently access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 msgid "" "Users needing to re-enter their password on the password change page to " "access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 #, fuzzy #| msgid "Available Domains" msgid "Unavailable Shares" msgstr "Domény k dispozici" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." msgstr "" -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 #, fuzzy #| msgid "Share added." msgid "Share name" msgstr "Sdílení přidáno." -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 #, fuzzy #| msgid "Actions" msgid "Action" @@ -5758,25 +5759,25 @@ msgstr "" "hrubou silou na SSH server a ostatní zapnuté internetové služby, využívající " "ověření heslem." -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 msgid "Show security report" msgstr "Zobrazit výkaz o zabezpečení" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "" -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5820,47 +5821,47 @@ msgid "" "running." msgstr "" -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 msgid "App Name" msgstr "Název aplikace" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 msgid "Current Vulnerabilities" msgstr "Stávající zranitelnosti zabezpečení" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 msgid "Past Vulnerabilities" msgstr "Minulé zranitelnosti zabezpečení" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 #, fuzzy #| msgid "Block Sandbox" msgid "Sandboxed" msgstr "Pískoviště s kostkami" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 #, fuzzy #| msgid "Block Sandbox" msgid "Sandbox Coverage" msgstr "Pískoviště s kostkami" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 msgid "N/A" msgstr "" -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 #, fuzzy #| msgid "yes" msgid "Yes" msgstr "ano" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 #, fuzzy #| msgid "None" msgid "No" msgstr "Žádný" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 #, fuzzy #| msgid "Tor is running" msgid "Not running" @@ -6037,28 +6038,28 @@ msgstr "Sdílení s tímto názvem už existuje." msgid "Shares should be either public or shared with at least one group" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 msgid "Add share" msgstr "Přidat sdílení" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "Nyní není nastavené žádné sdílení." -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "Popis umístění na datovém úložišti" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 msgid "Shared Over" msgstr "Sdíleno přes" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 msgid "With Groups" msgstr "Se skupinami" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "veřejný přístup" @@ -6205,41 +6206,41 @@ msgstr "" msgid "Delete the following snapshots permanently?" msgstr "Nevratně smazat tyto zachycené stavy?" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "Počet" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "Datum" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 msgid "Delete Snapshots" msgstr "Smazat zachycené stavy" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 msgid "Create Snapshot" msgstr "Pořídit zachycený stav" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "Obnovit ze zálohy" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 msgid "will be used at next boot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "Vrátit k zachycenému stavu č. %(number)s" @@ -6271,7 +6272,7 @@ msgstr "" "Bude automaticky pořízen zachycený stav stávajícího stavu systému. Tak bude " "možné se vrátit zpět do podoby nově zachyceného stavu." -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "Vrátit k zachycenému stavu č. %(number)s" @@ -6367,11 +6368,11 @@ msgid "" "client matches one of these fingerprints." msgstr "" -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "Algoritmus" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 msgid "Fingerprint" msgstr "Otisk (fingerprint)" @@ -6565,27 +6566,27 @@ msgstr "Sdílené" msgid "Other directory (specify below)" msgstr "" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 msgid "The following storage devices are in use:" msgstr "Jsou používána následující úložná zařízení:" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "Štítek" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "Přípojný bod" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 msgid "Used" msgstr "Použito" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "Zvětšení oddílu" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -6596,13 +6597,13 @@ msgstr "" "Kořenový oddíl je možné zvětšit a místo tak využít. Poskytne vám to další " "prostor pro ukládání vašich souborů." -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "Zvětšit kořenový oddíl" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -6738,25 +6739,25 @@ msgstr "" msgid "Local introducer" msgstr "Místní uvaděč" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 msgid "Pet Name" msgstr "Jméno domácího mazlíčka" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "Přidat nový uvaděč" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 msgid "Add" msgstr "Přidat" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "Připojené uvaděče" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "Odebrat" @@ -6932,21 +6933,21 @@ msgstr "Orbot: proxy s Tor" msgid "Tor configuration is being updated" msgstr "Nastavení Tor jsou aktualizována" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 #, fuzzy #| msgid "Hidden Service" msgid "Onion Service" msgstr "Skrytá služba" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 msgid "Ports" msgstr "Porty" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 msgid "Relay" msgstr "Předávání" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, python-format msgid "" "If your %(box_name)s is behind a router or firewall, you should make sure " @@ -7049,7 +7050,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 msgid "Update" @@ -7088,7 +7089,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "" @@ -7110,13 +7111,13 @@ msgid "" "cannot be deactivated." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 #, fuzzy #| msgid "Updating..." msgid "Updating, please wait..." msgstr "Aktualizace…" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 #, fuzzy #| msgid "" @@ -7132,7 +7133,7 @@ msgstr "" "aktualizace není možné instalovat aplikace. Také webové rozhraní může být " "dočasně nedostupné a zobrazovat chybu. V takovém případě ho načtěte znovu." -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, fuzzy, python-format #| msgid "%(box_name)s is up to date." msgid "" @@ -7159,34 +7160,34 @@ msgstr "" msgid "Dismiss" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "Aktualizace…" -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, python-format msgid "There is a new %(box_name)s version available." msgstr "Je k dispozici nová verze %(box_name)s." -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 #, fuzzy #| msgid "FreedomBox Foundation" msgid "Your Freedombox needs an update!" msgstr "Nadace FreedomBox" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -7194,17 +7195,17 @@ msgid "" "\"%(snapshot_url)s\">Storage Snapshots before continuing." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 #, fuzzy #| msgid "Manual update" msgid "Manual Update" msgstr "Ruční aktualizace" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 msgid "Update now" msgstr "Aktualizovat nyní" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 #, fuzzy #| msgid "" #| "This may take a long time to complete. During an update, " @@ -7219,7 +7220,7 @@ msgstr "" "aktualizace není možné instalovat aplikace. Také webové rozhraní může být " "dočasně nedostupné a zobrazovat chybu. V takovém případě ho načtěte znovu." -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 #, fuzzy #| msgid "Toggle recent update logs" msgid "Show recent update logs" @@ -7426,8 +7427,8 @@ msgstr "Uložit heslo" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "Vytvořit uživatele" @@ -7487,21 +7488,21 @@ msgid "" "step." msgstr "" -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "Uživatelé" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "Smazat uživatele %(username)s" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "Upravit uživatele %(username)s" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "Smazat uživatele %(username)s" + #: plinth/modules/users/templates/users_update.html:11 #, fuzzy, python-format #| msgid "Edit user %(username)s" @@ -7580,8 +7581,8 @@ msgstr "Neplatný kite název" #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 #, fuzzy #| msgid "Publish Key" msgid "Public Key" @@ -7674,7 +7675,7 @@ msgid "Allowed IPs" msgstr "" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 #, fuzzy #| msgid "Create Connection" msgid "Last Connected Time" @@ -7685,57 +7686,57 @@ msgstr "Vytvořit připojení" msgid "No peers configured to connect to this %(box_name)s yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, python-format msgid "Public key for this %(box_name)s:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 #, fuzzy #| msgid "No shares currently configured." msgid "Not configured yet." msgstr "Nyní není nastavené žádné sdílení." -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 #, fuzzy #| msgid "Add new introducer" msgid "Add a new peer" msgstr "Přidat nový uvaděč" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 #, fuzzy #| msgid "Chat Client" msgid "As a Client" msgstr "Chatovací klient" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 #, fuzzy #| msgid "Authentication to remote server failed." msgid "No connections to remote servers are configured yet." msgstr "Ověření vůči vzdálenému serveru se nezdařilo." -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 #, fuzzy #| msgid "Add new introducer" msgid "Add a new server" msgstr "Přidat nový uvaděč" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 #, fuzzy #| msgid "Add Connection" @@ -7779,44 +7780,44 @@ msgid "" "is configured with the following information." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 #, fuzzy #| msgid "Server domain" msgid "Server endpoints:" msgstr "Doména serveru" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 #, fuzzy #| msgid "Select verified SSH public key" msgid "Server public key:" msgstr "Vyberte ověřený SSH veřejný klíč" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "" @@ -7828,17 +7829,17 @@ msgid "" "public key and IP address." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 #, fuzzy #| msgid "Server domain" msgid "Server endpoint:" msgstr "Doména serveru" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "" @@ -8020,49 +8021,53 @@ msgstr "Instalace" msgid "Service %(service_name)s is not running." msgstr "Služba %(service_name)s není spuštěná." -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, python-format msgid "Core functionality and web interface for %(box_name)s" msgstr "Základní funkce a webové rozhraní pro %(box_name)s" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" -msgstr "Přepnout navigaci" +#: plinth/templates/base.html:107 +msgid " Home" +msgstr " Domů" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "Domů" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +msgid " Apps" +msgstr " Aplikace" + +#: plinth/templates/base.html:119 msgid "Apps" msgstr "Aplikace" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +msgid " System" +msgstr " Systém" + +#: plinth/templates/base.html:128 msgid "System" msgstr "Systém" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "Změnit heslo" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -msgid "Restart" -msgstr "Restartovat" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 msgid "Shut down" msgstr "Vypnout" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "Odhlásit" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 msgid "Select language" msgstr "Vyberte jazyk" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "Přihlásit" @@ -8126,7 +8131,7 @@ msgstr "Homebrew:" msgid "RPM:" msgstr "RPM:" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -8144,10 +8149,6 @@ msgstr "" "Odkazy na této stránce se objeví až po zapnutí nějakých aplikací." -#: plinth/templates/index.html:46 -msgid "Configure »" -msgstr "Nastavit »" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -8179,7 +8180,7 @@ msgstr "Domovská stránka" msgid "Source Code" msgstr "Zdrojové kódy" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "Podpořit vývoj darem" @@ -8217,6 +8218,10 @@ msgstr "" "Jako vnitřní jsou v tuto chvíli nastavená následující síťová rozhraní: " "%(interface_list)s" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 #, fuzzy #| msgid "No certificate" @@ -8262,17 +8267,17 @@ msgstr "" "nastavit předávání portů. Přesměrovávány by měly být následující porty pro " "%(service_name)s:" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 #, fuzzy #| msgid "protocol" msgid "Protocol" msgstr "protokol" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, fuzzy, python-format #| msgid "%(box_name)s Setup" msgid "To %(box_name)s Ports" @@ -8330,6 +8335,24 @@ msgstr "%(percentage)s%% dokončeno" msgid "Gujarati" msgstr "gudžarátština" +#~ msgid "Show Ports" +#~ msgstr "Zobrazit porty" + +#~ msgid "Learn more »" +#~ msgstr "Zjistit víc o »" + +#~ msgid "Restart »" +#~ msgstr "Restartovat »" + +#~ msgid "Shut Down »" +#~ msgstr "Vypnout »" + +#~ msgid "Toggle navigation" +#~ msgstr "Přepnout navigaci" + +#~ msgid "Configure »" +#~ msgstr "Nastavit »" + #~ msgid "Show connection %(connection.name)s" #~ msgstr "Zobrazit připojení %(connection.name)s" @@ -9068,15 +9091,6 @@ msgstr "gudžarátština" #~ "Zachycené stavy software starší než tato doba budou smazány. Toto " #~ "neomezuje počet vytvořených zachycených stavu software." -#~ msgid " Home" -#~ msgstr " Domů" - -#~ msgid " Apps" -#~ msgstr " Aplikace" - -#~ msgid " System" -#~ msgstr " Systém" - #~ msgid "Archive name" #~ msgstr "Název archivu" diff --git a/plinth/locale/da/LC_MESSAGES/django.po b/plinth/locale/da/LC_MESSAGES/django.po index 4efb53438..efef65efb 100644 --- a/plinth/locale/da/LC_MESSAGES/django.po +++ b/plinth/locale/da/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FreedomBox UI\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: 2020-10-27 10:42+0000\n" "Last-Translator: James Valleroy \n" "Language-Team: Danish diaspora.%(domain_name)s." +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "Konfiguration" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1782,16 +1789,16 @@ msgid "About" msgstr "Om" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 msgid "Status" msgstr "Status" @@ -1945,7 +1952,7 @@ msgstr "Port {name} ({details}) er tilgængelig for eksterne netværk" msgid "Port {name} ({details}) unavailable for external networks" msgstr "Port {name} ({details}) er ikke tilgængelig for eksterne netværk" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -1958,44 +1965,40 @@ msgstr "" "%(box_name)s er) kan den startes med kommandoen 'service firewalld start' " "eller hvis systemet bruger systemd 'systemctl start firewalld'." -#: plinth/modules/firewall/templates/firewall.html:28 -msgid "Show Ports" -msgstr "Vis porte" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "Tjeneste/Port" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "Aktiveret" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "Deaktiveret" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "Tilladt" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "Tilladt (kun internt)" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "Tilladt (kun eksternt)" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "Blokeret" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " @@ -2005,13 +2008,13 @@ msgstr "" "også blive åbnet i firewallen, og når du deaktiverer en tjeneste blokeres " "den igen." -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "Avanceret" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -2056,7 +2059,7 @@ msgstr "" "Det kan være en god idé at kontrollere -" "netværksindstillingerne og ændre dem om nødvendigt." -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "Start Konfiguration" @@ -2170,41 +2173,41 @@ msgstr "" msgid "Git" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 #, fuzzy #| msgid "Create User" msgid "Manage Repositories" msgstr "Opret Bruger" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 #, fuzzy #| msgid "Create User" msgid "Create repository" msgstr "Opret Bruger" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 #, fuzzy #| msgid "Tor relay port available" msgid "No repositories available." msgstr "Tor videresendelsesport tilgængelig" -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 -#, fuzzy, python-format -#| msgid "Delete user %(username)s" -msgid "Delete repository %(repo.name)s" -msgstr "Slet bruger %(username)s" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 -msgid "Cloning…" -msgstr "" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 #, fuzzy, python-format #| msgid "Go to site %(site)s" msgid "Go to repository %(repo.name)s" msgstr "Gå til sitet %(site)s" +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 +msgid "Cloning…" +msgstr "" + +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 +#, fuzzy, python-format +#| msgid "Delete user %(username)s" +msgid "Delete repository %(repo.name)s" +msgstr "Slet bruger %(username)s" + #: plinth/modules/gitweb/templates/gitweb_delete.html:12 #, fuzzy, python-format #| msgid "Delete Wiki or Blog %(name)s" @@ -2275,6 +2278,27 @@ msgid "Contribute" msgstr "" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, fuzzy, python-format +#| msgid "You are running Plinth version %(version)s." +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "Du kører Plinth version %(version)s." + +#: plinth/modules/help/templates/help_about.html:23 +#, python-format +msgid "" +"There is a new %(box_name)s version available." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, fuzzy, python-format +#| msgid "%(box_name)s Setup" +msgid "%(box_name)s is up to date." +msgstr "%(box_name)s Konfiguration" + +#: plinth/modules/help/templates/help_about.html:35 #, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2293,7 +2317,7 @@ msgstr "" "sociale netværk, email, webproxy-filter og Tor-relæ, på en enhed der kan " "erstatte din Wi-Fi-router således at dine data bliver hos dig." -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2310,7 +2334,7 @@ msgstr "" "over netværk og maskiner tilbage til brugerne, bringer vi internettet " "tilbage til dets påtænkte peer-to-peer arkitektur." -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2321,7 +2345,7 @@ msgstr "" "distribuerede tjenester er mere udbredte end i dag; %(box_name)s har som mål " "at kombinere alle disse i én letanvendelig pakke." -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the %(box_name)s Wiki-siden." -#: plinth/modules/help/templates/help_about.html:60 -msgid "Learn more »" +#: plinth/modules/help/templates/help_about.html:78 +#, fuzzy +#| msgid "Learn more »" +msgid "Learn more" msgstr "Lær mere »" -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, fuzzy, python-format -#| msgid "You are running Plinth version %(version)s." -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "Du kører Plinth version %(version)s." - -#: plinth/modules/help/templates/help_about.html:69 -#, python-format -msgid "" -"There is a new %(box_name)s version available." -msgstr "" - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, fuzzy, python-format -#| msgid "%(box_name)s Setup" -msgid "%(box_name)s is up to date." -msgstr "%(box_name)s Konfiguration" - #: plinth/modules/help/templates/help_base.html:21 #: plinth/modules/help/templates/help_index.html:61 #, python-format @@ -2420,7 +2425,7 @@ msgid "Thank you!" msgstr "" #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 msgid "Help" msgstr "Hjælp" @@ -2468,7 +2473,7 @@ msgstr "" "\"https://webchat.oftc.net/?randomnick=1&channels=freedombox&prompt=1\"> " "#freedombox med IRC web-brugerfladen." -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 #, fuzzy #| msgid "downloading" msgid "Download as PDF" @@ -2685,16 +2690,16 @@ msgstr "Opret Wiki eller Blog" msgid "No wikis or blogs available." msgstr "Ingen wikier eller blogs tilgængelig." -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "Slet sitet %(site)s" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "Gå til sitet %(site)s" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "Slet sitet %(site)s" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2793,8 +2798,8 @@ msgstr "" msgid "Chat Client" msgstr "IRC-klient (Quassel)" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "" @@ -2851,71 +2856,71 @@ msgstr "Certifikater (Let's Encrypt)" msgid "Certificates" msgstr "Certifikat Status" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 msgid "Domain" msgstr "Domæne" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "Certifikat Status" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "Webside-sikkerhed" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 msgid "Actions" msgstr "Handlinger" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, fuzzy, python-format #| msgid "Expires on %(expiry_date)s" msgid "Valid, expires on %(expiry_date)s" msgstr "Udløbsdato %(expiry_date)s" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 #, fuzzy #| msgid "Revoke" msgid "Revoked" msgstr "Træk Tilbage" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, fuzzy, python-format #| msgid "Expires on %(expiry_date)s" msgid "Expired on %(expiry_date)s" msgstr "Udløbsdato %(expiry_date)s" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 #, fuzzy #| msgid "Invalid kite name" msgid "Invalid test certificate" msgstr "Ugyldigt kite-name" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 #, fuzzy #| msgid "No certficate" msgid "No certificate" msgstr "Intet certifikat" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "Generhverv" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "Træk Tilbage" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "Erhverv" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, python-format msgid "" "No domains have been configured. Configure " @@ -3000,12 +3005,6 @@ msgstr "" msgid "Element" msgstr "" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "Konfiguration" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -3101,61 +3100,61 @@ msgstr "" msgid "Wiki" msgstr "" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 #, fuzzy #| msgid "Administrator Account" msgid "Administrator Password" msgstr "Administratorkonto" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." msgstr "" -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 #, fuzzy #| msgid "Service" msgid "Server URL" msgstr "Tjeneste" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." msgstr "" -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 #, fuzzy #| msgid "Enable application" msgid "Enable public registrations" msgstr "Aktiver applikation" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." msgstr "" -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 #, fuzzy #| msgid "Enable reStore" msgid "Enable private mode" msgstr "Aktiver reStore" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 msgid "" "If enabled, access will be restricted. Only people who have accounts can " "read/write to the wiki. Public registrations will also be disabled." msgstr "" -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 #, fuzzy #| msgid "Default" msgid "Default Skin" msgstr "Standard" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -3269,13 +3268,13 @@ msgstr "Aktiver PageKite" msgid "When disabled, players cannot die or receive damage of any kind." msgstr "" -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "Adresse" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "Port" @@ -3458,95 +3457,94 @@ msgstr "" msgid "Monkeysphere" msgstr "Monkeysphere" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "Distribuerer nøgle til nøgleserver..." -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "Annuller" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "Tjeneste" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 msgid "Domains" msgstr "Domæner" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 msgid "OpenPGP Fingerprint" msgstr "OpenPGP-fingeraftryk" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 msgid "Secure Shell" msgstr "Secure Shell" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 msgid "Other" msgstr "Andet" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "Vis detaljer for nøgle %(fingerprint)s" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 msgid "-" msgstr "-" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "Importer Nøgle" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "Distribuer Nøgle" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 msgid "Add Domains" msgstr "Tilføj Domæner" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "OpenPGP-bruger-id'er" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "Nøgleimportdato" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 msgid "SSH Key Type" msgstr "SSH-nøgletype" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 msgid "SSH Key Size" msgstr "SSH-nøglestørrelse" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 msgid "SSH Fingerprint" msgstr "SSH-fingeraftryk" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "Nøglefil" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 msgid "Available Domains" msgstr "Tilgængelige Domæner" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 msgid "Added Domains" msgstr "Tilføjede Domæner" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" @@ -3554,15 +3552,15 @@ msgstr "" "Når denne nøgle er distribueret til nøgleserverne, kan den underskrives med " "GnuPG ved brug af følgende kommandoer:" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 msgid "Download the key" msgstr "Hent nøglen" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "Underskriv nøglen" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 msgid "Send the key back to the keyservers" msgstr "Send nøglen tilbage til nøgleserverne" @@ -3661,7 +3659,7 @@ msgstr "" msgid "All web apps" msgstr "" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 #, fuzzy #| msgid "Service" msgid "Services" @@ -3762,8 +3760,8 @@ msgstr "" "baseret på adressen anvendes." #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "Gateway" @@ -3874,7 +3872,7 @@ msgid "-- select --" msgstr "-- vælg --" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 msgid "SSID" msgstr "SSID" @@ -3883,7 +3881,7 @@ msgid "The visible name of the network." msgstr "Netværkets synlige navn." #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "Tilstand" @@ -3912,7 +3910,7 @@ msgid "B/G (2.4 GHz)" msgstr "" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 msgid "Channel" msgstr "Kanal" @@ -4069,158 +4067,158 @@ msgid "" "to be reminded later. Some of the other configuration steps may fail.

" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "Rediger Forbindelse" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "Rediger" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "Deaktiver" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "Aktiver" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "Slet forbindelse" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "Forbindelse" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "Primær forbindelse" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "ja" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "Enhed" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "Tilstand" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "Tilstandsbegrundelse" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 msgid "MAC address" msgstr "MAC-adresse" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 msgid "Interface" msgstr "Interface" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "Beskrivelse" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "Fysisk Link" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "Linktilstand" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "kabel forbundet" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 msgid "please check cable" msgstr "kontroller kabling" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "Hastighed" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "%(ethernet_speed)s Mbit/s" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "%(wireless_bitrate)s Mbit/s" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "Signalstyrke" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "IPv4" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "Metode" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "IP-adresse" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "DNS-server" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "Standard" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "IPv6" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "Denne forbindelse er ikke aktiv." -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "Sikkerhed" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "Firewall-zone" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 msgid "" "This interface should be connected to a local network/machine. If you " "connect this interface to a public network, services meant to be available " @@ -4231,8 +4229,8 @@ msgstr "" "kun er beregnet til at være internt tilgængelige blive tilgængelige udefra. " "Dette er en sikkerhedsrisiko." -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 msgid "" "This interface should receive your Internet connection. If you connect it to " "a local network/machine, many services meant to available only internally " @@ -4242,13 +4240,13 @@ msgstr "" "Forbinder du det til et lokalt netværk eller maskine, vil tjenester som er " "beregnet til at være eksternt tilgængelige ikke være det." -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "Ekstern" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -4269,40 +4267,40 @@ msgstr "Slet Forbindelse" msgid "Delete connection %(name)s permanently?" msgstr "Slet forbindelsen %(name)s permanent?" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "Internet" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 msgid "Spacing" msgstr "Afstand" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "Ethernet" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "Wi-Fi" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "Vis forbindelse %(name)s" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "Intern" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "Computer" @@ -4330,19 +4328,19 @@ msgstr "Wi-Fi-netværk i Nærheden" msgid "Add Connection" msgstr "Tilføj forbindelse" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "Slet forbindelse %(name)s" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "Aktiv" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "Inaktiv" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "Slet forbindelse %(name)s" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "Opret..." @@ -4368,8 +4366,8 @@ msgstr "" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "Næste" @@ -4458,7 +4456,7 @@ msgid "" "are no other devices on the network." msgstr "" -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -5008,11 +5006,11 @@ msgstr "Offentlig Tilgængelighed (PageKite)" msgid "PageKite Domain" msgstr "PageKite-konto" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 msgid "Server domain" msgstr "Serverdomæne" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " "pagekite.net server." @@ -5020,31 +5018,31 @@ msgstr "" "Vælg din PageKite-server. Brug \"pagekite.net\" hvis du vil bruge " "standardserveren fra pagekite.net." -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "Serverport" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "PageKite-serverport (standard: 80)" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "Kite-navn" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "Eksempel: mybox.pagekite.me" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "Ugyldigt kite-name" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "Kite-hemmelighed" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." @@ -5052,27 +5050,27 @@ msgstr "" "En hemmelighed tilknyttet denne kite, eller standard-hemmeligheden for din " "konto hvis der ikke er defineret nogen for denne kite." -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "protokol" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "ekstern (WAN) port" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "intern (FreedomBox) port" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "Aktiver Subdomæner" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 msgid "Deleted custom service" msgstr "Brugerdefineret tjeneste slettet" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 #, fuzzy #| msgid "" #| "This service is available as a standard service. Please use the " @@ -5082,31 +5080,31 @@ msgstr "" "Denne tjeneste er tilgængelig som en standardtjeneste. Brug venligst siden " "\"Standardtjenester\" for at aktivere den." -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 msgid "Added custom service" msgstr "Tilføjet brugerdefineret tjeneste" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "Denne tjeneste eksisterer allerede" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 msgid "Custom Services" msgstr "Brugerdefinerede Tjenester" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 #, fuzzy #| msgid "Custom Services" msgid "Add Custom Service" msgstr "Brugerdefinerede Tjenester" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "forbundet til %(backend_host)s:%(backend_port)s" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "Slet denne tjeneste" @@ -5196,13 +5194,18 @@ msgid "" "finished before shutting down or restarting." msgstr "" -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" -msgstr "Genstart »" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +#, fuzzy +#| msgid "Restart Now" +msgid "Restart" +msgstr "Genstart Nu" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" -msgstr "Sluk »" +#, fuzzy +#| msgid "Shut Down Now" +msgid "Shut Down" +msgstr "Sluk Nu" #: plinth/modules/power/templates/power_restart.html:17 msgid "" @@ -5564,23 +5567,23 @@ msgstr "" msgid "Dolphin" msgstr "" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 #, fuzzy #| msgid "Add Service" msgid "Shares" msgstr "Tilføj Service" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 msgid "" "Note: Only specially created directories will be shared on selected disks, " "not the whole disk." msgstr "" -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 msgid "VFAT partitions are not supported" msgstr "" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the users module page." msgstr "" -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 msgid "Users who can currently access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 msgid "" "Users needing to re-enter their password on the password change page to " "access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 #, fuzzy #| msgid "Available Domains" msgid "Unavailable Shares" msgstr "Tilgængelige Domæner" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." msgstr "" -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 #, fuzzy #| msgid "Kite name" msgid "Share name" msgstr "Kite-navn" -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 #, fuzzy #| msgid "Actions" msgid "Action" @@ -5746,27 +5749,27 @@ msgid "" "services." msgstr "" -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 #, fuzzy #| msgid "Security" msgid "Show security report" msgstr "Sikkerhed" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "" -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5812,47 +5815,47 @@ msgid "" "running." msgstr "" -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 #, fuzzy #| msgid "Name" msgid "App Name" msgstr "Navn" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 msgid "Current Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 msgid "Past Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 #, fuzzy #| msgid "Block Sandbox (Minetest)" msgid "Sandboxed" msgstr "Block Testområde (Minetest)" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 #, fuzzy #| msgid "Block Sandbox (Minetest)" msgid "Sandbox Coverage" msgstr "Block Testområde (Minetest)" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 msgid "N/A" msgstr "" -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 #, fuzzy #| msgid "yes" msgid "Yes" msgstr "ja" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 msgid "No" msgstr "" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 #, fuzzy #| msgid "is not running" msgid "Not running" @@ -6018,32 +6021,32 @@ msgstr "Denne tjeneste eksisterer allerede" msgid "Shares should be either public or shared with at least one group" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 #, fuzzy #| msgid "Add Service" msgid "Add share" msgstr "Tilføj Service" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "" -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 msgid "Shared Over" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 #, fuzzy #| msgid "Groups" msgid "With Groups" msgstr "Grupper" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "" @@ -6187,45 +6190,45 @@ msgstr "" msgid "Delete the following snapshots permanently?" msgstr "Slet bruger permanent?" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 #, fuzzy #| msgid "Delete %(name)s" msgid "Delete Snapshots" msgstr "Slet %(name)s" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 #, fuzzy #| msgid "Create User" msgid "Create Snapshot" msgstr "Opret Bruger" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 msgid "will be used at next boot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "" @@ -6248,7 +6251,7 @@ msgid "" "the newly created snapshot." msgstr "" -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "" @@ -6348,11 +6351,11 @@ msgid "" "client matches one of these fingerprints." msgstr "" -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 #, fuzzy #| msgid "SSH Fingerprint" msgid "Fingerprint" @@ -6549,29 +6552,29 @@ msgstr "Tilføj Service" msgid "Other directory (specify below)" msgstr "" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 #, fuzzy #| msgid "The following disks are in use:" msgid "The following storage devices are in use:" msgstr "Følgende diske er i brug:" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "Monteringspunkt" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 msgid "Used" msgstr "Brugt" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -6582,13 +6585,13 @@ msgstr "" "Rod-partitionen kan udvides til også at inkludere denne plads. Dette vil " "give dig yderligere fri plads til at gemme filer i." -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "Udvid Rod-partition" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -6700,29 +6703,29 @@ msgstr "" msgid "Local introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 #, fuzzy #| msgid "Name" msgid "Pet Name" msgstr "Navn" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 #, fuzzy #| msgid "Address" msgid "Add" msgstr "Adresse" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "" @@ -6887,21 +6890,21 @@ msgstr "" msgid "Tor configuration is being updated" msgstr "Tor-konfiguration opdateres" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 #, fuzzy #| msgid "Hidden Service" msgid "Onion Service" msgstr "Skjult Tjeneste" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 msgid "Ports" msgstr "Porte" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 msgid "Relay" msgstr "" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, fuzzy, python-format #| msgid "" #| "Your %(box_name)s is configured as a Tor bridge with obfsproxy, so it can " @@ -7006,7 +7009,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 msgid "Update" @@ -7047,7 +7050,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "" @@ -7067,11 +7070,11 @@ msgid "" "cannot be deactivated." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 msgid "Updating, please wait..." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 #, fuzzy #| msgid "" @@ -7090,7 +7093,7 @@ msgstr "" "blive midlertidigt utilgængeligt og vise en fejl. Genindlæs siden for at " "fortsætte." -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, fuzzy, python-format #| msgid "%(box_name)s Setup" msgid "" @@ -7117,34 +7120,34 @@ msgstr "" msgid "Dismiss" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, python-format msgid "There is a new %(box_name)s version available." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 #, fuzzy #| msgid "FreedomBox Manual" msgid "Your Freedombox needs an update!" msgstr "FreedomBox Brugervejledning" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -7152,19 +7155,19 @@ msgid "" "\"%(snapshot_url)s\">Storage Snapshots before continuing." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 #, fuzzy #| msgid "Last update" msgid "Manual Update" msgstr "Seneste opdatering" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 #, fuzzy #| msgid "Update" msgid "Update now" msgstr "Opdater" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 #, fuzzy #| msgid "" #| "Depending on the number of packages to install, this may take a long time " @@ -7182,7 +7185,7 @@ msgstr "" "blive midlertidigt utilgængeligt og vise en fejl. Genindlæs siden for at " "fortsætte." -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 msgid "Show recent update logs" msgstr "" @@ -7389,8 +7392,8 @@ msgstr "Gem Kodeord" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "Opret Bruger" @@ -7450,21 +7453,21 @@ msgid "" "step." msgstr "" -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "Brugere" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "Slet bruger %(username)s" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "Rediger Bruger %(username)s" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "Slet bruger %(username)s" + #: plinth/modules/users/templates/users_update.html:11 #, python-format msgid "Edit User %(username)s" @@ -7542,8 +7545,8 @@ msgstr "Ugyldigt kite-name" #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 #, fuzzy #| msgid "Publish Key" msgid "Public Key" @@ -7634,7 +7637,7 @@ msgid "Allowed IPs" msgstr "" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 #, fuzzy #| msgid "Create Connection" msgid "Last Connected Time" @@ -7645,49 +7648,49 @@ msgstr "Opret Forbindelse" msgid "No peers configured to connect to this %(box_name)s yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, python-format msgid "Public key for this %(box_name)s:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 msgid "Not configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 msgid "Add a new peer" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 #, fuzzy #| msgid "IRC Client (Quassel)" msgid "As a Client" msgstr "IRC-klient (Quassel)" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 #, fuzzy #| msgid "Add Connection" @@ -7727,44 +7730,44 @@ msgid "" "is configured with the following information." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 #, fuzzy #| msgid "Server domain" msgid "Server endpoints:" msgstr "Serverdomæne" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 #, fuzzy #| msgid "Server port" msgid "Server public key:" msgstr "Serverport" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "" @@ -7776,17 +7779,17 @@ msgid "" "public key and IP address." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 #, fuzzy #| msgid "Server domain" msgid "Server endpoint:" msgstr "Serverdomæne" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "" @@ -7964,56 +7967,62 @@ msgstr "Installation" msgid "Service %(service_name)s is not running." msgstr "Tjenestesøgningstjenesten er ikke aktiv" -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, fuzzy, python-format #| msgid "Plinth administrative interface for the %(box_name)s" msgid "Core functionality and web interface for %(box_name)s" msgstr "Plinth administrationsværktøj til %(box_name)s" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" -msgstr "Åbn/luk navigation" +#: plinth/templates/base.html:107 +msgid " Home" +msgstr "" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +#, fuzzy +#| msgid "Apps" +msgid " Apps" +msgstr "Apps" + +#: plinth/templates/base.html:119 msgid "Apps" msgstr "Apps" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +#, fuzzy +#| msgid "System" +msgid " System" +msgstr "System" + +#: plinth/templates/base.html:128 msgid "System" msgstr "System" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "Ændr kodeord" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -#, fuzzy -#| msgid "Restart Now" -msgid "Restart" -msgstr "Genstart Nu" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 #, fuzzy #| msgid "Shut Down Now" msgid "Shut down" msgstr "Sluk Nu" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "Log ud" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 #, fuzzy #| msgid "Language" msgid "Select language" msgstr "Sprog" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "Log ind" @@ -8085,7 +8094,7 @@ msgstr "" msgid "RPM:" msgstr "" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -8099,12 +8108,6 @@ msgid "" "this page." msgstr "" -#: plinth/templates/index.html:46 -#, fuzzy -#| msgid "Configure" -msgid "Configure »" -msgstr "Konfigurer" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -8129,7 +8132,7 @@ msgstr "" msgid "Source Code" msgstr "" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "" @@ -8166,6 +8169,10 @@ msgid "" "%(interface_list)s" msgstr "" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 #, fuzzy #| msgid "No certficate" @@ -8201,17 +8208,17 @@ msgid "" "your router. You should forward the following ports for %(service_name)s:" msgstr "" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 #, fuzzy #| msgid "protocol" msgid "Protocol" msgstr "protokol" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, fuzzy, python-format #| msgid "%(box_name)s Setup" msgid "To %(box_name)s Ports" @@ -8265,6 +8272,26 @@ msgstr "%(percentage)s%% færdig" msgid "Gujarati" msgstr "" +#~ msgid "Show Ports" +#~ msgstr "Vis porte" + +#~ msgid "Learn more »" +#~ msgstr "Lær mere »" + +#~ msgid "Restart »" +#~ msgstr "Genstart »" + +#~ msgid "Shut Down »" +#~ msgstr "Sluk »" + +#~ msgid "Toggle navigation" +#~ msgstr "Åbn/luk navigation" + +#, fuzzy +#~| msgid "Configure" +#~ msgid "Configure »" +#~ msgstr "Konfigurer" + #~ msgid "Show connection %(connection.name)s" #~ msgstr "Vis forbindelse %(connection.name)s" @@ -8796,16 +8823,6 @@ msgstr "" #~ msgid "chrony client in contact with servers" #~ msgstr "NTP-klient i kontakt med servere" -#, fuzzy -#~| msgid "Apps" -#~ msgid " Apps" -#~ msgstr "Apps" - -#, fuzzy -#~| msgid "System" -#~ msgid " System" -#~ msgstr "System" - #, fuzzy #~| msgid "Invalid server name" #~ msgid "Invalid archive name" diff --git a/plinth/locale/de/LC_MESSAGES/django.po b/plinth/locale/de/LC_MESSAGES/django.po index 889ea3f4d..fe9b088d8 100644 --- a/plinth/locale/de/LC_MESSAGES/django.po +++ b/plinth/locale/de/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FreedomBox UI\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: 2020-12-21 11:29+0000\n" "Last-Translator: Johannes Keyser \n" "Language-Team: German diaspora." "%(domain_name)s" +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "Konfiguration" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1801,16 +1808,16 @@ msgid "About" msgstr "Info" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 msgid "Status" msgstr "Status" @@ -1967,7 +1974,7 @@ msgstr "Port -Name {name} ({details}) für externe Netzwerke verfügbar" msgid "Port {name} ({details}) unavailable for external networks" msgstr "Port -Name {name} ({details}) für externe Netzwerke nicht verfügbar" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -1980,44 +1987,40 @@ msgstr "" "%(box_name)s) kann sie über das Kommando „service firewalld start“ oder bei " "einem System mit systemd mit „systemctl start firewalld“ gestartet werden." -#: plinth/modules/firewall/templates/firewall.html:28 -msgid "Show Ports" -msgstr "Ports anzeigen" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "Dienst/Port" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "Aktiviert" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "Deaktiviert" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "Erlaubt" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "Erlaubt (nur intern)" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "Erlaubt (nur extern)" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "Geblockt" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " @@ -2027,13 +2030,13 @@ msgstr "" "aktivieren, wird dieser in der Firewall ebenfalls aktiviert und wenn Sie " "einen Dienst deaktivieren, wird dieser ebenso in der Firewall deaktiviert." -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "Fortgeschritten" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -2081,7 +2084,7 @@ msgstr "" "Möglicherweise wollen Sie die Netzwerkeinstellungen prüfen und falls nötig anpassen." -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "Einrichten beginnen" @@ -2188,33 +2191,33 @@ msgstr "Gitweb zeigt dies als Standard-Zweig an." msgid "Git" msgstr "Git" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 msgid "Manage Repositories" msgstr "Archive verwalten" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 msgid "Create repository" msgstr "Respository anlegen" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 msgid "No repositories available." msgstr "Keine Archive verfügbar." -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 -#, python-format -msgid "Delete repository %(repo.name)s" -msgstr "Archiv %(repo.name)s löschen" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 -msgid "Cloning…" -msgstr "Klonen…" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 #, python-format msgid "Go to repository %(repo.name)s" msgstr "Gehe zum Archiv %(repo.name)s" +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 +msgid "Cloning…" +msgstr "Klonen…" + +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 +#, python-format +msgid "Delete repository %(repo.name)s" +msgstr "Archiv %(repo.name)s löschen" + #: plinth/modules/gitweb/templates/gitweb_delete.html:12 #, python-format msgid "Delete Git Repository %(name)s" @@ -2272,6 +2275,27 @@ msgid "Contribute" msgstr "Mitwirken" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, python-format +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "Es läuft %(os_release)s und %(box_name)s Version %(version)s." + +#: plinth/modules/help/templates/help_about.html:23 +#, python-format +msgid "" +"There is a new %(box_name)s version available." +msgstr "" +"Es ist eine neue %(box_name)s Version verfügbar." + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, python-format +msgid "%(box_name)s is up to date." +msgstr "%(box_name)s ist auf dem neuesten Stand." + +#: plinth/modules/help/templates/help_about.html:35 #, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2291,7 +2315,7 @@ msgstr "" "Netzwerke, E-Mail, Web-Proxy und einen Tor-Relay, so dass Sie für die " "Nutzung dieser Anwendungen Ihre Daten nicht aus der Hand zu geben brauchen." -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2309,7 +2333,7 @@ msgstr "" "bringen wir das Internet wieder in seine ursprünglich vorgesehenen Peer-to-" "Peer-Architektur (Gleiche mit Gleichen) zurück." -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2320,7 +2344,7 @@ msgstr "" "verteilter Dienste arbeiten; %(box_name)s hat das Ziel, sie alle in einem " "praktischen Paket zusammenzubringen." -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the %(box_name)s-Wiki." -#: plinth/modules/help/templates/help_about.html:60 -msgid "Learn more »" -msgstr "Mehr erfahren »" - -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, python-format -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "Es läuft %(os_release)s und %(box_name)s Version %(version)s." - -#: plinth/modules/help/templates/help_about.html:69 -#, python-format -msgid "" -"There is a new %(box_name)s version available." -msgstr "" -"Es ist eine neue %(box_name)s Version verfügbar." - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, python-format -msgid "%(box_name)s is up to date." -msgstr "%(box_name)s ist auf dem neuesten Stand." +#: plinth/modules/help/templates/help_about.html:78 +#, fuzzy +#| msgid "Learn more..." +msgid "Learn more" +msgstr "Mehr erfahren …" #: plinth/modules/help/templates/help_base.html:21 #: plinth/modules/help/templates/help_index.html:61 @@ -2439,7 +2444,7 @@ msgid "Thank you!" msgstr "Danke!" #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 msgid "Help" msgstr "Hilfe" @@ -2487,7 +2492,7 @@ msgstr "" "\"https://webchat.oftc.net/?randomnick=1&channels=freedombox&prompt=1\"> " "#freedombox-Kanal der IRC-Weboberfläche." -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 msgid "Download as PDF" msgstr "Als PDF herunterladen" @@ -2706,16 +2711,16 @@ msgstr "Wiki oder Blog anlegen" msgid "No wikis or blogs available." msgstr "Keine Wikis oder Blogs verfügbar." -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "Seite %(site)s löschen" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "Gehe zu Seite %(site)s" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "Seite %(site)s löschen" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2815,8 +2820,8 @@ msgstr "JSXC" msgid "Chat Client" msgstr "Chatclient" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "JavaScript-Lizenzinformation" @@ -2858,63 +2863,63 @@ msgstr "Let's Encrypt" msgid "Certificates" msgstr "Zertifikate" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 msgid "Domain" msgstr "Domain" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "Zertifikatstatus" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "Webseiten-Sicherheit" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 msgid "Actions" msgstr "Aktionen" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, python-format msgid "Valid, expires on %(expiry_date)s" msgstr "Gültig, verfällt am %(expiry_date)s" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 msgid "Revoked" msgstr "Widerrufen" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, python-format msgid "Expired on %(expiry_date)s" msgstr "Verfallen am %(expiry_date)s" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 msgid "Invalid test certificate" msgstr "Ungültiges Testzertifikat" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "Ungültig (%(reason)s)" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 msgid "No certificate" msgstr "Kein Zertifikat" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "Wieder beziehen" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "Widerrufen" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "Beziehen" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, python-format msgid "" "No domains have been configured. Configure " @@ -3011,12 +3016,6 @@ msgstr "" msgid "Element" msgstr "Element" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "Konfiguration" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -3134,11 +3133,11 @@ msgstr "MediaWiki" msgid "Wiki" msgstr "Wiki" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 msgid "Administrator Password" msgstr "Administrator-Passwort" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." @@ -3146,11 +3145,11 @@ msgstr "" "Geben Sie ein neues Passwort für den MediaWiki-Administrator ein (admin). " "Lassen Sie das Feld leer, bleibt das derzeitige Passwort bestehen." -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 msgid "Server URL" msgstr "Server URL" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." @@ -3158,11 +3157,11 @@ msgstr "" "Wird von MediaWiki verwendet, um URLs zu generieren, die auf das Wiki " "verweisen, z.B. in der Fußzeile, in Feeds und E-Mails." -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 msgid "Enable public registrations" msgstr "Öffentliche Registrierung aktivieren" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." @@ -3170,11 +3169,11 @@ msgstr "" "Falls aktiviert, kann jeder im Internet ein Nutzerkonto für Ihre MediaWiki-" "Instanz anlegen." -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 msgid "Enable private mode" msgstr "Privaten Modus einschalten" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 msgid "" "If enabled, access will be restricted. Only people who have accounts can " "read/write to the wiki. Public registrations will also be disabled." @@ -3183,11 +3182,11 @@ msgstr "" "können das Wiki lesen oder ändern. Außerdem wird die öffentliche " "Registrierung deaktiviert." -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 msgid "Default Skin" msgstr "Standard Thema" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -3289,13 +3288,13 @@ msgstr "" "Wenn deaktiviert, können Spieler weder sterben noch irgendwelche Schäden " "erleiden." -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "Adresse" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "Port" @@ -3482,95 +3481,94 @@ msgstr "" msgid "Monkeysphere" msgstr "Monkeysphere" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "Schlüssel werden auf Schlüsselserver veröffentlicht …" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "Abbrechen" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "Dienst" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 msgid "Domains" msgstr "Domains" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 msgid "OpenPGP Fingerprint" msgstr "OpenPGP-Fingerabdruck" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 msgid "Secure Shell" msgstr "Secure Shell" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 msgid "Other" msgstr "Sonstiges" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "Details von Schlüssel %(fingerprint)s anzeigen" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 msgid "-" msgstr "-" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "Schlüssel importieren" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "Schlüssel veröffentlichen" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 msgid "Add Domains" msgstr "Domains hinzufügen" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "OpenPGP-Benutzer-IDs" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "Schlüssel-Importdatum" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 msgid "SSH Key Type" msgstr "SSH-Schlüsseltyp" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 msgid "SSH Key Size" msgstr "SSH-Schlüssellänge" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 msgid "SSH Fingerprint" msgstr "SSH-Fingerabdruck" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "Schlüsseldatei" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 msgid "Available Domains" msgstr "Verfügbare Domains" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 msgid "Added Domains" msgstr "Domains hinzugefügt" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" @@ -3579,15 +3577,15 @@ msgstr "" "GnuPG über folgende Eingaben signiert " "werden:" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 msgid "Download the key" msgstr "Download des Schlüssels" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "Schlüssel signieren" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 msgid "Send the key back to the keyservers" msgstr "Den Schlüssel zum Server zurücksenden" @@ -3687,7 +3685,7 @@ msgstr "Alle" msgid "All web apps" msgstr "Alle Webanwendungen" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 msgid "Services" msgstr "Dienste" @@ -3787,8 +3785,8 @@ msgstr "" "Adresse verwendet." #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "Gateway" @@ -3878,7 +3876,7 @@ msgid "-- select --" msgstr "-- auswählen --" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 msgid "SSID" msgstr "SSID" @@ -3887,7 +3885,7 @@ msgid "The visible name of the network." msgstr "Der sichtbare Name des Netzwerks." #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "Modus" @@ -3916,7 +3914,7 @@ msgid "B/G (2.4 GHz)" msgstr "B/G (2,4 GHz)" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 msgid "Channel" msgstr "Kanal" @@ -4130,158 +4128,158 @@ msgstr "" "erinnert werden möchten. Einige der anderen Konfigurationsschritte können " "fehlschlagen.

" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "Verbindung bearbeiten" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "Bearbeiten" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "Ausschalten" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "Einschalten" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "Verbindung löschen" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "Verbindung" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "Primäre Verbindung" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "ja" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "Gerät" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "Zustand" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "Erklärung des Zustands" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 msgid "MAC address" msgstr "MAC-Adresse" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 msgid "Interface" msgstr "Schnittstelle" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "Beschreibung" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "Physikalischer Link" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "Link-Zustand" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "Kabel verbunden" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 msgid "please check cable" msgstr "bitte Kabel prüfen" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "Geschwindigkeit" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "%(ethernet_speed)s Mbit/s" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "%(wireless_bitrate)s Mbit/s" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "Signalstärke" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "IPv4" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "Methode" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "IP-Adresse" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "DNS-Server" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "Standard" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "IPv6" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "Diese Verbindung ist nicht aktiv." -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "Sicherheit" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "Firewall-Zone" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 msgid "" "This interface should be connected to a local network/machine. If you " "connect this interface to a public network, services meant to be available " @@ -4292,8 +4290,8 @@ msgstr "" "(WAN) verbinden, werden Dienste, die nur intern zur Verfügung stehen " "sollten, extern erreichbar sein. Dies ist ein Sicherheitsrisiko." -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 msgid "" "This interface should receive your Internet connection. If you connect it to " "a local network/machine, many services meant to available only internally " @@ -4303,13 +4301,13 @@ msgstr "" "Wenn Sie diese an ein lokales Netzwerk/Rechner anschließen, werden viele " "Dienste, die nur intern zur Verfügung stehen sollten, nicht verfügbar sein." -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "Extern" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -4332,40 +4330,40 @@ msgstr "Verbindung löschen" msgid "Delete connection %(name)s permanently?" msgstr "Verbindung %(name)s dauerhaft löschen?" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "Internet" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 msgid "Spacing" msgstr "Abstand" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "Ethernet" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "WLAN" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "Verbindung %(name)s anzeigen" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "Intern" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "Computer" @@ -4391,19 +4389,19 @@ msgstr "WLANs in der Nähe" msgid "Add Connection" msgstr "Verbindung hinzufügen" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "Verbindung %(name)s löschen" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "Aktiv" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "Inaktiv" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "Verbindung %(name)s löschen" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "Anlegen …" @@ -4431,8 +4429,8 @@ msgstr "Überspringen Sie diesen Schritt" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "Weiter" @@ -4537,7 +4535,7 @@ msgstr "" "Ihre Internetverbindung ist direkt mit Ihren %(box_name)s verbunden und es " "gibt keine anderen Geräte im Netzwerk." -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -5042,11 +5040,11 @@ msgstr "Öffentliche Sichtbarkeit" msgid "PageKite Domain" msgstr "PageKite Domäne" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 msgid "Server domain" msgstr "Serverdomain" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " "pagekite.net server." @@ -5054,31 +5052,31 @@ msgstr "" "Wählen Sie Ihren PageKite-Server aus. „pagekite.net“ festlegen, um den " "Standardserver zu verwenden." -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "Serverport" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "Port Ihres PageKite-Servers (standard: 80)" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "Kite-Name" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "Beispiel: meinebox.pagekite.me" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "Ungültiger kite-Name" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "Kite secret" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." @@ -5086,53 +5084,53 @@ msgstr "" "Ein secret assoziiert mit dem kite oder das Standard-secret für Ihr Konto, " "wenn kein secret dem kite zugeordnet ist." -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "Protokoll" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "externer (frontend) Port" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "interner (FreedomBox) Port" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "Sub-Domainen einschalten" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 msgid "Deleted custom service" msgstr "Spezieller Dienst gelöscht" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 msgid "This service is already available as a standard service." msgstr "Dieser Service ist bereits als Standard-Service verfügbar." -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 msgid "Added custom service" msgstr "Spezieller Dienst hinzugefügt" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "Dieser Dienst existiert bereits" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 msgid "Custom Services" msgstr "Spezielle Dienste" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 msgid "Add Custom Service" msgstr "Hinzufügen von benutzerdefinierten Diensten" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "verbunden mit %(backend_host)s:%(backend_port)s" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "Diesen Dienst löschen" @@ -5228,13 +5226,16 @@ msgstr "" "Derzeit läuft eine Installation oder Update. Überlegen Sie auf die " "Fertigstellung zu warten, bevor Sie herunterfahren oder neu starten." -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" -msgstr "Neu starten »" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +msgid "Restart" +msgstr "Neu starten" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" -msgstr "Herunterfahren »" +#, fuzzy +#| msgid "Shut down" +msgid "Shut Down" +msgstr "Herunterfahren" #: plinth/modules/power/templates/power_restart.html:17 msgid "" @@ -5599,11 +5600,11 @@ msgstr "GNOME-Dateinen" msgid "Dolphin" msgstr "Dolphin" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 msgid "Shares" msgstr "Freigabenamen" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 msgid "" "Note: Only specially created directories will be shared on selected disks, " "not the whole disk." @@ -5611,11 +5612,11 @@ msgstr "" "Hinweis: Nur speziell erstellte Verzeichnisse werden auf ausgewählten " "Datenträgern freigegeben, nicht der gesamte Datenträger." -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 msgid "VFAT partitions are not supported" msgstr "VFAT-Partitionen werden nicht unterstützt" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the storage und konfigurieren Sie den Zugriff auf die " "Freigaben auf der Modulseite \"users." -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 msgid "Users who can currently access group and home shares" msgstr "Benutzer, die derzeit auf Gruppen- und Home-Freigaben zugreifen können" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 msgid "" "Users needing to re-enter their password on the password change page to " "access group and home shares" @@ -5638,11 +5639,11 @@ msgstr "" "Benutzer, die ihr Kennwort auf der Seite Kennwortänderung erneut eingeben " "müssen, um auf Gruppen- und Home-Freigaben zuzugreifen" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 msgid "Unavailable Shares" msgstr "Nicht verfügbare Shares" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." @@ -5651,11 +5652,11 @@ msgstr "" "Wenn der Datenträger wieder angeschlossen ist, wird die Freigabe automatisch " "aktiviert." -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 msgid "Share name" msgstr "Freigabename" -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 msgid "Action" msgstr "Aktion" @@ -5776,25 +5777,25 @@ msgstr "" "Falls aktiviert, begrenzt Fail2Ban automatisierte Einbruchversuche in den " "SSH-Server und andere aktivierte, passwortgeschützte Anwendungen." -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 msgid "Show security report" msgstr "Berichte über Sicherheitslücken anzeigen" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "Häufige Funktionsaktualisierungen" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "Häufige Funktions-Updates sind aktiviert." -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5854,39 +5855,39 @@ msgstr "" "Die \"Sandbox-Coverage\" ist ein Maß dafür, wie effektiv der Dienst vom Rest " "des Systems isoliert ist. Sie wird nur angezeigt, wenn der Dienst läuft." -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 msgid "App Name" msgstr "Anwendungsname" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 msgid "Current Vulnerabilities" msgstr "Aktuelle Sicherheitslücken anzeigen" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 msgid "Past Vulnerabilities" msgstr "Frühere Sicherheitslücken anzeigen" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 msgid "Sandboxed" msgstr "Sandboxed" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 msgid "Sandbox Coverage" msgstr "Sandbox-Abdeckung" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 msgid "N/A" msgstr "N/A" -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 msgid "Yes" msgstr "Ja" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 msgid "No" msgstr "Nein" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 msgid "Not running" msgstr "Läuft nicht" @@ -6050,28 +6051,28 @@ msgstr "Eine Freigabe mit diesem Namen existiert bereits." msgid "Shares should be either public or shared with at least one group" msgstr "Freigaben sollten öffentlich sein oder mindestens einer Gruppe haben" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 msgid "Add share" msgstr "Freigabe hinzufügen" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "Derzeit sind keine Freigaben konfiguriert." -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "Pfad der Festplatte" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 msgid "Shared Over" msgstr "Freigegeben über" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 msgid "With Groups" msgstr "Mit Gruppen" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "öffentlicher Zugang" @@ -6216,41 +6217,41 @@ msgstr "" msgid "Delete the following snapshots permanently?" msgstr "Folgenden Speicherauszug dauerhaft löschen?" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "Nummer" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "Datum" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 msgid "Delete Snapshots" msgstr "Speicherauszüge löschen" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 msgid "Create Snapshot" msgstr "Speicherauszug anlegen" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "Zurücksetzen" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 msgid "will be used at next boot" msgstr "wird beim nächsten Boot verwendet" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "in Benutzung" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "Zurücksetzen auf Speicherauszug #%(number)s" @@ -6279,7 +6280,7 @@ msgstr "" "automatisch erstellt. Sie können durch Rückgriff auf den neu erstellten " "Speicherauszug ein Zurücksetzen rückgängig zu machen." -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "Zurücksetzen auf Speicherauszug #%(number)s" @@ -6380,11 +6381,11 @@ msgstr "" "vom SSH-Client angezeigte Fingerabdruck mit einem dieser Fingerabdrücke " "übereinstimmt." -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "Algorithmus" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 msgid "Fingerprint" msgstr "Fingerabdruck" @@ -6569,27 +6570,27 @@ msgstr "Freigeben" msgid "Other directory (specify below)" msgstr "Anderes Verzeichnis (unten angeben)" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 msgid "The following storage devices are in use:" msgstr "Die folgenden Speichermedien werden verwendet:" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "Bezeichnung" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "Einhängepunkt" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 msgid "Used" msgstr "Genutzt" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "Partitions-Erweiterung" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -6601,13 +6602,13 @@ msgstr "" "Speicherplatz zu nutzen. Die Erweiterung stellt mehr Speicherplatz für Ihre " "Dateien bereit." -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "Erweitern der Root-Partition" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -6745,25 +6746,25 @@ msgstr "" msgid "Local introducer" msgstr "Lokaler Vermittler" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 msgid "Pet Name" msgstr "Pet-Name" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "Neuen Vermittler hinzufügen" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 msgid "Add" msgstr "Hinzufügen" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "Verbundene Vermittler" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "Entfernen" @@ -6937,19 +6938,19 @@ msgstr "Orbot: Proxy mit Tor" msgid "Tor configuration is being updated" msgstr "Tor-Konfiguration wird aktualisiert" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 msgid "Onion Service" msgstr "Onion-Dienste" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 msgid "Ports" msgstr "Ports" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 msgid "Relay" msgstr "Relay" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, python-format msgid "" "If your %(box_name)s is behind a router or firewall, you should make sure " @@ -7051,7 +7052,7 @@ msgstr "" "Anwendungen kurzzeitig nicht verfügbar sind." #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 msgid "Update" @@ -7087,7 +7088,7 @@ msgstr "" "aktualisiert, sobald diese verfügbar ist." #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "Aktivieren häufigen feature-updates (empfohlen)" @@ -7111,11 +7112,11 @@ msgstr "" "Hinweis: Sobald häufige Funktions-Updates aktiviert sind, " "können sie nicht deaktiviert werden." -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 msgid "Updating, please wait..." msgstr "Aktualisierung läuft, bitte warten…" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 msgid "" "This may take a long time to complete. During an update, " @@ -7127,7 +7128,7 @@ msgstr "" "und zeigt einen Fehler an. In diesem Fall aktualisieren Sie die Seite, um " "fortzufahren." -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, python-format msgid "" "\n" @@ -7158,28 +7159,28 @@ msgstr "" msgid "Dismiss" msgstr "Verwerfen" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "Aktualisierung läuft …" -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, python-format msgid "There is a new %(box_name)s version available." msgstr "Eine neue %(box_name)s Version ist verfügbar." -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 msgid "Your Freedombox needs an update!" msgstr "Ihre Freedombox benötigt ein Update!" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" "Häufige updates können aktiviert werden. Sie zu aktivieren ist " "empfehlenswert." -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." @@ -7187,7 +7188,7 @@ msgstr "" "Häufige Funktions-Updates können nicht aktiviert werden. Sie sind bei Ihrer " "Distribution möglicherweise nicht erforderlich." -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -7198,15 +7199,15 @@ msgstr "" "können sie nicht deaktiviert werden. Sie können einen Snapshot mit Speicherauszüge erstellen, bevor Sie fortfahren." -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 msgid "Manual Update" msgstr "Manuelle Aktualisierung" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 msgid "Update now" msgstr "Jetzt aktualisieren" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 msgid "" "This may take a long time to complete. During an update, " "you cannot install apps. Also, this web interface may be temporarily " @@ -7217,7 +7218,7 @@ msgstr "" "Weboberfläche möglicherweise vorübergehend nicht verfügbar und zeigt einen " "Fehler an. In diesem Fall aktualisieren Sie die Seite, um fortzufahren." -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 msgid "Show recent update logs" msgstr "Letzte Update-Protokolle anzeigen" @@ -7413,8 +7414,8 @@ msgstr "Passwort speichern" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "Benutzer anlegen" @@ -7476,21 +7477,21 @@ msgstr "" "bereits mit %(box_name)s verwendet werden kann, überspringen Sie diesen " "Schritt." -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "Benutzer" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "Benutzer %(username)s löschen" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "Benutzer %(username)s bearbeiten" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "Benutzer %(username)s löschen" + #: plinth/modules/users/templates/users_update.html:11 #, python-format msgid "Edit User %(username)s" @@ -7574,8 +7575,8 @@ msgstr "Ungültiger Schlüssel." #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 msgid "Public Key" msgstr "Öffentlicher Schlüssel" @@ -7681,7 +7682,7 @@ msgid "Allowed IPs" msgstr "Zulässige IPs" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 msgid "Last Connected Time" msgstr "Letzte verbundene Zeit" @@ -7692,47 +7693,47 @@ msgstr "" "Noch sind keine Peers für eine Verbindung mit diesem %(box_name)s " "konfiguriert." -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, python-format msgid "Public key for this %(box_name)s:" msgstr "Öffentlicher Schlüssel für diese %(box_name)s:" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 msgid "Not configured yet." msgstr "Noch nicht konfiguriert." -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 msgid "Add a new peer" msgstr "Hinzufügen eines neuen Peers" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "Zulässige Clients hinzufügen" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 msgid "As a Client" msgstr "Als Client" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "Server, mit denen %(box_name)s eine Verbindung herstellen:" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "Endpunkt" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 msgid "No connections to remote servers are configured yet." msgstr "Es sind noch keine Verbindungen zu entfernten Servern konfiguriert." -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 msgid "Add a new server" msgstr "Neuen Server hinzufügen" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "Verbindung zum Server hinzufügen" @@ -7766,40 +7767,40 @@ msgstr "" "%(box_name)s ermöglicht diesem Client die Verbindung mit ihm. Stellen Sie " "sicher, dass der Client mit den folgenden Informationen konfiguriert ist." -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "Öffentlicher Clientschlüssel:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "IP-Adresse, die für den Client verwendet werden soll:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "Vorher geteilter Schlüssel:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 msgid "Server endpoints:" msgstr "Server-Endpunkte:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 msgid "Server public key:" msgstr "Öffentlicher Schlüssel des Servers:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "Übermittelte Daten:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "Erhaltene Daten:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "Letzter Handshake:" @@ -7815,15 +7816,15 @@ msgstr "" "konfiguriert ist, dass der öffentliche Schlüssel und die IP-Adresse von " "%(box_name)s zulässig sind." -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 msgid "Server endpoint:" msgstr "Serverendpunkt:" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "Öffentlicher Schlüssel dieses Computers:" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "IP-Adresse dieses Rechners:" @@ -7970,49 +7971,53 @@ msgstr "Installation" msgid "Service %(service_name)s is not running." msgstr "Dienst %(service_name)s läuft nicht." -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, python-format msgid "Core functionality and web interface for %(box_name)s" msgstr "Kernfunktionalität und Weboberfläche für %(box_name)s" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" -msgstr "Navigation ein-/ausklappen" +#: plinth/templates/base.html:107 +msgid " Home" +msgstr " Startseite" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "Startseite" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +msgid " Apps" +msgstr " Apps" + +#: plinth/templates/base.html:119 msgid "Apps" msgstr "Apps" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +msgid " System" +msgstr " System" + +#: plinth/templates/base.html:128 msgid "System" msgstr "System" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "Passwort ändern" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -msgid "Restart" -msgstr "Neu starten" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 msgid "Shut down" msgstr "Herunterfahren" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "Abmelden" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 msgid "Select language" msgstr "Sprache wählen" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "Anmelden" @@ -8076,7 +8081,7 @@ msgstr "Homebrew:" msgid "RPM:" msgstr "RPM:" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -8094,10 +8099,6 @@ msgstr "" "Einige Anwendungen aktivieren, um Verknüpfungen " "zu dieser Seite hinzuzufügen." -#: plinth/templates/index.html:46 -msgid "Configure »" -msgstr "Konfigurieren »" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -8130,7 +8131,7 @@ msgstr "Homepage" msgid "Source Code" msgstr "Quellcode" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "Spenden" @@ -8168,6 +8169,10 @@ msgstr "" "Derzeit sind die folgenden Netzwerkschnittstellen als intern konfiguriert: " "%(interface_list)s" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 msgid "Notifications" msgstr "Benachrichtigungen" @@ -8208,15 +8213,15 @@ msgstr "" "Router eine Portweiterleitung einrichten. Sie sollten die folgenden Ports " "für %(service_name)s weiterleiten:" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 msgid "Protocol" msgstr "Protokoll" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "Von Router-/WAN-Ports" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, python-format msgid "To %(box_name)s Ports" msgstr "Zu %(box_name)s Ports" @@ -8271,6 +8276,24 @@ msgstr "%(percentage)s %% abgeschlossen" msgid "Gujarati" msgstr "Gujarati" +#~ msgid "Show Ports" +#~ msgstr "Ports anzeigen" + +#~ msgid "Learn more »" +#~ msgstr "Mehr erfahren »" + +#~ msgid "Restart »" +#~ msgstr "Neu starten »" + +#~ msgid "Shut Down »" +#~ msgstr "Herunterfahren »" + +#~ msgid "Toggle navigation" +#~ msgstr "Navigation ein-/ausklappen" + +#~ msgid "Configure »" +#~ msgstr "Konfigurieren »" + #~ msgid "Show connection %(connection.name)s" #~ msgstr "Verbindung %(connection.name)s anzeigen" @@ -9008,15 +9031,6 @@ msgstr "Gujarati" #~ "Ältere Speicherauszüge werden gelöscht. Dies begrenzt nicht die Anzahl " #~ "der Speicherauszüge die gemacht werden." -#~ msgid " Home" -#~ msgstr " Startseite" - -#~ msgid " Apps" -#~ msgstr " Apps" - -#~ msgid " System" -#~ msgstr " System" - #~ msgid "Archive name" #~ msgstr "Archivname" diff --git a/plinth/locale/django.pot b/plinth/locale/django.pot index 3d186b6f9..6823b2555 100644 --- a/plinth/locale/django.pot +++ b/plinth/locale/django.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -91,8 +91,8 @@ msgid "Apache HTTP Server" msgstr "" #: plinth/modules/apache/__init__.py:44 -#: plinth/modules/monkeysphere/templates/monkeysphere.html:67 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:45 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:49 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:46 msgid "Web Server" msgstr "" @@ -148,11 +148,11 @@ msgid "Repository" msgstr "" #: plinth/modules/backups/forms.py:52 -#: plinth/modules/backups/templates/backups_delete.html:18 +#: plinth/modules/backups/templates/backups_delete.html:17 #: plinth/modules/ikiwiki/forms.py:15 -#: plinth/modules/networks/templates/connection_show.html:63 -#: plinth/modules/samba/templates/samba.html:77 -#: plinth/modules/sharing/templates/sharing.html:37 +#: plinth/modules/networks/templates/connection_show.html:58 +#: plinth/modules/samba/templates/samba.html:66 +#: plinth/modules/sharing/templates/sharing.html:33 msgid "Name" msgstr "" @@ -316,40 +316,40 @@ msgstr "" msgid "{box_name} storage" msgstr "" -#: plinth/modules/backups/templates/backups.html:30 +#: plinth/modules/backups/templates/backups.html:17 #: plinth/modules/backups/views.py:61 msgid "Create a new backup" msgstr "" -#: plinth/modules/backups/templates/backups.html:34 +#: plinth/modules/backups/templates/backups.html:21 msgid "Create Backup" msgstr "" -#: plinth/modules/backups/templates/backups.html:37 +#: plinth/modules/backups/templates/backups.html:24 msgid "Upload and restore a backup archive" msgstr "" -#: plinth/modules/backups/templates/backups.html:41 +#: plinth/modules/backups/templates/backups.html:28 msgid "Upload and Restore" msgstr "" -#: plinth/modules/backups/templates/backups.html:44 +#: plinth/modules/backups/templates/backups.html:31 msgid "Add a backup location" msgstr "" -#: plinth/modules/backups/templates/backups.html:48 +#: plinth/modules/backups/templates/backups.html:35 msgid "Add Backup Location" msgstr "" -#: plinth/modules/backups/templates/backups.html:51 +#: plinth/modules/backups/templates/backups.html:38 msgid "Add a remote backup location" msgstr "" -#: plinth/modules/backups/templates/backups.html:55 +#: plinth/modules/backups/templates/backups.html:42 msgid "Add Remote Backup Location" msgstr "" -#: plinth/modules/backups/templates/backups.html:58 +#: plinth/modules/backups/templates/backups.html:46 msgid "Existing Backups" msgstr "" @@ -374,11 +374,11 @@ msgstr "" msgid "Delete this archive permanently?" msgstr "" -#: plinth/modules/backups/templates/backups_delete.html:19 +#: plinth/modules/backups/templates/backups_delete.html:18 msgid "Time" msgstr "" -#: plinth/modules/backups/templates/backups_delete.html:36 +#: plinth/modules/backups/templates/backups_delete.html:34 #, python-format msgid "Delete Archive %(name)s" msgstr "" @@ -720,13 +720,13 @@ msgid "List" msgstr "" #: plinth/modules/bepasty/views.py:53 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:91 -#: plinth/modules/networks/templates/connection_show.html:48 -#: plinth/modules/samba/templates/samba.html:163 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:86 +#: plinth/modules/networks/templates/connection_show.html:43 +#: plinth/modules/samba/templates/samba.html:154 #: plinth/modules/wireguard/templates/wireguard_delete_client.html:24 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:33 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:73 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:74 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:77 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:78 msgid "Delete" msgstr "" @@ -801,35 +801,35 @@ msgstr "" msgid "Serving Domains" msgstr "" -#: plinth/modules/bind/templates/bind.html:16 +#: plinth/modules/bind/templates/bind.html:17 #: plinth/modules/ikiwiki/forms.py:12 -#: plinth/modules/names/templates/names.html:14 -#: plinth/modules/networks/templates/connection_show.html:83 -#: plinth/modules/samba/templates/samba.html:76 -#: plinth/modules/storage/templates/storage.html:28 +#: plinth/modules/names/templates/names.html:15 +#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/samba/templates/samba.html:65 +#: plinth/modules/storage/templates/storage.html:26 msgid "Type" msgstr "" -#: plinth/modules/bind/templates/bind.html:17 +#: plinth/modules/bind/templates/bind.html:18 msgid "Domain Names" msgstr "" -#: plinth/modules/bind/templates/bind.html:18 +#: plinth/modules/bind/templates/bind.html:19 msgid "Serving" msgstr "" -#: plinth/modules/bind/templates/bind.html:19 +#: plinth/modules/bind/templates/bind.html:20 msgid "IP addresses" msgstr "" -#: plinth/modules/bind/templates/bind.html:35 #: plinth/modules/bind/templates/bind.html:37 +#: plinth/modules/bind/templates/bind.html:39 msgid "Refresh IP address and domains" msgstr "" #: plinth/modules/bind/views.py:71 plinth/modules/coturn/views.py:39 #: plinth/modules/deluge/views.py:42 plinth/modules/dynamicdns/views.py:154 -#: plinth/modules/mumble/views.py:28 plinth/modules/pagekite/forms.py:90 +#: plinth/modules/mumble/views.py:28 plinth/modules/pagekite/forms.py:76 #: plinth/modules/quassel/views.py:29 plinth/modules/shadowsocks/views.py:59 #: plinth/modules/transmission/views.py:47 msgid "Configuration updated" @@ -897,29 +897,29 @@ msgstr "" msgid "Delete %(name)s" msgstr "" -#: plinth/modules/calibre/templates/calibre.html:23 +#: plinth/modules/calibre/templates/calibre.html:11 msgid "Manage Libraries" msgstr "" -#: plinth/modules/calibre/templates/calibre.html:27 -#: plinth/modules/calibre/templates/calibre.html:29 +#: plinth/modules/calibre/templates/calibre.html:15 +#: plinth/modules/calibre/templates/calibre.html:17 msgid "Create Library" msgstr "" -#: plinth/modules/calibre/templates/calibre.html:36 +#: plinth/modules/calibre/templates/calibre.html:24 msgid "No libraries available." msgstr "" -#: plinth/modules/calibre/templates/calibre.html:43 -#, python-format -msgid "Delete library %(library)s" -msgstr "" - -#: plinth/modules/calibre/templates/calibre.html:49 +#: plinth/modules/calibre/templates/calibre.html:31 #, python-format msgid "Go to library %(library)s" msgstr "" +#: plinth/modules/calibre/templates/calibre.html:37 +#, python-format +msgid "Delete library %(library)s" +msgstr "" + #: plinth/modules/calibre/views.py:39 msgid "Library created." msgstr "" @@ -996,16 +996,17 @@ msgid "General Configuration" msgstr "" #: plinth/modules/config/__init__.py:59 plinth/modules/dynamicdns/views.py:29 -#: plinth/modules/names/templates/names.html:29 -#: plinth/modules/names/templates/names.html:43 +#: plinth/modules/names/templates/names.html:30 +#: plinth/modules/names/templates/names.html:44 #: plinth/modules/snapshot/views.py:37 #: plinth/modules/tahoe/templates/tahoe-pre-setup.html:24 +#: plinth/templates/index.html:46 msgid "Configure" msgstr "" #: plinth/modules/config/__init__.py:63 plinth/modules/config/forms.py:68 #: plinth/modules/dynamicdns/forms.py:97 -#: plinth/modules/names/templates/names.html:15 +#: plinth/modules/names/templates/names.html:16 msgid "Domain Name" msgstr "" @@ -1284,8 +1285,7 @@ msgid "Low Memory" msgstr "" #: plinth/modules/diagnostics/templates/diagnostics.html:17 -#: plinth/modules/diagnostics/templates/diagnostics_button.html:13 -#: plinth/modules/diagnostics/templates/diagnostics_button.html:16 +#: plinth/modules/diagnostics/templates/diagnostics_button.html:11 msgid "Run Diagnostics" msgstr "" @@ -1318,11 +1318,11 @@ msgstr "" msgid "This app does not support diagnostics" msgstr "" -#: plinth/modules/diagnostics/templates/diagnostics_results.html:10 +#: plinth/modules/diagnostics/templates/diagnostics_results.html:11 msgid "Test" msgstr "" -#: plinth/modules/diagnostics/templates/diagnostics_results.html:11 +#: plinth/modules/diagnostics/templates/diagnostics_results.html:12 msgid "Result" msgstr "" @@ -1369,6 +1369,13 @@ msgid "" "href=\"https://diaspora.%(domain_name)s\"> diaspora.%(domain_name)s " msgstr "" +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1591,16 +1598,16 @@ msgid "About" msgstr "" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 msgid "Status" msgstr "" @@ -1730,7 +1737,7 @@ msgstr "" msgid "Port {name} ({details}) unavailable for external networks" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -1739,57 +1746,53 @@ msgid "" "system with systemd 'systemctl start firewalld'." msgstr "" -#: plinth/modules/firewall/templates/firewall.html:28 -msgid "Show Ports" -msgstr "" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " "disabled in the firewall." msgstr "" -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -1827,7 +1830,7 @@ msgid "" "modify it if necessary." msgstr "" -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "" @@ -1920,31 +1923,31 @@ msgstr "" msgid "Git" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 msgid "Manage Repositories" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 msgid "Create repository" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 msgid "No repositories available." msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 #, python-format -msgid "Delete repository %(repo.name)s" +msgid "Go to repository %(repo.name)s" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 msgid "Cloning…" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 #, python-format -msgid "Go to repository %(repo.name)s" +msgid "Delete repository %(repo.name)s" msgstr "" #: plinth/modules/gitweb/templates/gitweb_delete.html:12 @@ -2004,6 +2007,25 @@ msgid "Contribute" msgstr "" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, python-format +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:23 +#, python-format +msgid "" +"There is a new %(box_name)s version available." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, python-format +msgid "%(box_name)s is up to date." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:35 #, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2015,7 +2037,7 @@ msgid "" "your data stays with you." msgstr "" -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2025,7 +2047,7 @@ msgid "" "returning the Internet to its intended peer-to-peer architecture." msgstr "" -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2033,34 +2055,15 @@ msgid "" "package." msgstr "" -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the %(box_name)s Wiki." msgstr "" -#: plinth/modules/help/templates/help_about.html:60 -msgid "Learn more »" -msgstr "" - -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, python-format -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "" - -#: plinth/modules/help/templates/help_about.html:69 -#, python-format -msgid "" -"There is a new %(box_name)s version available." -msgstr "" - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, python-format -msgid "%(box_name)s is up to date." +#: plinth/modules/help/templates/help_about.html:78 +msgid "Learn more" msgstr "" #: plinth/modules/help/templates/help_base.html:21 @@ -2126,7 +2129,7 @@ msgid "Thank you!" msgstr "" #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 msgid "Help" msgstr "" @@ -2162,7 +2165,7 @@ msgid "" "channel using the IRC web interface." msgstr "" -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 msgid "Download as PDF" msgstr "" @@ -2340,16 +2343,16 @@ msgstr "" msgid "No wikis or blogs available." msgstr "" -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2440,8 +2443,8 @@ msgstr "" msgid "Chat Client" msgstr "" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "" @@ -2471,63 +2474,63 @@ msgstr "" msgid "Certificates" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 msgid "Domain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 msgid "Actions" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, python-format msgid "Valid, expires on %(expiry_date)s" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 msgid "Revoked" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, python-format msgid "Expired on %(expiry_date)s" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 msgid "Invalid test certificate" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 msgid "No certificate" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, python-format msgid "" "No domains have been configured. Configure " @@ -2604,12 +2607,6 @@ msgstr "" msgid "Element" msgstr "" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -2694,51 +2691,51 @@ msgstr "" msgid "Wiki" msgstr "" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 msgid "Administrator Password" msgstr "" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." msgstr "" -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 msgid "Server URL" msgstr "" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." msgstr "" -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 msgid "Enable public registrations" msgstr "" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." msgstr "" -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 msgid "Enable private mode" msgstr "" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 msgid "" "If enabled, access will be restricted. Only people who have accounts can " "read/write to the wiki. Public registrations will also be disabled." msgstr "" -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 msgid "Default Skin" msgstr "" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -2826,13 +2823,13 @@ msgstr "" msgid "When disabled, players cannot die or receive damage of any kind." msgstr "" -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "" @@ -2980,109 +2977,108 @@ msgstr "" msgid "Monkeysphere" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 msgid "Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 msgid "OpenPGP Fingerprint" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 msgid "Secure Shell" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 msgid "Other" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 msgid "-" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 msgid "Add Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 msgid "SSH Key Type" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 msgid "SSH Key Size" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 msgid "SSH Fingerprint" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 msgid "Available Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 msgid "Added Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 msgid "Download the key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 msgid "Send the key back to the keyservers" msgstr "" @@ -3170,7 +3166,7 @@ msgstr "" msgid "All web apps" msgstr "" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 msgid "Services" msgstr "" @@ -3257,8 +3253,8 @@ msgid "" msgstr "" #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "" @@ -3334,7 +3330,7 @@ msgid "-- select --" msgstr "" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 msgid "SSID" msgstr "" @@ -3343,7 +3339,7 @@ msgid "The visible name of the network." msgstr "" #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "" @@ -3372,7 +3368,7 @@ msgid "B/G (2.4 GHz)" msgstr "" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 msgid "Channel" msgstr "" @@ -3520,179 +3516,179 @@ msgid "" "to be reminded later. Some of the other configuration steps may fail.

" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 msgid "MAC address" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 msgid "Interface" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 msgid "please check cable" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 msgid "" "This interface should be connected to a local network/machine. If you " "connect this interface to a public network, services meant to be available " "only internally will become available externally. This is a security risk." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 msgid "" "This interface should receive your Internet connection. If you connect it to " "a local network/machine, many services meant to available only internally " "will not be available." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -3713,40 +3709,40 @@ msgstr "" msgid "Delete connection %(name)s permanently?" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 msgid "Spacing" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "" @@ -3772,19 +3768,19 @@ msgstr "" msgid "Add Connection" msgstr "" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "" @@ -3810,8 +3806,8 @@ msgstr "" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "" @@ -3895,7 +3891,7 @@ msgid "" "are no other devices on the network." msgstr "" -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -4335,93 +4331,93 @@ msgstr "" msgid "PageKite Domain" msgstr "" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 msgid "Server domain" msgstr "" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " "pagekite.net server." msgstr "" -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." msgstr "" -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 msgid "Deleted custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 msgid "This service is already available as a standard service." msgstr "" -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 msgid "Added custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 msgid "Custom Services" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 msgid "Add Custom Service" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "" @@ -4501,12 +4497,13 @@ msgid "" "finished before shutting down or restarting." msgstr "" -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +msgid "Restart" msgstr "" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" +msgid "Shut Down" msgstr "" #: plinth/modules/power/templates/power_restart.html:17 @@ -4792,21 +4789,21 @@ msgstr "" msgid "Dolphin" msgstr "" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 msgid "Shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 msgid "" "Note: Only specially created directories will be shared on selected disks, " "not the whole disk." msgstr "" -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 msgid "VFAT partitions are not supported" msgstr "" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the users module page." msgstr "" -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 msgid "Users who can currently access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 msgid "" "Users needing to re-enter their password on the password change page to " "access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 msgid "Unavailable Shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." msgstr "" -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 msgid "Share name" msgstr "" -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 msgid "Action" msgstr "" @@ -4946,25 +4943,25 @@ msgid "" "services." msgstr "" -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 msgid "Show security report" msgstr "" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "" -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5008,39 +5005,39 @@ msgid "" "running." msgstr "" -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 msgid "App Name" msgstr "" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 msgid "Current Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 msgid "Past Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 msgid "Sandboxed" msgstr "" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 msgid "Sandbox Coverage" msgstr "" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 msgid "N/A" msgstr "" -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 msgid "Yes" msgstr "" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 msgid "No" msgstr "" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 msgid "Not running" msgstr "" @@ -5181,28 +5178,28 @@ msgstr "" msgid "Shares should be either public or shared with at least one group" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 msgid "Add share" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "" -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 msgid "Shared Over" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 msgid "With Groups" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "" @@ -5326,41 +5323,41 @@ msgstr "" msgid "Delete the following snapshots permanently?" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 msgid "Delete Snapshots" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 msgid "Create Snapshot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 msgid "will be used at next boot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "" @@ -5383,7 +5380,7 @@ msgid "" "the newly created snapshot." msgstr "" -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "" @@ -5471,11 +5468,11 @@ msgid "" "client matches one of these fingerprints." msgstr "" -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 msgid "Fingerprint" msgstr "" @@ -5648,27 +5645,27 @@ msgstr "" msgid "Other directory (specify below)" msgstr "" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 msgid "The following storage devices are in use:" msgstr "" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 msgid "Used" msgstr "" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -5676,13 +5673,13 @@ msgid "" "will provide you additional free space to store your files." msgstr "" -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -5789,25 +5786,25 @@ msgstr "" msgid "Local introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 msgid "Pet Name" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 msgid "Add" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "" @@ -5951,19 +5948,19 @@ msgstr "" msgid "Tor configuration is being updated" msgstr "" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 msgid "Onion Service" msgstr "" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 msgid "Ports" msgstr "" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 msgid "Relay" msgstr "" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, python-format msgid "" "If your %(box_name)s is behind a router or firewall, you should make sure " @@ -6044,7 +6041,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 msgid "Update" @@ -6077,7 +6074,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "" @@ -6097,11 +6094,11 @@ msgid "" "cannot be deactivated." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 msgid "Updating, please wait..." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 msgid "" "This may take a long time to complete. During an update, " @@ -6109,7 +6106,7 @@ msgid "" "case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, python-format msgid "" "\n" @@ -6134,32 +6131,32 @@ msgstr "" msgid "Dismiss" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, python-format msgid "There is a new %(box_name)s version available." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 msgid "Your Freedombox needs an update!" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -6167,22 +6164,22 @@ msgid "" "\"%(snapshot_url)s\">Storage Snapshots before continuing." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 msgid "Manual Update" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 msgid "Update now" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 msgid "" "This may take a long time to complete. During an update, " "you cannot install apps. Also, this web interface may be temporarily " "unavailable and show an error. In that case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 msgid "Show recent update logs" msgstr "" @@ -6355,8 +6352,8 @@ msgstr "" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "" @@ -6409,21 +6406,21 @@ msgid "" "step." msgstr "" -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "" + #: plinth/modules/users/templates/users_update.html:11 #, python-format msgid "Edit User %(username)s" @@ -6497,8 +6494,8 @@ msgstr "" #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 msgid "Public Key" msgstr "" @@ -6583,7 +6580,7 @@ msgid "Allowed IPs" msgstr "" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 msgid "Last Connected Time" msgstr "" @@ -6592,47 +6589,47 @@ msgstr "" msgid "No peers configured to connect to this %(box_name)s yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, python-format msgid "Public key for this %(box_name)s:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 msgid "Not configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 msgid "Add a new peer" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 msgid "As a Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "" @@ -6664,40 +6661,40 @@ msgid "" "is configured with the following information." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 msgid "Server endpoints:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 msgid "Server public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "" @@ -6709,15 +6706,15 @@ msgid "" "public key and IP address." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 msgid "Server endpoint:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "" @@ -6853,49 +6850,53 @@ msgstr "" msgid "Service %(service_name)s is not running." msgstr "" -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, python-format msgid "Core functionality and web interface for %(box_name)s" msgstr "" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" +#: plinth/templates/base.html:107 +msgid " Home" msgstr "" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +msgid " Apps" +msgstr "" + +#: plinth/templates/base.html:119 msgid "Apps" msgstr "" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +msgid " System" +msgstr "" + +#: plinth/templates/base.html:128 msgid "System" msgstr "" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -msgid "Restart" -msgstr "" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 msgid "Shut down" msgstr "" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 msgid "Select language" msgstr "" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "" @@ -6959,7 +6960,7 @@ msgstr "" msgid "RPM:" msgstr "" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -6973,10 +6974,6 @@ msgid "" "this page." msgstr "" -#: plinth/templates/index.html:46 -msgid "Configure »" -msgstr "" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -7001,7 +6998,7 @@ msgstr "" msgid "Source Code" msgstr "" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "" @@ -7035,6 +7032,10 @@ msgid "" "%(interface_list)s" msgstr "" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 msgid "Notifications" msgstr "" @@ -7066,15 +7067,15 @@ msgid "" "your router. You should forward the following ports for %(service_name)s:" msgstr "" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 msgid "Protocol" msgstr "" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, python-format msgid "To %(box_name)s Ports" msgstr "" diff --git a/plinth/locale/el/LC_MESSAGES/django.po b/plinth/locale/el/LC_MESSAGES/django.po index 56bb109d7..29054f2f0 100644 --- a/plinth/locale/el/LC_MESSAGES/django.po +++ b/plinth/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: 2020-10-08 23:26+0000\n" "Last-Translator: Allan Nordhøy \n" "Language-Team: Greek Mπορείτε να αποκτήσετε πρόσβαση στο diaspora* pod στο σύνδεσμο: " "diaspora.%(domain_name)s" +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "Ρύθμισης παραμέτρων" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1840,16 +1847,16 @@ msgid "About" msgstr "Σχετικά με" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 msgid "Status" msgstr "Κατάσταση" @@ -2007,7 +2014,7 @@ msgstr "Η θύρα {name} ({details}) είναι διαθέσιμη για εξ msgid "Port {name} ({details}) unavailable for external networks" msgstr "Η θύρα {name} ({details}) δεν είναι διαθέσιμη για εξωτερικά δίκτυα" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -2022,44 +2029,40 @@ msgstr "" "firewalld start ' ή σε περίπτωση ενός συστήματος με systemd ' systemctl " "start firewalld '." -#: plinth/modules/firewall/templates/firewall.html:28 -msgid "Show Ports" -msgstr "Εμφάνιση θυρών" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "Υπηρεσία/θύρα" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "Ενεργοποιήθηκε" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "Απενεργοποιήθηκε" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "Επιτρέπεται" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "Επιτρέπεται (μόνο εσωτερικά)" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "Επιτρέπεται (εξωτερικά μόνο)" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "Αποκλείστηκε" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " @@ -2069,13 +2072,13 @@ msgstr "" "υπηρεσία, επιτρέπεται επίσης στο τείχος προστασίας και όταν απενεργοποιείτε " "μια υπηρεσία είναι επίσης απενεργοποιημένη στο τείχος προστασίας." -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -2118,7 +2121,7 @@ msgstr "" "Ίσως θελήσετε να ελέγξετε την εγκατάσταση του " "δικτύου και να την τροποποιήσετε, εάν είναι απαραίτητο." -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "Έναρξη εγκατάστασης" @@ -2229,34 +2232,34 @@ msgstr "" msgid "Git" msgstr "Git" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 msgid "Manage Repositories" msgstr "Διαχείριση αποθετηρίων" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 msgid "Create repository" msgstr "Δημιουργία αποθετηρίου" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 msgid "No repositories available." msgstr "Δεν υπάρχουν διαθέσιμα αποθετήρια." -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 #, python-format -msgid "Delete repository %(repo.name)s" -msgstr "Διαγραφή του αποθετηρίου %(repo.name)s" +msgid "Go to repository %(repo.name)s" +msgstr "Μετάβαση στο αποθετήριο %(repo.name)s" -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 #, fuzzy #| msgid "Cloning..." msgid "Cloning…" msgstr "Αντιγραφή..." -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 #, python-format -msgid "Go to repository %(repo.name)s" -msgstr "Μετάβαση στο αποθετήριο %(repo.name)s" +msgid "Delete repository %(repo.name)s" +msgstr "Διαγραφή του αποθετηρίου %(repo.name)s" #: plinth/modules/gitweb/templates/gitweb_delete.html:12 #, python-format @@ -2317,6 +2320,28 @@ msgid "Contribute" msgstr "Συνεισφέρετε" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, python-format +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "" +"Τρέχετε λειτουργικό %(os_release)s και έκδοση %(version)s για το " +"%(box_name)s." + +#: plinth/modules/help/templates/help_about.html:23 +#, fuzzy, python-format +#| msgid "There is a new %(box_name)s version available." +msgid "" +"There is a new %(box_name)s version available." +msgstr "Υπάρχει μια νέα έκδοση %(box_name)s διαθέσιμη." + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, python-format +msgid "%(box_name)s is up to date." +msgstr "To %(box_name)s είναι ενημερωμένο." + +#: plinth/modules/help/templates/help_about.html:35 #, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2336,7 +2361,7 @@ msgstr "" "proxy και ένα Tor relay, σε μια συσκευή που μπορεί να αντικαταστήσει το Wi-" "Fi router, έτσι ώστε τα δεδομένα σας να μείνουν μαζί σας." -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2354,7 +2379,7 @@ msgstr "" "πραγματοποιήσουν, επιστρέφουμε το Internet στην αρχιτεκτονική του ομότιμου " "σχεδιασμού." -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2365,7 +2390,7 @@ msgstr "" "κατανεμημένες υπηρεσιες και όχι κεντρικές. Το %(box_name)s έχει ως στόχο να " "τα φέρει όλα μαζί σε ένα βολικό πακέτο." -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the %(box_name)s wiki ." -#: plinth/modules/help/templates/help_about.html:60 -msgid "Learn more »" -msgstr "Μάθετε περισσότερα »" - -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, python-format -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "" -"Τρέχετε λειτουργικό %(os_release)s και έκδοση %(version)s για το " -"%(box_name)s." - -#: plinth/modules/help/templates/help_about.html:69 -#, fuzzy, python-format -#| msgid "There is a new %(box_name)s version available." -msgid "" -"There is a new %(box_name)s version available." -msgstr "Υπάρχει μια νέα έκδοση %(box_name)s διαθέσιμη." - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, python-format -msgid "%(box_name)s is up to date." -msgstr "To %(box_name)s είναι ενημερωμένο." +#: plinth/modules/help/templates/help_about.html:78 +#, fuzzy +#| msgid "Learn more..." +msgid "Learn more" +msgstr "Μάθε περισσότερα..." #: plinth/modules/help/templates/help_base.html:21 #: plinth/modules/help/templates/help_index.html:61 @@ -2491,7 +2496,7 @@ msgid "Thank you!" msgstr "Ευχαριστούμε!" #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 msgid "Help" msgstr "Βοήθεια" @@ -2541,7 +2546,7 @@ msgstr "" "randomnick=1&channels=freedombox&prompt=1\"> #freedombox κανάλι " "χρησιμοποιώντας το IRC πελάτη ιστού." -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 msgid "Download as PDF" msgstr "Λήψη ως PDF" @@ -2767,16 +2772,16 @@ msgstr "Δημιουργία Wiki ή Blog" msgid "No wikis or blogs available." msgstr "Δεν υπάρχουν διαθέσιμα wikis ή blogs." -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "Διαγραφή ιστότοπου %(site)s" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "Μεταβείτε στην τοποθεσία %(site)s" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "Διαγραφή ιστότοπου %(site)s" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2880,8 +2885,8 @@ msgstr "JSXC" msgid "Chat Client" msgstr "Πρόγραμμα-πελάτης συνομιλίας" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "Πληροφορίες άδειας χρήσης JavaScript" @@ -2923,63 +2928,63 @@ msgstr "Let's Encrypt" msgid "Certificates" msgstr "Πιστοποιητικά" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 msgid "Domain" msgstr "Όνομα διαδικτύου" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "Κατάσταση πιστοποιητικού" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "Ασφάλεια ιστότοπου" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 msgid "Actions" msgstr "Ενέργειες" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, python-format msgid "Valid, expires on %(expiry_date)s" msgstr "Ισχύει, λήγει στις %(expiry_date)s" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 msgid "Revoked" msgstr "Ανακλήθηκε" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, python-format msgid "Expired on %(expiry_date)s" msgstr "Έληξε στις %(expiry_date)s" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 msgid "Invalid test certificate" msgstr "Μη έγκυρο δοκιμαστικό πιστοποιητικό" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "Μη έγκυρο (%(reason)s)" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 msgid "No certificate" msgstr "Δεν υπάρχει πιστοποιητικό" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "Ανάκτηση" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "Aνάκληση" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "Αποκτήσετε" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, python-format msgid "" "No domains have been configured. Configure " @@ -3081,12 +3086,6 @@ msgstr "" msgid "Element" msgstr "" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "Ρύθμισης παραμέτρων" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -3207,11 +3206,11 @@ msgstr "Mediawiki" msgid "Wiki" msgstr "Wiki" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 msgid "Administrator Password" msgstr "Κωδικός Πρόσβασης Διαχειριστή" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." @@ -3220,23 +3219,23 @@ msgstr "" "wiki. Αφήστε αυτό το πεδίο κενό για να διατηρήσετε τον τρέχοντα κωδικό " "πρόσβασης." -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 #, fuzzy #| msgid "Server" msgid "Server URL" msgstr "Διακομιστής" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." msgstr "" -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 msgid "Enable public registrations" msgstr "Ενεργοποίηση εγγραφών νέων χρηστών" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." @@ -3244,11 +3243,11 @@ msgstr "" "Εάν ενεργοποιηθεί, οποιοσδήποτε στο Internet θα μπορεί να δημιουργήσει ένα " "λογαριασμό στον διακομιστή σας wiki." -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 msgid "Enable private mode" msgstr "Ενεργοποίηση ιδιωτικής λειτουργίας" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 msgid "" "If enabled, access will be restricted. Only people who have accounts can " "read/write to the wiki. Public registrations will also be disabled." @@ -3257,11 +3256,11 @@ msgstr "" "που έχουν λογαριασμούς μπορεί να διαβάσουν/γράψουν στο wiki. Δημόσιες " "εγγραφές θα είναι επίσης απενεργοποιημένες." -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 msgid "Default Skin" msgstr "Προεπιλεγμένη εμφάνιση" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -3367,13 +3366,13 @@ msgstr "" "Όταν είναι απενεργοποιημένη, οι παίκτες δεν μπορούν να πεθάνουν ή να λάβουν " "ζημιές οποιουδήποτε είδους." -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "Διεύθυνση" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "Θύρα" @@ -3563,95 +3562,94 @@ msgstr "" msgid "Monkeysphere" msgstr "Monkeysphere" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "Δημοσίευση κλειδιού στο διακομιστή κλειδιών..." -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "Ακύρωση" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "Υπηρεσία" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 msgid "Domains" msgstr "Ονόματα διαδικτύου" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 msgid "OpenPGP Fingerprint" msgstr "Αποτύπωμα OpenPGP" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 msgid "Secure Shell" msgstr "Secure Shell" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 msgid "Other" msgstr "Άλλα" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "Εμφάνιση λεπτομερειών για το κλειδί %(fingerprint)s" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 msgid "-" msgstr "-" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "Εισαγωγή κλειδιού" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "Δημοσίευση κλειδιού" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 msgid "Add Domains" msgstr "Προσθήκη ονόματος διαδικτύου" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "Αναγνωριστικά χρήστη OpenPGP" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "Ημερομηνία εισαγωγής κλειδιού" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 msgid "SSH Key Type" msgstr "Τύπος κλειδιού SSH" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 msgid "SSH Key Size" msgstr "Μέγεθος κλειδιού SSH" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 msgid "SSH Fingerprint" msgstr "Αποτύπωμα SSH" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "Αρχείο κλειδιού" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 msgid "Available Domains" msgstr "Διαθέσιμα ονόματα" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 msgid "Added Domains" msgstr "Ονόματα που έχουν προστεθεί" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" @@ -3660,15 +3658,15 @@ msgstr "" "υπογραφεί με τη χρήση του GnuPG με " "τις ακόλουθες εντολές:" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 msgid "Download the key" msgstr "Κατεβάστε το κλειδί" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "Υπογράψτε το κλειδί" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 msgid "Send the key back to the keyservers" msgstr "Αποστολή του κλειδιού πίσω στους διακομιστές κλειδιών" @@ -3769,7 +3767,7 @@ msgstr "Όλα" msgid "All web apps" msgstr "Όλες οι εφαρμογές ιστού" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 #, fuzzy #| msgid "Service" msgid "Services" @@ -3876,8 +3874,8 @@ msgstr "" "δικτύου με βάση τη διεύθυνση." #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "Πύλη" @@ -3967,7 +3965,7 @@ msgid "-- select --" msgstr "--Επιλέξτε--" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 msgid "SSID" msgstr "Ssid" @@ -3976,7 +3974,7 @@ msgid "The visible name of the network." msgstr "Το ορατό όνομα του δικτύου." #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "Λειτουργία" @@ -4005,7 +4003,7 @@ msgid "B/G (2.4 GHz)" msgstr "B/G (2,4 GHz)" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 msgid "Channel" msgstr "Κανάλι" @@ -4163,158 +4161,158 @@ msgid "" "to be reminded later. Some of the other configuration steps may fail.

" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "Επεξεργασία σύνδεσης" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "Επεξεργασία" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "Απενεργοποίηση" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "Ενεργοποίηση" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "Διαγραφή σύνδεσης" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "Σύνδεση" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "Κύρια σύνδεση" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "Ναι" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "Συσκευή" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "κατάσταση" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "Kατάσταση" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 msgid "MAC address" msgstr "Διεύθυνση MAC" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 msgid "Interface" msgstr "Ιnterface" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "Περιγραφή" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "Φυσική σύνδεση" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "Κατάσταση σύνδεσης" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "το καλώδιο είναι συνδεδεμένο" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 msgid "please check cable" msgstr "Παρακαλούμε ελέγξτε το καλώδιο" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "Ταχύτητα" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "%(ethernet_speed)s Mbit/s" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "%(wireless_bitrate)s Mbit/s" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "Ισχύς σήματος" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "IPv4" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "Μέθοδος" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "Διεύθυνση IP" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "Διακομιστής DNS" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "Προεπιλεγμένο" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "IPv6" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "Αυτή η σύνδεση δεν είναι ενεργή." -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "Ασφάλεια" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "Ζώνη τείχους προστασίας" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 msgid "" "This interface should be connected to a local network/machine. If you " "connect this interface to a public network, services meant to be available " @@ -4325,8 +4323,8 @@ msgstr "" "προορίζονται να είναι διαθέσιμες μόνο εσωτερικά θα καταστούν διαθέσιμες " "εξωτερικά. Αυτό είναι κίνδυνος για την ασφάλεια." -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 msgid "" "This interface should receive your Internet connection. If you connect it to " "a local network/machine, many services meant to available only internally " @@ -4336,13 +4334,13 @@ msgstr "" "το συνδέσετε σε ένα τοπικό δίκτυο/μηχάνημα, πολλές υπηρεσίες που " "προορίζονται να είναι διαθέσιμες μόνο εσωτερικά δεν θα είναι διαθέσιμες." -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "Εξωτερική" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -4363,40 +4361,40 @@ msgstr "Διαγραφή σύνδεσης" msgid "Delete connection %(name)s permanently?" msgstr "Διαγραφή της σύνδεσης %(name)s μόνιμα;" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "Διαδίκτυο" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 msgid "Spacing" msgstr "Διαχωρισμός" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "Ethernet" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "Wi-Fi" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "Εμφάνιση σύνδεσης %(name)s" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "Εσωτερική" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "Υπολογιστής" @@ -4422,19 +4420,19 @@ msgstr "Κοντινά δίκτυα Wi-Fi" msgid "Add Connection" msgstr "Προσθήκη σύνδεσης" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "Διαγραφή της σύνδεσης %(name)s" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "Ενεργό" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "Ανενεργό" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "Διαγραφή της σύνδεσης %(name)s" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "Δημιουργήστε..." @@ -4460,8 +4458,8 @@ msgstr "" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "" @@ -4550,7 +4548,7 @@ msgid "" "are no other devices on the network." msgstr "" -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -5083,11 +5081,11 @@ msgstr "Δημόσια ορατότητα" msgid "PageKite Domain" msgstr "Όνομα διαδικτύου Pagekite" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 msgid "Server domain" msgstr "Όνομα διαδικτύου διακομιστή" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " "pagekite.net server." @@ -5095,31 +5093,31 @@ msgstr "" "Επιλέξτε το διακομιστή pagekite. Ορίστε το \"pagekite.net\" για να " "χρησιμοποιήσετε τον προεπιλεγμένο διακομιστή pagekite.net." -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "Θύρα διακομιστή" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "Θύρα του διακομιστή σελιδοποίησης (προεπιλογή: 80)" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "Kite όνομα" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "Παράδειγμα: mybox.pagekite.me" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "Μη έγκυρο όνομα kite" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "Kite μυστικό" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." @@ -5127,27 +5125,27 @@ msgstr "" "Ένα μυστικό που σχετίζεται με το kite ή το προεπιλεγμένο μυστικό για το " "λογαριασμό σας, εάν δεν αναθέσετε καινούριο." -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "Πρωτόκολλο" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "εξωτερική (frontend) θύρα" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "εσωτερική (freedombox) θύρα" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "Ενεργοποίηση δευτερευόντων ονομάτων διαδικτύου" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 msgid "Deleted custom service" msgstr "Διαγράφηκε η διαμορφωμένη υπηρεσία" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 #, fuzzy #| msgid "" #| "This service is available as a standard service. Please use the " @@ -5157,29 +5155,29 @@ msgstr "" "Αυτή η υπηρεσία είναι διαθέσιμη ως πρότυπη υπηρεσία. Παρακαλούμε να " "χρησιμοποιήσετε την σελίδα \"Πρότυπες Υπηρεσίες\" για να το ενεργοποιήσετε." -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 msgid "Added custom service" msgstr "Προστέθηκε τροποποιημένη υπηρεσία" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "Αυτή η υπηρεσία υπάρχει ήδη" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 msgid "Custom Services" msgstr "Τροποποιημένες υπηρεσίες" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 msgid "Add Custom Service" msgstr "Προσθέστε τροποποιημένη υπηρεσία" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "συνδεδεμένο στο %(backend_host)s:%(backend_port)s" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "Διαγραφή αυτής της υπηρεσίας" @@ -5269,13 +5267,16 @@ msgstr "" "ενδεχόμενο να περιμένετε μέχρι να ολοκληρωθεί πριν από τον τερματισμό ή την " "επανεκκίνηση." -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" -msgstr "Επανεκκίνηση »" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +msgid "Restart" +msgstr "Κάνετε επανεκκίνηση" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" -msgstr "Τερματισμός »" +#, fuzzy +#| msgid "Shut down" +msgid "Shut Down" +msgstr "ΤΕΡΜΑΤΙΣΜΟΣ ΛΕΙΤΟΥΡΓΙΑΣ" #: plinth/modules/power/templates/power_restart.html:17 msgid "" @@ -5674,11 +5675,11 @@ msgstr "GNOME Calendar" msgid "Dolphin" msgstr "" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 msgid "Shares" msgstr "Μερίσματα" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 #, fuzzy #| msgid "" #| "Note: only specially created directories will be shared on selected " @@ -5690,13 +5691,13 @@ msgstr "" "Σημείωση: μόνο οι ειδικά δημιουργημένοι κατάλογοι θα κοινοποιηθούν σε " "επιλεγμένους δίσκους και όχι σε ολόκληρο το δίσκο." -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 #, fuzzy #| msgid "vfat partitions are not supported" msgid "VFAT partitions are not supported" msgstr "τα διαμερίσματα VFAT δεν υποστηρίζονται" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the χρηστών ." -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 msgid "Users who can currently access group and home shares" msgstr "" "Χρήστες που έχουν αυτήν τη στιγμή πρόσβαση σε ομαδικά και οικιακά μερίσματα" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 #, fuzzy #| msgid "" #| "Users who need to re-enter their password on the password change page to " @@ -5725,11 +5726,11 @@ msgstr "" "Χρήστες που χρειάζεται να ξανα-εισάγουν τον κωδικό τους στη σελίδα αλλαγής " "κωδικού για να αποκτήσουν πρόσβαση σε ομαδικά και οικιακά μερίσματα" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 msgid "Unavailable Shares" msgstr "Με διαθέσιμα μερίσματα" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." @@ -5737,11 +5738,11 @@ msgstr "" "Μερίσματα που έχουν ρυθμιστεί αλλά o δίσκος δεν είναι διαθέσιμος. Εάν ο " "δίσκος συνδεθεί ξανά, η κοινή χρήση θα ενεργοποιηθεί αυτόματα." -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 msgid "Share name" msgstr "Όνομα μερίσματος" -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 msgid "Action" msgstr "Ενέργεια" @@ -5868,25 +5869,25 @@ msgstr "" "αποτυχημένες απόπειρες εισαγωγής κωδικού στο διακομιστή SSH και σε άλλες " "ενεργοποιημένες υπηρεσίες διαδικτύου που χρησιμοποιούν κωδικό πρόσβασης." -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 msgid "Show security report" msgstr "Εμφάνιση αναφοράς ασφαλείας" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "" -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5938,41 +5939,41 @@ msgid "" "running." msgstr "" -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 msgid "App Name" msgstr "Όνομα εφαρμογής" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 msgid "Current Vulnerabilities" msgstr "Τρέχοντα θέματα ασφαλείας" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 msgid "Past Vulnerabilities" msgstr "Προηγούμενα θέματα ασφαλείας" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 msgid "Sandboxed" msgstr "Φιλτραρισμένα" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 #, fuzzy #| msgid "Sandboxed" msgid "Sandbox Coverage" msgstr "Φιλτραρισμένα" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 msgid "N/A" msgstr "Μη εφαρμόσιμα" -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 msgid "Yes" msgstr "Ναι" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 msgid "No" msgstr "Όχι" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 msgid "Not running" msgstr "" @@ -6149,28 +6150,28 @@ msgstr "" "Τα μερίσματα θα πρέπει να είναι είτε δημόσια είτε να μοιράζονται με " "τουλάχιστον μία ομάδα" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 msgid "Add share" msgstr "Προσθήκη μερίσματος" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "Δεν έχουν ρυθμιστεί μερίσματα." -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "Moνοπάτι Δίσκου" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 msgid "Shared Over" msgstr "Μοιράζεται με" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 msgid "With Groups" msgstr "Με ομάδες" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "δημόσια πρόσβαση" @@ -6318,41 +6319,41 @@ msgstr "" msgid "Delete the following snapshots permanently?" msgstr "Να διαγραφούν οριστικά τα παρακάτω στιγμιότυπα;" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "Αριθμός" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "Ημερομηνία" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 msgid "Delete Snapshots" msgstr "Διαγραφή στιγμιότυπων" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 msgid "Create Snapshot" msgstr "Δημιουργία στιγμιότυπου" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "Επαναφορά" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 msgid "will be used at next boot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "Επαναφορά στο στιγμιότυπο #%(number)s" @@ -6385,7 +6386,7 @@ msgstr "" "συστήματος αρχείων. Θα μπορείτε να αναιρέσετε μια επαναφορά, επιστρέφοντας " "στο πρόσφατα δημιουργημένο στιγμιότυπο." -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "Επαναφορά στο στιγμιότυπο #%(number)s" @@ -6489,11 +6490,11 @@ msgstr "" "εμφανίζεται από το πρόγραμμα-πελάτη SSH ταιριάζει με ένα από αυτά τα " "δακτυλικά αποτυπώματα." -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "Αλγόριθμος" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 msgid "Fingerprint" msgstr "Αποτύπωμα" @@ -6677,27 +6678,27 @@ msgstr "Μέρισμα" msgid "Other directory (specify below)" msgstr "Άλλος κατάλογος (Καθορίστε παρακάτω)" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 msgid "The following storage devices are in use:" msgstr "Χρησιμοποιούνται ι ακόλουθες συσκευές αποθήκευσης χρησιμοποιούνται:" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "Ετικέτα" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "Σημείο Προσάρτησης" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 msgid "Used" msgstr "Χρησιμοποιείται" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "Επέκταση διαμερίσματος" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -6708,13 +6709,13 @@ msgstr "" "Το Root διαμέρισμα πρέπει να επεκταθεί για να χρησιμοποιήσετε αυτό το χώρο. " "Αυτό θα σας δώσει επιπλέον ελεύθερο χώρο για να αποθηκεύσετε τα αρχεία σας." -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "Επεκτείνετε το διαμέρισμα root" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -6856,25 +6857,25 @@ msgstr "" msgid "Local introducer" msgstr "Τοπικός εισαγωγέας" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 msgid "Pet Name" msgstr "Όνομα \"κατοικίδιου\"" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "Προσθέστε νέο εισαγωγέα" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 msgid "Add" msgstr "Προσθήκη" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "Συνδεδεμένοι εισαγωγείς" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "Καταργήστε" @@ -7048,19 +7049,19 @@ msgstr "Orbot: διακομιστής μεσολάβησης με Tor" msgid "Tor configuration is being updated" msgstr "Οι ρυθμίσεις Tor ενημερώνονται" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 msgid "Onion Service" msgstr "Υπηρεσία κρεμμυδιού" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 msgid "Ports" msgstr "Θύρες" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 msgid "Relay" msgstr "Μεσολαβητής" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, python-format msgid "" "If your %(box_name)s is behind a router or firewall, you should make sure " @@ -7161,7 +7162,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 msgid "Update" @@ -7202,7 +7203,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "" @@ -7224,13 +7225,13 @@ msgid "" "cannot be deactivated." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 #, fuzzy #| msgid "Updating..." msgid "Updating, please wait..." msgstr "Eνημερώνεται..." -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 #, fuzzy #| msgid "" @@ -7248,7 +7249,7 @@ msgstr "" "εμφανίσει σφάλμα. Σε αυτήν την περίπτωση, ανανεώστε τη σελίδα για να " "συνεχίσετε." -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, fuzzy, python-format #| msgid "%(box_name)s is up to date." msgid "" @@ -7275,34 +7276,34 @@ msgstr "" msgid "Dismiss" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "Eνημερώνεται..." -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, python-format msgid "There is a new %(box_name)s version available." msgstr "Υπάρχει μια νέα έκδοση %(box_name)s διαθέσιμη." -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 #, fuzzy #| msgid "FreedomBox Foundation" msgid "Your Freedombox needs an update!" msgstr "Ίδρυμα FreedomBox" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -7310,17 +7311,17 @@ msgid "" "\"%(snapshot_url)s\">Storage Snapshots before continuing." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 #, fuzzy #| msgid "Manual update" msgid "Manual Update" msgstr "Μη αυτόματη ενημέρωση" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 msgid "Update now" msgstr "Ενημέρωση τώρα" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 #, fuzzy #| msgid "" #| "This may take a long time to complete. During an update, " @@ -7337,7 +7338,7 @@ msgstr "" "εμφανίσει σφάλμα. Σε αυτήν την περίπτωση, ανανεώστε τη σελίδα για να " "συνεχίσετε." -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 #, fuzzy #| msgid "Toggle recent update logs" msgid "Show recent update logs" @@ -7552,8 +7553,8 @@ msgstr "Αποθήκευση κωδικού πρόσβασης" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "Δημιουργία χρήστη" @@ -7614,21 +7615,21 @@ msgid "" "step." msgstr "" -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "Χρήστες" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "Διαγραφή χρήστη %(username)s" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "Επεξεργασία χρήστη %(username)s" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "Διαγραφή χρήστη %(username)s" + #: plinth/modules/users/templates/users_update.html:11 #, fuzzy, python-format #| msgid "Edit user %(username)s" @@ -7707,8 +7708,8 @@ msgstr "Μη έγκυρο όνομα kite" #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 #, fuzzy #| msgid "Publish Key" msgid "Public Key" @@ -7799,7 +7800,7 @@ msgid "Allowed IPs" msgstr "" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 #, fuzzy #| msgid "Create Connection" msgid "Last Connected Time" @@ -7810,57 +7811,57 @@ msgstr "Δημιουργία σύνδεσης" msgid "No peers configured to connect to this %(box_name)s yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, python-format msgid "Public key for this %(box_name)s:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 #, fuzzy #| msgid "No shares currently configured." msgid "Not configured yet." msgstr "Δεν έχουν ρυθμιστεί μερίσματα." -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 #, fuzzy #| msgid "Add new introducer" msgid "Add a new peer" msgstr "Προσθέστε νέο εισαγωγέα" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 #, fuzzy #| msgid "Chat Client" msgid "As a Client" msgstr "Πρόγραμμα-πελάτης συνομιλίας" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 #, fuzzy #| msgid "Authentication to remote server failed." msgid "No connections to remote servers are configured yet." msgstr "Ο έλεγχος ταυτότητας στον απομακρυσμένο διακομιστή απέτυχε." -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 #, fuzzy #| msgid "Add new introducer" msgid "Add a new server" msgstr "Προσθέστε νέο εισαγωγέα" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 #, fuzzy #| msgid "Add Connection" @@ -7904,44 +7905,44 @@ msgid "" "is configured with the following information." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 #, fuzzy #| msgid "Server domain" msgid "Server endpoints:" msgstr "Όνομα διαδικτύου διακομιστή" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 #, fuzzy #| msgid "Select verified SSH public key" msgid "Server public key:" msgstr "Επιλογή εξακριβωμένου δημόσιου κλειδιού SSH" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "" @@ -7953,17 +7954,17 @@ msgid "" "public key and IP address." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 #, fuzzy #| msgid "Server domain" msgid "Server endpoint:" msgstr "Όνομα διαδικτύου διακομιστή" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "" @@ -8147,49 +8148,59 @@ msgstr "Εγκατάσταση" msgid "Service %(service_name)s is not running." msgstr "Η υπηρεσία %(service_name)s δεν εκτελείται." -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, python-format msgid "Core functionality and web interface for %(box_name)s" msgstr "Βασική λειτουργικότητα και σελίδα ιστού για το %(box_name)s" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" -msgstr "Αλλαγή πλοήγησης" +#: plinth/templates/base.html:107 +#, fuzzy +#| msgid "Home" +msgid " Home" +msgstr "Κεντρική σελίδα" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "Κεντρική σελίδα" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +#, fuzzy +#| msgid "Apps" +msgid " Apps" +msgstr "Εφαρμογές" + +#: plinth/templates/base.html:119 msgid "Apps" msgstr "Εφαρμογές" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +#, fuzzy +#| msgid "System" +msgid " System" +msgstr "Σύστημα" + +#: plinth/templates/base.html:128 msgid "System" msgstr "Σύστημα" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "Αλλαγή κωδικού πρόσβασης" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -msgid "Restart" -msgstr "Κάνετε επανεκκίνηση" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 msgid "Shut down" msgstr "ΤΕΡΜΑΤΙΣΜΟΣ ΛΕΙΤΟΥΡΓΙΑΣ" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "Αποσύνδεση" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 msgid "Select language" msgstr "Επιλογή γλώσσας" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "Σύνδεση" @@ -8253,7 +8264,7 @@ msgstr "Homebrew:" msgid "RPM:" msgstr "RPM:" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -8271,10 +8282,6 @@ msgstr "" "Ενεργοποιήστε μερικές εφαρμογές για να " "προσθέσετε συντομεύσεις σε αυτήν τη σελίδα." -#: plinth/templates/index.html:46 -msgid "Configure »" -msgstr "Ρύθμιση παραμέτρων »" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -8306,7 +8313,7 @@ msgstr "Αρχική σελίδα" msgid "Source Code" msgstr "Πηγαίος Κώδικας" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "Δωρεά" @@ -8347,6 +8354,10 @@ msgstr "" "Προς το παρόν οι ακόλουθες διασυνδέσεις δικτύου έχουν ρυθμιστεί ως " "εσωτερικές: %(interface_list)s" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 #, fuzzy #| msgid "No certificate" @@ -8392,17 +8403,17 @@ msgstr "" "προώθηση των θυρών στο δρομολογητή σας. Θα πρέπει να προωθήσετε τις " "ακόλουθες θύρες για %(service_name)s:" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 #, fuzzy #| msgid "protocol" msgid "Protocol" msgstr "Πρωτόκολλο" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, fuzzy, python-format #| msgid "%(box_name)s Setup" msgid "To %(box_name)s Ports" @@ -8459,6 +8470,24 @@ msgstr "ολοκληρώθηκε το %(percentage)s%%" msgid "Gujarati" msgstr "Gujarati" +#~ msgid "Show Ports" +#~ msgstr "Εμφάνιση θυρών" + +#~ msgid "Learn more »" +#~ msgstr "Μάθετε περισσότερα »" + +#~ msgid "Restart »" +#~ msgstr "Επανεκκίνηση »" + +#~ msgid "Shut Down »" +#~ msgstr "Τερματισμός »" + +#~ msgid "Toggle navigation" +#~ msgstr "Αλλαγή πλοήγησης" + +#~ msgid "Configure »" +#~ msgstr "Ρύθμιση παραμέτρων »" + #~ msgid "Show connection %(connection.name)s" #~ msgstr "Εμφάνιση σύνδεσης %(connection.name)s" diff --git a/plinth/locale/es/LC_MESSAGES/django.po b/plinth/locale/es/LC_MESSAGES/django.po index 74efd0699..f41edb5d2 100644 --- a/plinth/locale/es/LC_MESSAGES/django.po +++ b/plinth/locale/es/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: 2020-12-24 17:29+0000\n" "Last-Translator: Fioddor Superconcentrado \n" "Language-Team: Spanish diaspora." "%(domain_name)s" +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "Configuración" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1783,16 +1790,16 @@ msgid "About" msgstr "Acerca de" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 msgid "Status" msgstr "Estado" @@ -1945,7 +1952,7 @@ msgstr "Puerto {name} ({details}) disponible para redes externas" msgid "Port {name} ({details}) unavailable for external networks" msgstr "Puerto {name} ({details}) no disponible para redes externas" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -1958,44 +1965,40 @@ msgstr "" "en Debian (como %(box_name)s) puede activarlo con 'service firewalld start' " "o si su sistema emplea systemd 'systemctl start firewalld'." -#: plinth/modules/firewall/templates/firewall.html:28 -msgid "Show Ports" -msgstr "Mostrar puertos" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "Servicio/Puerto" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "Activado" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "Desactivado" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "Permitido" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "Permitido (solo interno)" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "Permitido (solo externo)" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "Bloqueado" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " @@ -2005,13 +2008,13 @@ msgstr "" "se autoriza en el firewall, y cuando lo desactiva también se desactiva en el " "firewall." -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "Avanzado" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -2058,7 +2061,7 @@ msgstr "" "Puede que quiera comprobar la configuración de " "red y modificarla si es necesario." -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "Iniciar configuración" @@ -2161,33 +2164,33 @@ msgstr "Gitweb muestra esta rama por omisión." msgid "Git" msgstr "Git" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 msgid "Manage Repositories" msgstr "Administrar Repositorios" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 msgid "Create repository" msgstr "Crear repositorio" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 msgid "No repositories available." msgstr "No hay repositorios disponibles." -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 -#, python-format -msgid "Delete repository %(repo.name)s" -msgstr "Eliminar repositorio %(repo.name)s" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 -msgid "Cloning…" -msgstr "Clonando…" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 #, python-format msgid "Go to repository %(repo.name)s" msgstr "Ir al repositorio %(repo.name)s" +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 +msgid "Cloning…" +msgstr "Clonando…" + +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 +#, python-format +msgid "Delete repository %(repo.name)s" +msgstr "Eliminar repositorio %(repo.name)s" + #: plinth/modules/gitweb/templates/gitweb_delete.html:12 #, python-format msgid "Delete Git Repository %(name)s" @@ -2245,6 +2248,27 @@ msgid "Contribute" msgstr "Contribuír" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, python-format +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "Está ejecutando %(os_release)s y %(box_name)s versión %(version)s." + +#: plinth/modules/help/templates/help_about.html:23 +#, python-format +msgid "" +"There is a new %(box_name)s version available." +msgstr "" +"Hay una nueva versión de %(box_name)s disponible." + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, python-format +msgid "%(box_name)s is up to date." +msgstr "%(box_name)s está actualizado." + +#: plinth/modules/help/templates/help_about.html:35 #, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2263,7 +2287,7 @@ msgstr "" "proxy y servidor Tor, todo ello sobre un equipo que puede reemplazar su " "router Wi-Fi de forma que sus datos permanezcan con usted." -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2280,7 +2304,7 @@ msgstr "" "equipos tratamos de que Internet vuelva a su arquitectura peer-to-peer " "original." -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2290,7 +2314,7 @@ msgstr "" "Hay una serie de distintos proyectos trabajando en un futuro de servicios " "distribuidos. %(box_name)s trata de ofrecerlos juntos en un cómodo paquete." -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the Wiki de %(box_name)s." -#: plinth/modules/help/templates/help_about.html:60 -msgid "Learn more »" -msgstr "Aprenda más»" - -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, python-format -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "Está ejecutando %(os_release)s y %(box_name)s versión %(version)s." - -#: plinth/modules/help/templates/help_about.html:69 -#, python-format -msgid "" -"There is a new %(box_name)s version available." -msgstr "" -"Hay una nueva versión de %(box_name)s disponible." - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, python-format -msgid "%(box_name)s is up to date." -msgstr "%(box_name)s está actualizado." +#: plinth/modules/help/templates/help_about.html:78 +#, fuzzy +#| msgid "Learn more..." +msgid "Learn more" +msgstr "Aprenda más..." #: plinth/modules/help/templates/help_base.html:21 #: plinth/modules/help/templates/help_index.html:61 @@ -2407,7 +2412,7 @@ msgid "Thank you!" msgstr "¡Gracias!" #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 msgid "Help" msgstr "Ayuda" @@ -2457,7 +2462,7 @@ msgstr "" "randomnick=1&channels=freedombox&prompt=1\">#freedombox usando la " "interfaz web IRC." -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 msgid "Download as PDF" msgstr "Descargar como PDF" @@ -2674,16 +2679,16 @@ msgstr "Crear Wiki o Blog" msgid "No wikis or blogs available." msgstr "No hay wikis o blogs disponibles." -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "Eliminar sitio %(site)s" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "Ir al sitio %(site)s" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "Eliminar sitio %(site)s" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2784,8 +2789,8 @@ msgstr "JSXC" msgid "Chat Client" msgstr "Cliente de Chat" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "Información de licencia de JavaScript" @@ -2825,63 +2830,63 @@ msgstr "Let's Encrypt" msgid "Certificates" msgstr "Certificados" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 msgid "Domain" msgstr "Dominio" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "Estado del certificado" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "Seguridad del sitio" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 msgid "Actions" msgstr "Acciones" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, python-format msgid "Valid, expires on %(expiry_date)s" msgstr "Válido, expira el %(expiry_date)s" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 msgid "Revoked" msgstr "Revocado" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, python-format msgid "Expired on %(expiry_date)s" msgstr "Expiró el %(expiry_date)s" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 msgid "Invalid test certificate" msgstr "Prueba de certificado no válida" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "No válido (%(reason)s)" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 msgid "No certificate" msgstr "No certificado" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "Volver a obtener" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "Revocar" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "Obtener" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, python-format msgid "" "No domains have been configured. Configure " @@ -2975,12 +2980,6 @@ msgstr "" msgid "Element" msgstr "Element" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "Configuración" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -3096,11 +3095,11 @@ msgstr "MediaWiki" msgid "Wiki" msgstr "Wiki" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 msgid "Administrator Password" msgstr "Clave de Administración" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." @@ -3108,11 +3107,11 @@ msgstr "" "Definir una clave nueva para la cuenta de administración de MediaWiki " "(admin). Déjelo en blanco para conservar la clave actual." -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 msgid "Server URL" msgstr "URL de Servidor" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." @@ -3120,11 +3119,11 @@ msgstr "" "Lo usa MediaWiki para generar URLs que apunten al wiki como piés de página, " "feeds y enlaces a e-mail." -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 msgid "Enable public registrations" msgstr "Habilitar el registro público" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." @@ -3132,11 +3131,11 @@ msgstr "" "Si está habilitado, cualquiera en internet podrá crear una cuenta en su " "instancia de MediaWiki." -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 msgid "Enable private mode" msgstr "Activar modo privado" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 msgid "" "If enabled, access will be restricted. Only people who have accounts can " "read/write to the wiki. Public registrations will also be disabled." @@ -3145,11 +3144,11 @@ msgstr "" "una cuenta pueden leer/escribir en el wiki. El registro público también será " "desactivado." -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 msgid "Default Skin" msgstr "Tema por defecto" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -3251,13 +3250,13 @@ msgstr "" "Cuando se desactiva, los participantes no pueden morir o recibir daño de " "ningún tipo." -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "Dirección" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "Puerto" @@ -3439,95 +3438,94 @@ msgstr "" msgid "Monkeysphere" msgstr "Monkeysphere" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "Publicando la clave en el servidor de claves..." -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "Cancelar" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "Servicio" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 msgid "Domains" msgstr "Dominios" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 msgid "OpenPGP Fingerprint" msgstr "Huella digital OpenPGP" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 msgid "Secure Shell" msgstr "Intérprete de órdenes seguro" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 msgid "Other" msgstr "Otro" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "Mostrar detalles de la clave %(fingerprint)s" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 msgid "-" msgstr "-" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "Importar clave" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "Publicar clave" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 msgid "Add Domains" msgstr "Añadir dominios" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "IDs de usuario OpenPGP" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "Fecha de importación de la clave" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 msgid "SSH Key Type" msgstr "Tipo de clave SSH" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 msgid "SSH Key Size" msgstr "Tamaño de clave SSH" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 msgid "SSH Fingerprint" msgstr "Huella digital SSH" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "Archivo de clave" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 msgid "Available Domains" msgstr "Dominios disponibles" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 msgid "Added Domains" msgstr "Dominios añadidos" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" @@ -3535,15 +3533,15 @@ msgstr "" "Después de publicar la clave en un servidor de claves puede firmarla usando " "GnuPG con los siguientes comandos:" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 msgid "Download the key" msgstr "Descargar la clave" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "Firmar la clave" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 msgid "Send the key back to the keyservers" msgstr "Volver a subir la clave al servidor de claves" @@ -3642,7 +3640,7 @@ msgstr "Todos" msgid "All web apps" msgstr "Todas las apps web" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 msgid "Services" msgstr "Servicios" @@ -3741,8 +3739,8 @@ msgstr "" "basada en la dirección asignada." #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "Puerta de enlace" @@ -3828,7 +3826,7 @@ msgid "-- select --" msgstr "-- seleccionar --" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 msgid "SSID" msgstr "SSID" @@ -3837,7 +3835,7 @@ msgid "The visible name of the network." msgstr "Nombre visible de la red." #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "Modo" @@ -3866,7 +3864,7 @@ msgid "B/G (2.4 GHz)" msgstr "B/G (2.4 GHz)" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 msgid "Channel" msgstr "Canal" @@ -4072,158 +4070,158 @@ msgstr "" "que se le recuerde más tarde. Puede que falle alguno de los siguientes pasos " "de la configuración.

" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "Editar conexión" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "Editar" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "Desactivar" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "Activar" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "Eliminar conexión" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "Conexión" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "Conexión principal" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "sí" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "Dispositivo" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "Estado" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "Motivo del estado" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 msgid "MAC address" msgstr "Dirección MAC" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 msgid "Interface" msgstr "Interfaz" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "Descripción" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "Enlace físico" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "Estado del enlace" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "El cable está conectado" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 msgid "please check cable" msgstr "Por favor compruebe el cable" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "Velocidad" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "%(ethernet_speed)s Mbit/s" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "%(wireless_bitrate)s Mbit/s" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "Potencia de la señal" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "IPv4" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "Método" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "Dirección IP" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "Servidor DNS" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "Por defecto" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "IPv6" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "Esta conexión no está activa." -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "Protección" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "Zona de firewall" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 msgid "" "This interface should be connected to a local network/machine. If you " "connect this interface to a public network, services meant to be available " @@ -4233,8 +4231,8 @@ msgstr "" "a una red pública los servicios destinados a la red interna estarán también " "accesibles desde la red externa, lo que supone un riesgo de seguridad." -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 msgid "" "This interface should receive your Internet connection. If you connect it to " "a local network/machine, many services meant to available only internally " @@ -4244,13 +4242,13 @@ msgstr "" "red/máquina local, muchos servicios destinados a funcionar internamente no " "estarán disponibles." -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "Externa" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -4273,40 +4271,40 @@ msgstr "Eliminar conexión" msgid "Delete connection %(name)s permanently?" msgstr "¿Eliminar la conexión %(name)s definitivamente?" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "Internet" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 msgid "Spacing" msgstr "Espaciado" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "Ethernet" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "Wi-Fi" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "Mostrar la conexión %(name)s" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "Interna" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "Ordenador" @@ -4332,19 +4330,19 @@ msgstr "Redes Wi-Fi cercanas" msgid "Add Connection" msgstr "Añadir conexión" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "Eliminar la conexión %(name)s" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "Activa" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "Inactiva" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "Eliminar la conexión %(name)s" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "Crear…" @@ -4372,8 +4370,8 @@ msgstr "Saltar este paso" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "Siguiente" @@ -4472,7 +4470,7 @@ msgstr "" "Su %(box_name)s se conecta directamente a Internet y no hay otros " "dispositivos en su red local." -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -4970,11 +4968,11 @@ msgstr "Visibilidad pública" msgid "PageKite Domain" msgstr "Dominio PageKite" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 msgid "Server domain" msgstr "Dominio del servidor" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " "pagekite.net server." @@ -4982,31 +4980,31 @@ msgstr "" "Seleccione su servidor pagekite. Elija \"pagekite.net\" para usar el " "servidor pagekite por defecto." -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "Puerto del servidor" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "Puerto de su servidor pagekite (por defecto es 80)" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "Nombre Kite" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "Ejemplo: mybox.pagekite.me" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "Nombre de kite inválido" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "Clave para Kite" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." @@ -5014,53 +5012,53 @@ msgstr "" "Una clave asociada al Kite o la clave por defecto para su cuenta si no se " "especifica ninguna." -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "protocolo" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "puerto externo (frontend)" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "puerto interno (freedombox)" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "Activar subdominios" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 msgid "Deleted custom service" msgstr "Servicio personalizado eliminado" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 msgid "This service is already available as a standard service." msgstr "Este servicio ya está disponible como servicio estándar." -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 msgid "Added custom service" msgstr "Servicio personalizado añadido" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "Este servicio ya existe" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 msgid "Custom Services" msgstr "Servicios personalizados" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 msgid "Add Custom Service" msgstr "Añadir servicios personalizados" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "conectado a %(backend_host)s:%(backend_port)s" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "Eliminar este servicio" @@ -5153,13 +5151,16 @@ msgstr "" "Otra instalación o actualización está actualmente en ejecución. Por favor " "espere unos momentos antes de apagar o reiniciar." -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" -msgstr "Reiniciar »" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +msgid "Restart" +msgstr "Reiniciar" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" -msgstr "Apagar »" +#, fuzzy +#| msgid "Shut down" +msgid "Shut Down" +msgstr "Apagar" #: plinth/modules/power/templates/power_restart.html:17 msgid "" @@ -5518,11 +5519,11 @@ msgstr "GNOME Archivos" msgid "Dolphin" msgstr "Dolphin" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 msgid "Shares" msgstr "Compartidos" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 msgid "" "Note: Only specially created directories will be shared on selected disks, " "not the whole disk." @@ -5530,11 +5531,11 @@ msgstr "" "Nota: solo se compartirá las carpetas especialmente creadas para ello, no se " "compartirá el disco completo." -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 msgid "VFAT partitions are not supported" msgstr "Las particiones VFAT no están soportadas" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the usuarios." -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 msgid "Users who can currently access group and home shares" msgstr "Usuarios con acceso a las carpetas de grupo y de cuenta" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 msgid "" "Users needing to re-enter their password on the password change page to " "access group and home shares" @@ -5558,11 +5559,11 @@ msgstr "" "Usuarios que necesitan re-introducir su clave para acceder a las carpetas " "compartidas en grupo y en cuenta" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 msgid "Unavailable Shares" msgstr "Elementos compartidos no disponibles" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." @@ -5571,11 +5572,11 @@ msgstr "" "disponible. Si el disco se conecta de nuevo estarán accesibles " "automáticamente." -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 msgid "Share name" msgstr "Nombre de compartición" -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 msgid "Action" msgstr "Acción" @@ -5696,25 +5697,25 @@ msgstr "" "servidor SSH como a otros servicios de Internet protegidos por contraseña " "que estén activados." -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 msgid "Show security report" msgstr "Mostrar informe de seguridad" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "Actualizaciones funcionales frecuentes" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "Las actualizaciones funcionales frecuentes están activadas." -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5774,39 +5775,39 @@ msgstr "" "\"Índice de aislamiento\" informa de cómo de efectivo es el aislamiento. " "Solo se muestra cuando el servicio está en ejecución." -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 msgid "App Name" msgstr "Nombre de la app" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 msgid "Current Vulnerabilities" msgstr "Vulnerabilidades Actuales" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 msgid "Past Vulnerabilities" msgstr "Vulnerabilidades Anteriores" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 msgid "Sandboxed" msgstr "Aisladas" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 msgid "Sandbox Coverage" msgstr "Índice de aislamiento" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 msgid "N/A" msgstr "N/A" -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 msgid "Yes" msgstr "Sí" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 msgid "No" msgstr "No" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 msgid "Not running" msgstr "No se está ejecutando" @@ -5968,28 +5969,28 @@ msgstr "" "Las carpetas compartidas deben ser públicas o estar compartidas con al menos " "un grupo" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 msgid "Add share" msgstr "Añadir compartición" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "Actualmente no hay comparticiones configuradas." -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "Ruta de acceso en disco" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 msgid "Shared Over" msgstr "Compartido por" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 msgid "With Groups" msgstr "Con los grupos" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "Acceso público" @@ -6134,41 +6135,41 @@ msgstr "" msgid "Delete the following snapshots permanently?" msgstr "¿Eliminar las siguientes instantáneas definitivamente?" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "Número" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "Fecha" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 msgid "Delete Snapshots" msgstr "Eliminar instantáneas" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 msgid "Create Snapshot" msgstr "Crear instantánea" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "Restaurar" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 msgid "will be used at next boot" msgstr "se usará en el siguiente reinicio" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "en uso" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "Restaurar a instantánea %(number)s" @@ -6196,7 +6197,7 @@ msgstr "" "Se creará una nueva instantánea del estado del sistema automáticamente. " "Podrá deshacer una restauración revirtiendo a la nueva instantánea creada." -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "Restaurar a instantánea %(number)s" @@ -6294,11 +6295,11 @@ msgstr "" "Al conectar con el servidor, asegúrate de que la huella digital mostrada por " "el cliente SSH coincide con una de éstas." -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "Algoritmo" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 msgid "Fingerprint" msgstr "Huella digital" @@ -6478,27 +6479,27 @@ msgstr "Compartir" msgid "Other directory (specify below)" msgstr "Otra carpeta (especifique más abajo)" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 msgid "The following storage devices are in use:" msgstr "Se están usando los siguientes dispositivos de almacenamiento:" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "Etiqueta" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "Punto de montaje" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 msgid "Used" msgstr "Usado" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "Expandir la partición" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -6509,13 +6510,13 @@ msgstr "" "partición raíz. Se puede ampliar la partición raíz para usarlo y disponer de " "espacio libre adicional para almacenar sus archivos." -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "Ampliar partición raíz" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -6651,25 +6652,25 @@ msgstr "" msgid "Local introducer" msgstr "Presentador local" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 msgid "Pet Name" msgstr "Nombre de alias" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "Añadir nuevo presentador" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 msgid "Add" msgstr "Añadir" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "Presentadores conectados" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "Eliminar" @@ -6841,19 +6842,19 @@ msgstr "Orbot: Proxy con Tor" msgid "Tor configuration is being updated" msgstr "La configuración de Tor está actualizándose" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 msgid "Onion Service" msgstr "Servicio Onion" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 msgid "Ports" msgstr "Puertos" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 msgid "Relay" msgstr "Retransmisión" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, python-format msgid "" "If your %(box_name)s is behind a router or firewall, you should make sure " @@ -6956,7 +6957,7 @@ msgstr "" "automática a las 02:00 h." #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 msgid "Update" @@ -6992,7 +6993,7 @@ msgstr "" "distribución estable cuando esté disponible." #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "Activar las actualizaciones funcionales frecuentes (recomendado)" @@ -7016,11 +7017,11 @@ msgstr "" "Nota: Una vez que se activan las actualizaciones " "funcionales frecuentes no se pueden desactivar." -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 msgid "Updating, please wait..." msgstr "Actualizando, espere por favor..." -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 msgid "" "This may take a long time to complete. During an update, " @@ -7031,7 +7032,7 @@ msgstr "" "actualización esta interfaz web puede estar temporalmente inaccesible y " "mostrar un error. En ese caso, vuelva a cargar la página para continuar." -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, python-format msgid "" "\n" @@ -7061,28 +7062,28 @@ msgstr "" msgid "Dismiss" msgstr "Descartar" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "Actualizando..." -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, python-format msgid "There is a new %(box_name)s version available." msgstr "Hay una nueva versión de %(box_name)s disponible." -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 msgid "Your Freedombox needs an update!" msgstr "¡Tu FreedomBox necesita actualizarse!" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" "Se pueden activar las actualizaciones funcionales frecuentes. Se recomienda " "activarlas." -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." @@ -7090,7 +7091,7 @@ msgstr "" "No se pueden activar las actualizaciones funcionales frecuentes. Quizá no " "sean necesarias en tu distribución." -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -7102,15 +7103,15 @@ msgstr "" "quiera Ud. hacer una copia de respaldo usando Instantáneas ." -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 msgid "Manual Update" msgstr "Actualización manual" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 msgid "Update now" msgstr "Actualizar ahora" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 msgid "" "This may take a long time to complete. During an update, " "you cannot install apps. Also, this web interface may be temporarily " @@ -7121,7 +7122,7 @@ msgstr "" "puede estar temporalmente inaccesible y mostrar un error. En ese caso, " "vuelva a cargar la página para continuar." -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 msgid "Show recent update logs" msgstr "Mostrar los registros de las actualizaciones recientes" @@ -7312,8 +7313,8 @@ msgstr "Guardar clave de acceso" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "Crear usuaria/o" @@ -7374,21 +7375,21 @@ msgstr "" "\"{password}\" | /usr/share/plinth/actions/users remove-user {username}' en " "la línea de órdenes." -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "Usuarias/os" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "Eliminar usuaria/o %(username)s" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "Editar el usuario %(username)s" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "Eliminar usuaria/o %(username)s" + #: plinth/modules/users/templates/users_update.html:11 #, python-format msgid "Edit User %(username)s" @@ -7469,8 +7470,8 @@ msgstr "Clave no válida." #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 msgid "Public Key" msgstr "Clave pública" @@ -7573,7 +7574,7 @@ msgid "Allowed IPs" msgstr "IP permitidas" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 msgid "Last Connected Time" msgstr "Última conexión" @@ -7582,47 +7583,47 @@ msgstr "Última conexión" msgid "No peers configured to connect to this %(box_name)s yet." msgstr "Todavía no hay pares configurados para conectarse a %(box_name)s." -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, python-format msgid "Public key for this %(box_name)s:" msgstr "Clave pública para esta %(box_name)s:" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 msgid "Not configured yet." msgstr "Sin configurar todavía." -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 msgid "Add a new peer" msgstr "Añadir nuevo par" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "Añadir cliente autorizado" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 msgid "As a Client" msgstr "Como cliente" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "Servidores a los que se conectará %(box_name)s:" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "Extremo" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 msgid "No connections to remote servers are configured yet." msgstr "Todavía no se han configurado conexiones a servidores remotos." -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 msgid "Add a new server" msgstr "Añadir nuevo servidor" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "Añadir conexión a servidor" @@ -7656,40 +7657,40 @@ msgstr "" "%(box_name)s permitirá la conexión a este cliente. Asegúrese de que el " "cliente está configurado con la siguiente información." -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "Clave pública del cliente:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "Dirección IP para el cliente:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "Clave pre-compartida:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 msgid "Server endpoints:" msgstr "Extremos del servidor:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 msgid "Server public key:" msgstr "Clave pública del servidor:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "Datos transmitidos:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "Datos recibidos:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "Última comunicación establecida:" @@ -7704,15 +7705,15 @@ msgstr "" "información. Asegúrese de que el servidor está configurado para aceptar la " "clave pública y la dirección IP de %(box_name)s." -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 msgid "Server endpoint:" msgstr "Extremo del servidor:" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "Clave pública para este dispositivo:" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "Dirección IP para este dispositivo:" @@ -7857,49 +7858,53 @@ msgstr "Instalación" msgid "Service %(service_name)s is not running." msgstr "El servidor %(service_name)s no se está ejecutando." -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, python-format msgid "Core functionality and web interface for %(box_name)s" msgstr "Funcionalidad central e interfaz web para %(box_name)s" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" -msgstr "Cambiar modo de navegación" +#: plinth/templates/base.html:107 +msgid " Home" +msgstr " Inicio" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "Principal" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +msgid " Apps" +msgstr " Aplicaciones" + +#: plinth/templates/base.html:119 msgid "Apps" msgstr "Aplicaciones" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +msgid " System" +msgstr " Sistema" + +#: plinth/templates/base.html:128 msgid "System" msgstr "Sistema" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "Cambiar clave de acceso" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -msgid "Restart" -msgstr "Reiniciar" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 msgid "Shut down" msgstr "Apagar" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "Cerrar sesión" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 msgid "Select language" msgstr "Seleccionar idioma" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "Iniciar sesión" @@ -7963,7 +7968,7 @@ msgstr "Homebrew:" msgid "RPM:" msgstr "RPM:" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -7981,10 +7986,6 @@ msgstr "" "Active algunas aplicaciones para añadir enlaces " "a esta página." -#: plinth/templates/index.html:46 -msgid "Configure »" -msgstr "Configurar »" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -8016,7 +8017,7 @@ msgstr "Página inicio" msgid "Source Code" msgstr "Código Fuente" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "Donar" @@ -8054,6 +8055,10 @@ msgstr "" "Las siguientes interfaces de red están configuradas como internas " "actualmente: %(interface_list)s" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 msgid "Notifications" msgstr "Notificaciones" @@ -8093,15 +8098,15 @@ msgstr "" "la zona militarizada. Deberás redireccionar los siguientes puertos para " "%(service_name)s:" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 msgid "Protocol" msgstr "Protocolo" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "Desde los puertos externos" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, python-format msgid "To %(box_name)s Ports" msgstr "A los puertos de %(box_name)s" @@ -8156,6 +8161,24 @@ msgstr "%(percentage)s%% completado" msgid "Gujarati" msgstr "Gujarati" +#~ msgid "Show Ports" +#~ msgstr "Mostrar puertos" + +#~ msgid "Learn more »" +#~ msgstr "Aprenda más»" + +#~ msgid "Restart »" +#~ msgstr "Reiniciar »" + +#~ msgid "Shut Down »" +#~ msgstr "Apagar »" + +#~ msgid "Toggle navigation" +#~ msgstr "Cambiar modo de navegación" + +#~ msgid "Configure »" +#~ msgstr "Configurar »" + #~ msgid "Show connection %(connection.name)s" #~ msgstr "Mostrar la conexión %(connection.name)s" @@ -8884,15 +8907,6 @@ msgstr "Gujarati" #~ "Las instantáneas más antiguas seleccionadas serán borradas. Esto no " #~ "limita el número de instantáneas creadas." -#~ msgid " Home" -#~ msgstr " Inicio" - -#~ msgid " Apps" -#~ msgstr " Aplicaciones" - -#~ msgid " System" -#~ msgstr " Sistema" - #~ msgid "Archive name" #~ msgstr "Nombre de archivo" diff --git a/plinth/locale/fa/LC_MESSAGES/django.po b/plinth/locale/fa/LC_MESSAGES/django.po index 98d16ecae..5c4b2ea36 100644 --- a/plinth/locale/fa/LC_MESSAGES/django.po +++ b/plinth/locale/fa/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: 2016-08-12 15:51+0000\n" "Last-Translator: Masoud Abkenar \n" "Language-Team: Persian diaspora.%(domain_name)s " msgstr "" +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1798,16 +1805,16 @@ msgid "About" msgstr "درباره" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 #, fuzzy msgid "Status" msgstr "وضعیت" @@ -1947,7 +1954,7 @@ msgstr "" msgid "Port {name} ({details}) unavailable for external networks" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -1960,46 +1967,40 @@ msgstr "" "%(box_name)s) با فرمان 'service firewalld start' و در سیستم‌های دارای systemd " "با فرمان 'systemctl start firewalld' است." -#: plinth/modules/firewall/templates/firewall.html:28 -#, fuzzy -#| msgid "Show password" -msgid "Show Ports" -msgstr "رمز را نشان بده" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "سرویس/پورت" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "فعال" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "غیرفعال" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "مجاز" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "مجاز (فقط داخلی)" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "مجاز (فقط خارجی)" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "مسدود" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " @@ -2008,13 +2009,13 @@ msgstr "" "کارکرد فایروال خودکار است. وقتی که یک سرویس را فعال کنید آن سرویس در فایروال " "هم مجاز می‌شود و وقتی آن را غیرفعال کنید در فایروال هم مسدود می‌شود." -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -2053,7 +2054,7 @@ msgid "" "modify it if necessary." msgstr "" -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "آغاز راه‌اندازی" @@ -2156,41 +2157,41 @@ msgstr "" msgid "Git" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 #, fuzzy #| msgid "Create Connection" msgid "Manage Repositories" msgstr "ساختن اتصال" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 #, fuzzy #| msgid "Create Connection" msgid "Create repository" msgstr "ساختن اتصال" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 #, fuzzy #| msgid "No wikis or blogs available." msgid "No repositories available." msgstr "ویکی یا وبلاگی موجود نیست." -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 -#, fuzzy, python-format -#| msgid "Delete %(name)s" -msgid "Delete repository %(repo.name)s" -msgstr "پاک‌کردن %(name)s" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 -msgid "Cloning…" -msgstr "" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 #, fuzzy, python-format #| msgid "Go to site %(site)s" msgid "Go to repository %(repo.name)s" msgstr "به سایت %(site)s بروید" +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 +msgid "Cloning…" +msgstr "" + +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 +#, fuzzy, python-format +#| msgid "Delete %(name)s" +msgid "Delete repository %(repo.name)s" +msgstr "پاک‌کردن %(name)s" + #: plinth/modules/gitweb/templates/gitweb_delete.html:12 #, fuzzy, python-format #| msgid "Delete Wiki or Blog %(name)s" @@ -2257,6 +2258,27 @@ msgid "Contribute" msgstr "" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, fuzzy, python-format +#| msgid "You are running Plinth version %(version)s." +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "Plinth نسخهٔ %(version)s در حال اجراست." + +#: plinth/modules/help/templates/help_about.html:23 +#, python-format +msgid "" +"There is a new %(box_name)s version available." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, fuzzy, python-format +#| msgid "%(box_name)s Setup" +msgid "%(box_name)s is up to date." +msgstr "راه‌اندازی %(box_name)s" + +#: plinth/modules/help/templates/help_about.html:35 #, fuzzy, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2275,7 +2297,7 @@ msgstr "" "می‌تواند روی دستگاهی قرار بگیرد که جایگزین روتر Wi-Fi شما می‌شود، و بنابراین " "داده‌های شما در اختیار شما باقی خواهد ماند." -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2292,7 +2314,7 @@ msgstr "" "اینترنت، ما ساختار همتا-به-همتا (peer-to-peer) را که اینترنت از آغاز بر اساس " "آن طراحی شده بود به اینترنت بازمی‌گردانیم." -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, fuzzy, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2302,7 +2324,7 @@ msgstr "" "پروژه‌های گوناگونی برای ساختن سرویس‌های اینترنتی توزیع‌شده در حال اجراست؛ " "%(box_name)s می‌کوشد که همهٔ آن‌ها را در یک بسته با کاربری آسان گردبیاورد." -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the ویکی %(box_name)s را ببینید." -#: plinth/modules/help/templates/help_about.html:60 +#: plinth/modules/help/templates/help_about.html:78 #, fuzzy -msgid "Learn more »" +msgid "Learn more" msgstr "بیشتر بدانید »" -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, fuzzy, python-format -#| msgid "You are running Plinth version %(version)s." -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "Plinth نسخهٔ %(version)s در حال اجراست." - -#: plinth/modules/help/templates/help_about.html:69 -#, python-format -msgid "" -"There is a new %(box_name)s version available." -msgstr "" - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, fuzzy, python-format -#| msgid "%(box_name)s Setup" -msgid "%(box_name)s is up to date." -msgstr "راه‌اندازی %(box_name)s" - #: plinth/modules/help/templates/help_base.html:21 #: plinth/modules/help/templates/help_index.html:61 #, python-format @@ -2401,7 +2402,7 @@ msgid "Thank you!" msgstr "" #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 #, fuzzy msgid "Help" msgstr "راهنما" @@ -2450,7 +2451,7 @@ msgstr "" "کانال #freedombox کمک بخواهید." -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 #, fuzzy #| msgid "{box_name} Manual" msgid "Download as PDF" @@ -2652,16 +2653,16 @@ msgstr "ساختن ویکی یا وبلاگ" msgid "No wikis or blogs available." msgstr "ویکی یا وبلاگی موجود نیست." -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "سایت %(site)s را پاک کنید" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "به سایت %(site)s بروید" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "سایت %(site)s را پاک کنید" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2758,8 +2759,8 @@ msgstr "" msgid "Chat Client" msgstr "" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "" @@ -2816,69 +2817,69 @@ msgstr "گواهی دیجیتال (Let's Encrypt)" msgid "Certificates" msgstr "وضعیت گواهی دیجیتال" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 msgid "Domain" msgstr "دامنه" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "وضعیت گواهی دیجیتال" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "امنیت وبسایت" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 msgid "Actions" msgstr "کنش‌ها" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, fuzzy, python-format msgid "Valid, expires on %(expiry_date)s" msgstr "انقضا در تاریخ %(expiry_date)s" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 #, fuzzy #| msgid "Revoke" msgid "Revoked" msgstr "باطل کردن" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, fuzzy, python-format msgid "Expired on %(expiry_date)s" msgstr "انقضا در تاریخ %(expiry_date)s" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 #, fuzzy #| msgid "No certficate" msgid "Invalid test certificate" msgstr "بدون گواهی دیجیتال" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 #, fuzzy #| msgid "No certficate" msgid "No certificate" msgstr "بدون گواهی دیجیتال" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "بازپس‌گیری" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "باطل کردن" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "گرفتن" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, python-format msgid "" "No domains have been configured. Configure " @@ -2959,12 +2960,6 @@ msgstr "" msgid "Element" msgstr "" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -3050,59 +3045,59 @@ msgstr "" msgid "Wiki" msgstr "" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 #, fuzzy #| msgid "Administrator Account" msgid "Administrator Password" msgstr "حساب مدیر" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." msgstr "" -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 #, fuzzy #| msgid "Service" msgid "Server URL" msgstr "سرویس" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." msgstr "" -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 #, fuzzy msgid "Enable public registrations" msgstr "فعال‌سازی برنامه" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." msgstr "" -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 #, fuzzy msgid "Enable private mode" msgstr "فعال‌سازی برنامه" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 msgid "" "If enabled, access will be restricted. Only people who have accounts can " "read/write to the wiki. Public registrations will also be disabled." msgstr "" -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 #, fuzzy #| msgid "Default" msgid "Default Skin" msgstr "پیش‌فرض" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -3207,13 +3202,13 @@ msgstr "فعال" msgid "When disabled, players cannot die or receive damage of any kind." msgstr "" -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "نشانی" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "" @@ -3386,96 +3381,95 @@ msgstr "" msgid "Monkeysphere" msgstr "مانکی‌اسفیر" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "انتشار کلید به پایگاه کلید..." -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "انصراف" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "سرویس" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 msgid "Domains" msgstr "دامنه‌ها" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 msgid "OpenPGP Fingerprint" msgstr "اثر انگشت OpenPGP" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 msgid "Secure Shell" msgstr "پوستهٔ ایمن" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 msgid "Other" msgstr "دیگر" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "نمایش جزئیات برای کلید %(fingerprint)s" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 #, fuzzy msgid "-" msgstr "-" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "درون‌ریزی کلید" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "انتشار کلید" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 msgid "Add Domains" msgstr "افزودن دامنه" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "شناسه‌های کاربری OpenPGP" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "تاریخ درون‌ریزی کلید" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 msgid "SSH Key Type" msgstr "نوع کلید SSH" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 msgid "SSH Key Size" msgstr "طول کلید SSH" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 msgid "SSH Fingerprint" msgstr "اثر انگشت SSH" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "پروندهٔ کلید" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 msgid "Available Domains" msgstr "دامنه‌های موجود" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 msgid "Added Domains" msgstr "دامنه‌های افزوده‌شده" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" @@ -3483,15 +3477,15 @@ msgstr "" "پس از این که کلید در پایگاه کلیدها بارگذاشته شد، می‌توان آن را با این فرمان " "GnuPG امضا کرد:" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 msgid "Download the key" msgstr "بارگیری کلید" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "امضای کلید" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 msgid "Send the key back to the keyservers" msgstr "بازگرداندن کلید به پایگاه کلیدها" @@ -3586,7 +3580,7 @@ msgstr "" msgid "All web apps" msgstr "" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 #, fuzzy #| msgid "Service" msgid "Services" @@ -3686,8 +3680,8 @@ msgstr "" "اختیاری. اگر خالی بماند، یک ماسک شبکهٔ پیش‌فرض بر اساس نشانی به‌کار خواهد رفت." #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "دروازه" @@ -3790,7 +3784,7 @@ msgid "-- select --" msgstr "-- برگزینید --" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 #, fuzzy msgid "SSID" msgstr "شناسه" @@ -3800,7 +3794,7 @@ msgid "The visible name of the network." msgstr "نام قابل رویت شبکه." #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "حالت" @@ -3829,7 +3823,7 @@ msgid "B/G (2.4 GHz)" msgstr "B/G (۲٫۴ گیگاهرتز)" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 msgid "Channel" msgstr "کانال" @@ -3985,158 +3979,158 @@ msgid "" "to be reminded later. Some of the other configuration steps may fail.

" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "ویرایش اتصال" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "ویرایش" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "غیرفعال‌سازی" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "فعال‌سازی" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "پاک‌کردن اتصال" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "اتصال" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "اتصال اصلی" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "بله" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "وسیله" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "وضعیت" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "دلیل وضعیت" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 msgid "MAC address" msgstr "نشانی MAC" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 msgid "Interface" msgstr "واسط" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "شرح" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "پیوند فیزیکی" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "وضعیت پیوند" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "سیم وصل است" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 msgid "please check cable" msgstr "لطفاً سیم را بررسی کنید" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "سرعت" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "%(ethernet_speed)s مگابیت/ثانیه" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "%(wireless_bitrate)s مگابیت/ثانیه" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "شدت سیگنال" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "آی‌پی ن۴" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "روش" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "نشانی آی‌پی" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "دی‌ان‌اس" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "پیش‌فرض" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "آی‌پی ن۶" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "این اتصال فعال نیست." -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "امنیت" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "محدودهٔ فایروال" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 msgid "" "This interface should be connected to a local network/machine. If you " "connect this interface to a public network, services meant to be available " @@ -4146,8 +4140,8 @@ msgstr "" "وصل کنید، سرویس‌هایی که قرار بوده محلی باشند از خارج نیز قابل‌استفاده می‌شوند. " "این می‌تواند یک خطر امنیتی باشد." -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 msgid "" "This interface should receive your Internet connection. If you connect it to " "a local network/machine, many services meant to available only internally " @@ -4157,13 +4151,13 @@ msgstr "" "شبکهٔ محلی وصل کنید، بسیاری از سرویس‌هایی که قرار بوده به طور محلی در دسترس " "باشند غیرقابل دسترسی می‌شوند." -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -4184,41 +4178,41 @@ msgstr "پاک‌کردن اتصال" msgid "Delete connection %(name)s permanently?" msgstr "اتصال %(name)s را برای همیشه پاک می‌کنید؟" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "اینترنت" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 #, fuzzy msgid "Spacing" msgstr "Spacing" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "اترنت" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "Wi-Fi" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "اتصال %(name)s را نشان بده" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "کامپیوتر" @@ -4246,19 +4240,19 @@ msgstr "شبکه‌های بی‌سیم در نزدیکی" msgid "Add Connection" msgstr "افزودن اتصال" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "اتصال %(name)s را پاک کن" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "فعال" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "غیرفعال" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "اتصال %(name)s را پاک کن" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "ساختن..." @@ -4284,8 +4278,8 @@ msgstr "" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "" @@ -4374,7 +4368,7 @@ msgid "" "are no other devices on the network." msgstr "" -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -4869,93 +4863,93 @@ msgstr "" msgid "PageKite Domain" msgstr "دامنه‌های موجود" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 msgid "Server domain" msgstr "" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " "pagekite.net server." msgstr "" -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." msgstr "" -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 msgid "Deleted custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 msgid "This service is already available as a standard service." msgstr "" -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 msgid "Added custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 msgid "Custom Services" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 msgid "Add Custom Service" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "" @@ -5035,12 +5029,13 @@ msgid "" "finished before shutting down or restarting." msgstr "" -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +msgid "Restart" msgstr "" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" +msgid "Shut Down" msgstr "" #: plinth/modules/power/templates/power_restart.html:17 @@ -5334,23 +5329,23 @@ msgstr "" msgid "Dolphin" msgstr "" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 #, fuzzy #| msgid "Shared" msgid "Shares" msgstr "مشترک" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 msgid "" "Note: Only specially created directories will be shared on selected disks, " "not the whole disk." msgstr "" -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 msgid "VFAT partitions are not supported" msgstr "" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the users module page." msgstr "" -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 msgid "Users who can currently access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 msgid "" "Users needing to re-enter their password on the password change page to " "access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 #, fuzzy #| msgid "Available Domains" msgid "Unavailable Shares" msgstr "دامنه‌های موجود" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." msgstr "" -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 #, fuzzy #| msgid "Shared" msgid "Share name" msgstr "مشترک" -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 #, fuzzy #| msgid "Actions" msgid "Action" @@ -5513,27 +5508,27 @@ msgid "" "services." msgstr "" -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 #, fuzzy #| msgid "Security" msgid "Show security report" msgstr "امنیت" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "" -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5579,45 +5574,45 @@ msgid "" "running." msgstr "" -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 #, fuzzy #| msgid "Name" msgid "App Name" msgstr "نام" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 msgid "Current Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 msgid "Past Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 #, fuzzy msgid "Sandboxed" msgstr "بازی مکعب‌ها (Minetest)" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 #, fuzzy msgid "Sandbox Coverage" msgstr "بازی مکعب‌ها (Minetest)" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 msgid "N/A" msgstr "" -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 #, fuzzy #| msgid "yes" msgid "Yes" msgstr "بله" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 msgid "No" msgstr "" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 msgid "Not running" msgstr "" @@ -5767,30 +5762,30 @@ msgstr "" msgid "Shares should be either public or shared with at least one group" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 msgid "Add share" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "" -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 #, fuzzy #| msgid "Shared" msgid "Shared Over" msgstr "مشترک" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 msgid "With Groups" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "" @@ -5936,43 +5931,43 @@ msgstr "" msgid "Delete the following snapshots permanently?" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 #, fuzzy #| msgid "Delete %(name)s" msgid "Delete Snapshots" msgstr "پاک‌کردن %(name)s" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 msgid "Create Snapshot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 msgid "will be used at next boot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "" @@ -5995,7 +5990,7 @@ msgid "" "the newly created snapshot." msgstr "" -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "" @@ -6095,11 +6090,11 @@ msgid "" "client matches one of these fingerprints." msgstr "" -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 #, fuzzy #| msgid "SSH Fingerprint" msgid "Fingerprint" @@ -6285,30 +6280,30 @@ msgstr "مشترک" msgid "Other directory (specify below)" msgstr "" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 #, fuzzy #| msgid "The following disks are in use:" msgid "The following storage devices are in use:" msgstr "دیسک‌های زیر در حال استفاده هستند:" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "نشانی سوارشدن (mount point)" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 #, fuzzy msgid "Used" msgstr "به‌کاربرده" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -6319,13 +6314,13 @@ msgstr "" "پارتیشن ریشهٔ شما می‌تواند بزرگ شود تا این فضای به‌کارنرفته را به کار ببرد. این " "کار فضای بیشتری برای ذخیرهٔ پرونده‌ها به شما خواهد داد." -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "بزرگ‌کردن پارتیشن ریشه" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -6435,29 +6430,29 @@ msgstr "" msgid "Local introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 #, fuzzy #| msgid "Name" msgid "Pet Name" msgstr "نام" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 #, fuzzy #| msgid "Address" msgid "Add" msgstr "نشانی" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "" @@ -6601,21 +6596,21 @@ msgstr "" msgid "Tor configuration is being updated" msgstr "" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 #, fuzzy #| msgid "Service" msgid "Onion Service" msgstr "سرویس" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 msgid "Ports" msgstr "" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 msgid "Relay" msgstr "" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, python-format msgid "" "If your %(box_name)s is behind a router or firewall, you should make sure " @@ -6696,7 +6691,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 msgid "Update" @@ -6734,7 +6729,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "" @@ -6754,11 +6749,11 @@ msgid "" "cannot be deactivated." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 msgid "Updating, please wait..." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 msgid "" "This may take a long time to complete. During an update, " @@ -6766,7 +6761,7 @@ msgid "" "case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, fuzzy, python-format #| msgid "%(box_name)s Setup" msgid "" @@ -6793,33 +6788,33 @@ msgstr "" msgid "Dismiss" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, python-format msgid "There is a new %(box_name)s version available." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 #, fuzzy msgid "Your Freedombox needs an update!" msgstr "FreedomBox" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -6827,26 +6822,26 @@ msgid "" "\"%(snapshot_url)s\">Storage Snapshots before continuing." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 #, fuzzy #| msgid "Last update" msgid "Manual Update" msgstr "آخرین به‌روزرسانی" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 #, fuzzy #| msgid "Update URL" msgid "Update now" msgstr "نشانی به‌روزرسانی" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 msgid "" "This may take a long time to complete. During an update, " "you cannot install apps. Also, this web interface may be temporarily " "unavailable and show an error. In that case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 msgid "Show recent update logs" msgstr "" @@ -7032,8 +7027,8 @@ msgstr "" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "" @@ -7093,21 +7088,21 @@ msgid "" "step." msgstr "" -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "" + #: plinth/modules/users/templates/users_update.html:11 #, fuzzy, python-format #| msgid "Delete Wiki or Blog %(name)s" @@ -7184,8 +7179,8 @@ msgstr "نام میزبان معتبر نیست" #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 #, fuzzy #| msgid "Publish Key" msgid "Public Key" @@ -7276,7 +7271,7 @@ msgid "Allowed IPs" msgstr "" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 #, fuzzy #| msgid "Create Connection" msgid "Last Connected Time" @@ -7287,48 +7282,48 @@ msgstr "ساختن اتصال" msgid "No peers configured to connect to this %(box_name)s yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, python-format msgid "Public key for this %(box_name)s:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 msgid "Not configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 msgid "Add a new peer" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 #, fuzzy msgid "As a Client" msgstr "برنامهٔ DNS متغیر (Dynamic DNS Client)" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 #, fuzzy #| msgid "Add Connection" @@ -7367,42 +7362,42 @@ msgid "" "is configured with the following information." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 #, fuzzy #| msgid "SSH Fingerprint" msgid "Server endpoints:" msgstr "اثر انگشت SSH" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 msgid "Server public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "" @@ -7414,17 +7409,17 @@ msgid "" "public key and IP address." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 #, fuzzy #| msgid "SSH Fingerprint" msgid "Server endpoint:" msgstr "اثر انگشت SSH" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "" @@ -7578,52 +7573,57 @@ msgstr "" msgid "Service %(service_name)s is not running." msgstr "" -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, python-format msgid "Core functionality and web interface for %(box_name)s" msgstr "" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" +#: plinth/templates/base.html:107 +msgid " Home" msgstr "" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +#, fuzzy +msgid " Apps" +msgstr "برنامه‌ها" + +#: plinth/templates/base.html:119 #, fuzzy msgid "Apps" msgstr "برنامه‌ها" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +msgid " System" +msgstr "" + +#: plinth/templates/base.html:128 msgid "System" msgstr "" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -msgid "Restart" -msgstr "" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 msgid "Shut down" msgstr "" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 #, fuzzy #| msgid "Language" msgid "Select language" msgstr "زبان" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "" @@ -7690,7 +7690,7 @@ msgstr "" msgid "RPM:" msgstr "" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -7704,11 +7704,6 @@ msgid "" "this page." msgstr "" -#: plinth/templates/index.html:46 -#, fuzzy -msgid "Configure »" -msgstr "پیکربندی" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -7733,7 +7728,7 @@ msgstr "" msgid "Source Code" msgstr "" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "" @@ -7768,6 +7763,10 @@ msgid "" "%(interface_list)s" msgstr "" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 #, fuzzy #| msgid "No certficate" @@ -7801,15 +7800,15 @@ msgid "" "your router. You should forward the following ports for %(service_name)s:" msgstr "" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 msgid "Protocol" msgstr "" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, fuzzy, python-format #| msgid "%(box_name)s Setup" msgid "To %(box_name)s Ports" @@ -7863,6 +7862,19 @@ msgstr "" msgid "Gujarati" msgstr "" +#, fuzzy +#~| msgid "Show password" +#~ msgid "Show Ports" +#~ msgstr "رمز را نشان بده" + +#, fuzzy +#~ msgid "Learn more »" +#~ msgstr "بیشتر بدانید »" + +#, fuzzy +#~ msgid "Configure »" +#~ msgstr "پیکربندی" + #~ msgid "Show connection %(connection.name)s" #~ msgstr "اتصال 1%(connection.name)s را نشان بده" @@ -8097,10 +8109,6 @@ msgstr "" #~ msgid "chrony client in contact with servers" #~ msgstr "برنامهٔ NTP با سرورها در تماس است" -#, fuzzy -#~ msgid " Apps" -#~ msgstr "برنامه‌ها" - #, fuzzy #~| msgid "Invalid server name" #~ msgid "Invalid archive name" diff --git a/plinth/locale/fake/LC_MESSAGES/django.po b/plinth/locale/fake/LC_MESSAGES/django.po index f769645d5..f0c448432 100644 --- a/plinth/locale/fake/LC_MESSAGES/django.po +++ b/plinth/locale/fake/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Plinth 0.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: 2016-01-31 22:24+0530\n" "Last-Translator: Sunil Mohan Adapa \n" "Language-Team: Plinth Developers diaspora.%(domain_name)s " msgstr "" +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "CONFIGURATION" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1905,16 +1912,16 @@ msgid "About" msgstr "ABOUT" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 msgid "Status" msgstr "STATUS" @@ -2073,7 +2080,7 @@ msgstr "SERVICE DISCOVERY SERVER IS NOT RUNNING" msgid "Port {name} ({details}) unavailable for external networks" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -2086,46 +2093,40 @@ msgstr "" "YOU MAY RUN IT USING THE COMMAND 'SERVICE FIREWALLD START' OR IN CASE OF A " "SYSTEM WITH SYSTEMD 'SYSTEMCTL START FIREWALLD'." -#: plinth/modules/firewall/templates/firewall.html:28 -#, fuzzy -#| msgid "Port" -msgid "Show Ports" -msgstr "PORT" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "SERVICE/PORT" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "ENABLED" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "DISABLED" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "PERMITTED" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "PERMITTED (INTERNAL ONLY)" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "PERMITTED (EXTERNAL ONLY)" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "BLOCKED" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " @@ -2135,13 +2136,13 @@ msgstr "" "ALSO PERMITTED IN THE FIREWALL AND WHEN YOU DISABLE A SERVICE IT IS ALSO " "DISABLED IN THE FIREWALL." -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -2181,7 +2182,7 @@ msgid "" "modify it if necessary." msgstr "" -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "START SETUP" @@ -2288,41 +2289,41 @@ msgstr "" msgid "Git" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 #, fuzzy #| msgid "Create User" msgid "Manage Repositories" msgstr "CREATE USER" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 #, fuzzy #| msgid "Create User" msgid "Create repository" msgstr "CREATE USER" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 #, fuzzy #| msgid "Tor relay port available" msgid "No repositories available." msgstr "TOR RELAY PORT AVAILABLE" -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 -#, fuzzy, python-format -#| msgid "Delete user %(username)s" -msgid "Delete repository %(repo.name)s" -msgstr "DELETE USER %(username)s" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 -msgid "Cloning…" -msgstr "" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 #, fuzzy, python-format #| msgid "Go to site %(site)s" msgid "Go to repository %(repo.name)s" msgstr "GO TO SITE %(site)s" +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 +msgid "Cloning…" +msgstr "" + +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 +#, fuzzy, python-format +#| msgid "Delete user %(username)s" +msgid "Delete repository %(repo.name)s" +msgstr "DELETE USER %(username)s" + #: plinth/modules/gitweb/templates/gitweb_delete.html:12 #, fuzzy, python-format #| msgid "Delete Wiki or Blog %(name)s" @@ -2393,6 +2394,27 @@ msgid "Contribute" msgstr "" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, fuzzy, python-format +#| msgid "You are running Plinth version %(version)s." +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "YOU ARE RUNNING PLINTH VERSION %(version)s." + +#: plinth/modules/help/templates/help_about.html:23 +#, python-format +msgid "" +"There is a new %(box_name)s version available." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, fuzzy, python-format +#| msgid "%(box_name)s Setup" +msgid "%(box_name)s is up to date." +msgstr "%(box_name)s SETUP" + +#: plinth/modules/help/templates/help_about.html:35 #, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2411,7 +2433,7 @@ msgstr "" "AND A TOR RELAY, ON A DEVICE THAT CAN REPLACE YOUR WI-FI ROUTER, SO THAT " "YOUR DATA STAYS WITH YOU." -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2427,7 +2449,7 @@ msgstr "" "GIVING BACK POWER TO THE USERS OVER THEIR NETWORKS AND MACHINES, WE ARE " "RETURNING THE INTERNET TO ITS INTENDED PEER-TO-PEER ARCHITECTURE." -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2438,7 +2460,7 @@ msgstr "" "SERVICES; %(box_name)s AIMS TO BRING THEM ALL TOGETHER IN A CONVENIENT " "PACKAGE." -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the %(box_name)s WIKI." -#: plinth/modules/help/templates/help_about.html:60 -msgid "Learn more »" +#: plinth/modules/help/templates/help_about.html:78 +#, fuzzy +#| msgid "Learn more »" +msgid "Learn more" msgstr "LEARN MORE »" -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, fuzzy, python-format -#| msgid "You are running Plinth version %(version)s." -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "YOU ARE RUNNING PLINTH VERSION %(version)s." - -#: plinth/modules/help/templates/help_about.html:69 -#, python-format -msgid "" -"There is a new %(box_name)s version available." -msgstr "" - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, fuzzy, python-format -#| msgid "%(box_name)s Setup" -msgid "%(box_name)s is up to date." -msgstr "%(box_name)s SETUP" - #: plinth/modules/help/templates/help_base.html:21 #: plinth/modules/help/templates/help_index.html:61 #, python-format @@ -2537,7 +2540,7 @@ msgid "Thank you!" msgstr "" #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 msgid "Help" msgstr "HELP" @@ -2585,7 +2588,7 @@ msgstr "" "oftc.net/?randomnick=1&channels=freedombox&prompt=1\\\"> #FREEDOMBOX " "CHANNEL USING THE IRC WEB INTERFACE." -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 #, fuzzy #| msgid "{box_name} Manual" msgid "Download as PDF" @@ -2790,16 +2793,16 @@ msgstr "CREATE WIKI OR BLOG" msgid "No wikis or blogs available." msgstr "NO WIKIS OR BLOGS AVAILABLE." -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "DELETE SITE %(site)s" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "GO TO SITE %(site)s" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "DELETE SITE %(site)s" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2898,8 +2901,8 @@ msgstr "" msgid "Chat Client" msgstr "IRC CLIENT (QUASSEL)" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "" @@ -2955,71 +2958,71 @@ msgstr "CERTIFICATES (LET'S ENCRYPT)" msgid "Certificates" msgstr "CERTIFICATE STATUS" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 msgid "Domain" msgstr "DOMAIN" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "CERTIFICATE STATUS" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "WEBSITE SECURITY" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 msgid "Actions" msgstr "ACTIONS" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, fuzzy, python-format #| msgid "Expires on %(expiry_date)s" msgid "Valid, expires on %(expiry_date)s" msgstr "EXPIRES ON %(expiry_date)s" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 #, fuzzy #| msgid "Revoke" msgid "Revoked" msgstr "REVOKE" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, fuzzy, python-format #| msgid "Expires on %(expiry_date)s" msgid "Expired on %(expiry_date)s" msgstr "EXPIRES ON %(expiry_date)s" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 #, fuzzy #| msgid "Invalid kite name" msgid "Invalid test certificate" msgstr "INVALID KITE NAME" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 #, fuzzy #| msgid "No certficate" msgid "No certificate" msgstr "NO CERTFICATE" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "RE-OBTAIN" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "REVOKE" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "OBTAIN" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, python-format msgid "" "No domains have been configured. Configure " @@ -3103,12 +3106,6 @@ msgstr "" msgid "Element" msgstr "" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "CONFIGURATION" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -3204,61 +3201,61 @@ msgstr "" msgid "Wiki" msgstr "" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 #, fuzzy #| msgid "Administrator Account" msgid "Administrator Password" msgstr "ADMINISTRATOR ACCOUNT" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." msgstr "" -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 #, fuzzy #| msgid "Service" msgid "Server URL" msgstr "SERVICE" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." msgstr "" -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 #, fuzzy #| msgid "Applications" msgid "Enable public registrations" msgstr "APPLICATIONS" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." msgstr "" -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 #, fuzzy #| msgid "Enable reStore" msgid "Enable private mode" msgstr "ENABLE RESTORE" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 msgid "" "If enabled, access will be restricted. Only people who have accounts can " "read/write to the wiki. Public registrations will also be disabled." msgstr "" -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 #, fuzzy #| msgid "Default" msgid "Default Skin" msgstr "DEFAULT" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -3368,13 +3365,13 @@ msgstr "ENABLE PAGEKITE" msgid "When disabled, players cannot die or receive damage of any kind." msgstr "" -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "ADDRESS" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "PORT" @@ -3576,131 +3573,130 @@ msgstr "" msgid "Monkeysphere" msgstr "MONKEYSPHERE" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "PUBLISHING KEY TO KEYSERVER..." -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "CANCEL" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "SERVICE" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 #, fuzzy #| msgid "Domain" msgid "Domains" msgstr "DOMAIN" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 #, fuzzy #| msgid "GPG Fingerprint" msgid "OpenPGP Fingerprint" msgstr "GPG FINGERPRINT" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 #, fuzzy #| msgid "Secure Shell (SSH)" msgid "Secure Shell" msgstr "SECURE SHELL (SSH)" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 #, fuzzy #| msgid "Ethernet" msgid "Other" msgstr "ETHERNET" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 msgid "-" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "PUBLISH KEY" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 #, fuzzy #| msgid "Domain" msgid "Add Domains" msgstr "DOMAIN" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 #, fuzzy #| msgid "SSH Keys" msgid "SSH Key Type" msgstr "SSH KEYS" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 #, fuzzy #| msgid "SSH Keys" msgid "SSH Key Size" msgstr "SSH KEYS" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 #, fuzzy #| msgid "GPG Fingerprint" msgid "SSH Fingerprint" msgstr "GPG FINGERPRINT" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 #, fuzzy #| msgid "Enable Subdomains" msgid "Available Domains" msgstr "ENABLE SUBDOMAINS" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 #, fuzzy #| msgid "Domain" msgid "Added Domains" msgstr "DOMAIN" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 #, fuzzy #| msgid "Download directory" msgid "Download the key" msgstr "DOWNLOAD DIRECTORY" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 #, fuzzy #| msgid "Published key to keyserver." msgid "Send the key back to the keyservers" @@ -3801,7 +3797,7 @@ msgstr "" msgid "All web apps" msgstr "" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 #, fuzzy #| msgid "Service" msgid "Services" @@ -3898,8 +3894,8 @@ msgstr "" "BE USED." #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "GATEWAY" @@ -3997,7 +3993,7 @@ msgid "-- select --" msgstr "-- SELECT --" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 msgid "SSID" msgstr "SSID" @@ -4006,7 +4002,7 @@ msgid "The visible name of the network." msgstr "THE VISIBLE NAME OF THE NETWORK." #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "MODE" @@ -4035,7 +4031,7 @@ msgid "B/G (2.4 GHz)" msgstr "" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 msgid "Channel" msgstr "CHANNEL" @@ -4192,158 +4188,158 @@ msgid "" "to be reminded later. Some of the other configuration steps may fail.

" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "EDIT CONNECTION" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "EDIT" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "DEACTIVATE" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "ACTIVATE" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "DELETE CONNECTION" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "CONNECTION" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "PRIMARY CONNECTION" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "YES" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "DEVICE" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "STATE" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "STATE REASON" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 msgid "MAC address" msgstr "MAC ADDRESS" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 msgid "Interface" msgstr "INTERFACE" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "DESCRIPTION" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "PHYSICAL LINK" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "LINK STATE" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "CABLE IS CONNECTED" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 msgid "please check cable" msgstr "PLEASE CHECK CABLE" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "SPEED" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "%(ethernet_speed)s MBIT/s" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "%(wireless_bitrate)s MBIT/s" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "SIGNAL STRENGTH" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "IPV4" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "METHOD" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "IP ADDRESS" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "DNS SERVER" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "DEFAULT" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "IPV6" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "THIS CONNECTION IS NOT ACTIVE." -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "SECURITY" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "FIREWALL ZONE" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 msgid "" "This interface should be connected to a local network/machine. If you " "connect this interface to a public network, services meant to be available " @@ -4353,8 +4349,8 @@ msgstr "" "CONNECT THIS INTERFACE TO A PUBLIC NETWORK, SERVICES MEANT TO BE AVAILABLE " "ONLY INTERNALLY WILL BECOME AVAILABLE EXTERNALLY. THIS IS A SECURITY RISK." -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 msgid "" "This interface should receive your Internet connection. If you connect it to " "a local network/machine, many services meant to available only internally " @@ -4364,13 +4360,13 @@ msgstr "" "YOUR A LOCAL NETWORK/MACHINE, MANY SERVICES MEANT TO AVAILABLE ONLY " "INTERNALLY WILL NOT BE AVAILABLE." -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "EXTERNAL" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -4391,40 +4387,40 @@ msgstr "DELETE CONNECTION" msgid "Delete connection %(name)s permanently?" msgstr "DELETE CONNECTION %(name)s PERMANENTLY?" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "INTERNET" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 msgid "Spacing" msgstr "SPACING" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "ETHERNET" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "WI-FI" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "SHOW CONNECTION %(name)s" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "INTERNAL" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "COMPUTER" @@ -4452,19 +4448,19 @@ msgstr "NEARBY WI-FI NETWORKS" msgid "Add Connection" msgstr "ADD CONNECTION" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "DELETE CONNECTION %(name)s" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "ACTIVE" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "INACTIVE" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "DELETE CONNECTION %(name)s" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "CREATE..." @@ -4490,8 +4486,8 @@ msgstr "" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "NEXT" @@ -4580,7 +4576,7 @@ msgid "" "are no other devices on the network." msgstr "" -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -5140,11 +5136,11 @@ msgstr "PUBLIC VISIBILITY (PAGEKITE)" msgid "PageKite Domain" msgstr "PAGEKITE ACCOUNT" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 msgid "Server domain" msgstr "SERVER DOMAIN" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " "pagekite.net server." @@ -5152,31 +5148,31 @@ msgstr "" "SELECT YOUR PAGEKITE SERVER. SET \"PAGEKITE.NET\" TO USE THE DEFAULT " "PAGEKITE.NET SERVER." -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "SERVER PORT" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "PORT OF YOUR PAGEKITE SERVER (DEFAULT: 80)" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "KITE NAME" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "EXAMPLE: MYBOX.PAGEKITE.ME" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "INVALID KITE NAME" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "KITE SECRET" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." @@ -5184,27 +5180,27 @@ msgstr "" "A SECRET ASSOCIATED WITH THE KITE OR THE DEFAULT SECRET FOR YOUR ACCOUNT IF " "NO SECRET IS SET ON THE KITE." -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "PROTOCOL" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "EXTERNAL (FRONTEND) PORT" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "INTERNAL (FREEDOMBOX) PORT" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "ENABLE SUBDOMAINS" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 msgid "Deleted custom service" msgstr "DELETED CUSTOM SERVICE" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 #, fuzzy #| msgid "" #| "This service is available as a standard service. Please use the " @@ -5214,31 +5210,31 @@ msgstr "" "THIS SERVICE IS AVAILABLE AS A STANDARD SERVICE. PLEASE USE THE \"STANDARD " "SERVICES\" PAGE TO ENABLE IT. " -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 msgid "Added custom service" msgstr "ADDED CUSTOM SERVICE" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "THIS SERVICE ALREADY EXISTS" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 msgid "Custom Services" msgstr "CUSTOM SERVICES" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 #, fuzzy #| msgid "Custom Services" msgid "Add Custom Service" msgstr "CUSTOM SERVICES" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "CONNECTED TO %(backend_host)s:%(backend_port)s" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "DELETE THIS SERVICE" @@ -5327,13 +5323,18 @@ msgid "" "finished before shutting down or restarting." msgstr "" -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" -msgstr "RESTART »" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +#, fuzzy +#| msgid "Restart Now" +msgid "Restart" +msgstr "RESTART NOW" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" -msgstr "SHUT DOWN »" +#, fuzzy +#| msgid "Shut Down Now" +msgid "Shut Down" +msgstr "SHUT DOWN NOW" #: plinth/modules/power/templates/power_restart.html:17 msgid "" @@ -5704,23 +5705,23 @@ msgstr "" msgid "Dolphin" msgstr "" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 #, fuzzy #| msgid "Add Service" msgid "Shares" msgstr "ADD SERVICE" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 msgid "" "Note: Only specially created directories will be shared on selected disks, " "not the whole disk." msgstr "" -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 msgid "VFAT partitions are not supported" msgstr "" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the users module page." msgstr "" -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 msgid "Users who can currently access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 msgid "" "Users needing to re-enter their password on the password change page to " "access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 #, fuzzy #| msgid "Enable Subdomains" msgid "Unavailable Shares" msgstr "ENABLE SUBDOMAINS" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." msgstr "" -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 #, fuzzy #| msgid "Kite name" msgid "Share name" msgstr "KITE NAME" -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 #, fuzzy #| msgid "Actions" msgid "Action" @@ -5886,27 +5887,27 @@ msgid "" "services." msgstr "" -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 #, fuzzy #| msgid "Security" msgid "Show security report" msgstr "SECURITY" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "" -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5952,47 +5953,47 @@ msgid "" "running." msgstr "" -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 #, fuzzy #| msgid "Name" msgid "App Name" msgstr "NAME" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 msgid "Current Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 msgid "Past Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 #, fuzzy #| msgid "Blocked" msgid "Sandboxed" msgstr "BLOCKED" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 #, fuzzy #| msgid "Blocked" msgid "Sandbox Coverage" msgstr "BLOCKED" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 msgid "N/A" msgstr "" -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 #, fuzzy #| msgid "yes" msgid "Yes" msgstr "YES" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 msgid "No" msgstr "" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 #, fuzzy #| msgid "Tor is not running" msgid "Not running" @@ -6158,32 +6159,32 @@ msgstr "THIS SERVICE ALREADY EXISTS" msgid "Shares should be either public or shared with at least one group" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 #, fuzzy #| msgid "Add Service" msgid "Add share" msgstr "ADD SERVICE" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "" -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 msgid "Shared Over" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 #, fuzzy #| msgid "Groups" msgid "With Groups" msgstr "GROUPS" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "" @@ -6327,45 +6328,45 @@ msgstr "" msgid "Delete the following snapshots permanently?" msgstr "DELETE USER PERMANENTLY?" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 #, fuzzy #| msgid "Delete %(name)s" msgid "Delete Snapshots" msgstr "DELETE %(name)s" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 #, fuzzy #| msgid "Create User" msgid "Create Snapshot" msgstr "CREATE USER" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 msgid "will be used at next boot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "" @@ -6388,7 +6389,7 @@ msgid "" "the newly created snapshot." msgstr "" -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "" @@ -6488,11 +6489,11 @@ msgid "" "client matches one of these fingerprints." msgstr "" -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 #, fuzzy #| msgid "GPG Fingerprint" msgid "Fingerprint" @@ -6684,29 +6685,29 @@ msgstr "ADD SERVICE" msgid "Other directory (specify below)" msgstr "" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 #, fuzzy #| msgid "The following is the current status:" msgid "The following storage devices are in use:" msgstr "THE FOLLOWING IS THE CURRENT STATUS:" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 msgid "Used" msgstr "" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -6714,13 +6715,13 @@ msgid "" "will provide you additional free space to store your files." msgstr "" -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -6832,29 +6833,29 @@ msgstr "" msgid "Local introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 #, fuzzy #| msgid "Name" msgid "Pet Name" msgstr "NAME" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 #, fuzzy #| msgid "Address" msgid "Add" msgstr "ADDRESS" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "" @@ -7026,23 +7027,23 @@ msgstr "" msgid "Tor configuration is being updated" msgstr "TOR CONFIGURATION IS BEING UPDATED" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 #, fuzzy #| msgid "Hidden Service" msgid "Onion Service" msgstr "HIDDEN SERVICE" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 #, fuzzy #| msgid "Port" msgid "Ports" msgstr "PORT" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 msgid "Relay" msgstr "" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, fuzzy, python-format #| msgid "" #| "Your %(box_name)s is configured as a Tor bridge with obfsproxy, so it can " @@ -7141,7 +7142,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 #, fuzzy @@ -7184,7 +7185,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "" @@ -7204,11 +7205,11 @@ msgid "" "cannot be deactivated." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 msgid "Updating, please wait..." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 #, fuzzy #| msgid "" @@ -7226,7 +7227,7 @@ msgstr "" "OTHER PACKAGES. DURING THE UPGRADE, THIS WEB INTERFACE MAY BE TEMPORARILY " "UNAVAILABLE AND SHOW AN ERROR. REFRESH THE PAGE TO CONTINUE." -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, fuzzy, python-format #| msgid "%(box_name)s Setup" msgid "" @@ -7253,34 +7254,34 @@ msgstr "" msgid "Dismiss" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, python-format msgid "There is a new %(box_name)s version available." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 #, fuzzy #| msgid "FreedomBox Manual" msgid "Your Freedombox needs an update!" msgstr "FREEDOMBOX MANUAL" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -7288,19 +7289,19 @@ msgid "" "\"%(snapshot_url)s\">Storage Snapshots before continuing." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 #, fuzzy #| msgid "Last update" msgid "Manual Update" msgstr "LAST UPDATE" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 #, fuzzy #| msgid "Update URL" msgid "Update now" msgstr "UPDATE URL" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 #, fuzzy #| msgid "" #| "Depending on the number of packages to install, this may take a long time " @@ -7317,7 +7318,7 @@ msgstr "" "OTHER PACKAGES. DURING THE UPGRADE, THIS WEB INTERFACE MAY BE TEMPORARILY " "UNAVAILABLE AND SHOW AN ERROR. REFRESH THE PAGE TO CONTINUE." -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 msgid "Show recent update logs" msgstr "" @@ -7521,8 +7522,8 @@ msgstr "SAVE PASSWORD" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "CREATE USER" @@ -7582,21 +7583,21 @@ msgid "" "step." msgstr "" -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "USERS" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "DELETE USER %(username)s" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "EDIT USER %(username)s" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "DELETE USER %(username)s" + #: plinth/modules/users/templates/users_update.html:11 #, python-format msgid "Edit User %(username)s" @@ -7674,8 +7675,8 @@ msgstr "INVALID KITE NAME" #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 #, fuzzy #| msgid "Publish Key" msgid "Public Key" @@ -7766,7 +7767,7 @@ msgid "Allowed IPs" msgstr "" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 #, fuzzy #| msgid "Create Connection" msgid "Last Connected Time" @@ -7777,49 +7778,49 @@ msgstr "CREATE CONNECTION" msgid "No peers configured to connect to this %(box_name)s yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, python-format msgid "Public key for this %(box_name)s:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 msgid "Not configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 msgid "Add a new peer" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 #, fuzzy #| msgid "IRC Client (Quassel)" msgid "As a Client" msgstr "IRC CLIENT (QUASSEL)" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 #, fuzzy #| msgid "Add Connection" @@ -7859,44 +7860,44 @@ msgid "" "is configured with the following information." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 #, fuzzy #| msgid "Server domain" msgid "Server endpoints:" msgstr "SERVER DOMAIN" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 #, fuzzy #| msgid "Server port" msgid "Server public key:" msgstr "SERVER PORT" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "" @@ -7908,17 +7909,17 @@ msgid "" "public key and IP address." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 #, fuzzy #| msgid "Server domain" msgid "Server endpoint:" msgstr "SERVER DOMAIN" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "" @@ -8101,56 +8102,62 @@ msgstr "INSTALLATION" msgid "Service %(service_name)s is not running." msgstr "SERVICE DISCOVERY SERVER IS NOT RUNNING" -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, fuzzy, python-format #| msgid "Plinth administrative interface for the %(box_name)s" msgid "Core functionality and web interface for %(box_name)s" msgstr "PLINTH ADMINISTRATIVE INTERFACE FOR THE %(box_name)s" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" -msgstr "TOGGLE NAVIGATION" +#: plinth/templates/base.html:107 +msgid " Home" +msgstr "" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +#, fuzzy +#| msgid "Apps" +msgid " Apps" +msgstr "APPS" + +#: plinth/templates/base.html:119 msgid "Apps" msgstr "APPS" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +#, fuzzy +#| msgid "System" +msgid " System" +msgstr "SYSTEM" + +#: plinth/templates/base.html:128 msgid "System" msgstr "SYSTEM" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "CHANGE PASSWORD" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -#, fuzzy -#| msgid "Restart Now" -msgid "Restart" -msgstr "RESTART NOW" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 #, fuzzy #| msgid "Shut Down Now" msgid "Shut down" msgstr "SHUT DOWN NOW" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "LOG OUT" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 #, fuzzy #| msgid "Language" msgid "Select language" msgstr "LANGUAGE" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "LOG IN" @@ -8222,7 +8229,7 @@ msgstr "" msgid "RPM:" msgstr "" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -8236,12 +8243,6 @@ msgid "" "this page." msgstr "" -#: plinth/templates/index.html:46 -#, fuzzy -#| msgid "Configure" -msgid "Configure »" -msgstr "CONFIGURE" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -8266,7 +8267,7 @@ msgstr "" msgid "Source Code" msgstr "" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "" @@ -8303,6 +8304,10 @@ msgid "" "%(interface_list)s" msgstr "" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 #, fuzzy #| msgid "No certficate" @@ -8338,17 +8343,17 @@ msgid "" "your router. You should forward the following ports for %(service_name)s:" msgstr "" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 #, fuzzy #| msgid "protocol" msgid "Protocol" msgstr "PROTOCOL" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, fuzzy, python-format #| msgid "%(box_name)s Setup" msgid "To %(box_name)s Ports" @@ -8404,6 +8409,28 @@ msgstr "%(percentage)s%% COMPLETE" msgid "Gujarati" msgstr "" +#, fuzzy +#~| msgid "Port" +#~ msgid "Show Ports" +#~ msgstr "PORT" + +#~ msgid "Learn more »" +#~ msgstr "LEARN MORE »" + +#~ msgid "Restart »" +#~ msgstr "RESTART »" + +#~ msgid "Shut Down »" +#~ msgstr "SHUT DOWN »" + +#~ msgid "Toggle navigation" +#~ msgstr "TOGGLE NAVIGATION" + +#, fuzzy +#~| msgid "Configure" +#~ msgid "Configure »" +#~ msgstr "CONFIGURE" + #~ msgid "Show connection %(connection.name)s" #~ msgstr "SHOW CONNECTION %(connection.name)s" @@ -8853,16 +8880,6 @@ msgstr "" #~ msgid "chrony client in contact with servers" #~ msgstr "NTP CLIENT IN CONTACT WITH SERVERS" -#, fuzzy -#~| msgid "Apps" -#~ msgid " Apps" -#~ msgstr "APPS" - -#, fuzzy -#~| msgid "System" -#~ msgid " System" -#~ msgstr "SYSTEM" - #, fuzzy #~| msgid "Invalid server name" #~ msgid "Invalid archive name" diff --git a/plinth/locale/fr/LC_MESSAGES/django.po b/plinth/locale/fr/LC_MESSAGES/django.po index d383017db..5a02d33c3 100644 --- a/plinth/locale/fr/LC_MESSAGES/django.po +++ b/plinth/locale/fr/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FreedomBox UI\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: 2020-12-10 15:29+0000\n" "Last-Translator: Thomas Vincent \n" "Language-Team: French diaspora." "%(domain_name)s" +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "Configuration" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1825,16 +1832,16 @@ msgid "About" msgstr "À propos" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 msgid "Status" msgstr "État" @@ -1991,7 +1998,7 @@ msgstr "Port {name} ({details}) disponible pour les réseaux externes" msgid "Port {name} ({details}) unavailable for external networks" msgstr "Port {name} ({details}) non disponible pour les réseaux externes" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -2005,44 +2012,40 @@ msgstr "" "utilisant la commande « service firewalld start » ou dans le cas d’un " "système avec systemd, « systemctl start firewalld »." -#: plinth/modules/firewall/templates/firewall.html:28 -msgid "Show Ports" -msgstr "Afficher les ports" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "Service/Port" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "Activé" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "Désactivé" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "Permis" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "Permis (en interne seulement)" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "Permis (en externe seulement)" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "Bloqué" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " @@ -2052,13 +2055,13 @@ msgstr "" "service, il est automatiquement permis par le pare-feu, si vous le " "désactivez, il est automatiquement désactivé dans le pare-feu." -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "Avancé" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -2104,7 +2107,7 @@ msgstr "" "Vous pouvez vérifier la configuration du " "réseau et la modifier si nécessaire." -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "Démarrer la configuration initiale" @@ -2208,33 +2211,33 @@ msgstr "Gitweb affiche cette branche comme branche par défaut." msgid "Git" msgstr "Git" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 msgid "Manage Repositories" msgstr "Gérer les dépôts" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 msgid "Create repository" msgstr "Créer un dépôt" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 msgid "No repositories available." msgstr "Aucun dépôt disponible." -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 -#, python-format -msgid "Delete repository %(repo.name)s" -msgstr "Supprimer le dépôt %(repo.name)s" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 -msgid "Cloning…" -msgstr "Clonage en cours…" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 #, python-format msgid "Go to repository %(repo.name)s" msgstr "Aller au dépôt %(repo.name)s" +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 +msgid "Cloning…" +msgstr "Clonage en cours…" + +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 +#, python-format +msgid "Delete repository %(repo.name)s" +msgstr "Supprimer le dépôt %(repo.name)s" + #: plinth/modules/gitweb/templates/gitweb_delete.html:12 #, python-format msgid "Delete Git Repository %(name)s" @@ -2292,6 +2295,28 @@ msgid "Contribute" msgstr "Participer" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, python-format +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "" +"Vous utilisez %(os_release)s et la version %(version)s de %(box_name)s." + +#: plinth/modules/help/templates/help_about.html:23 +#, python-format +msgid "" +"There is a new %(box_name)s version available." +msgstr "" +"Une nouvelle version de %(box_name)s est disponible." + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, python-format +msgid "%(box_name)s is up to date." +msgstr "Votre %(box_name)s est à jour." + +#: plinth/modules/help/templates/help_about.html:35 #, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2312,7 +2337,7 @@ msgstr "" "un relais Tor, le tout sur une machine qui peut également remplacer votre " "routeur Wi-Fi. De cette manière vos données restent sous votre contrôle." -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2331,7 +2356,7 @@ msgstr "" "nous ramenons Internet à l’architecture de pair à pair qui a présidé à sa " "conception." -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2342,7 +2367,7 @@ msgstr "" "distribuée de l’Internet. %(box_name)s vise à intégrer ces différents " "projets dans un système unique et facile à utiliser." -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the Wiki %(box_name)s." -#: plinth/modules/help/templates/help_about.html:60 -msgid "Learn more »" -msgstr "En savoir plus »" - -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, python-format -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "" -"Vous utilisez %(os_release)s et la version %(version)s de %(box_name)s." - -#: plinth/modules/help/templates/help_about.html:69 -#, python-format -msgid "" -"There is a new %(box_name)s version available." -msgstr "" -"Une nouvelle version de %(box_name)s est disponible." - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, python-format -msgid "%(box_name)s is up to date." -msgstr "Votre %(box_name)s est à jour." +#: plinth/modules/help/templates/help_about.html:78 +#, fuzzy +#| msgid "Learn more..." +msgid "Learn more" +msgstr "En savoir plus…" #: plinth/modules/help/templates/help_base.html:21 #: plinth/modules/help/templates/help_index.html:61 @@ -2464,7 +2469,7 @@ msgid "Thank you!" msgstr "Merci !" #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 msgid "Help" msgstr "Aide" @@ -2515,7 +2520,7 @@ msgstr "" "randomnick=1&channels=freedombox&prompt=1\"> #freedombox (en anglais) " "pour utiliser l’interface web IRC et demander de l’aide." -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 msgid "Download as PDF" msgstr "Télécharger au format PDF" @@ -2738,16 +2743,16 @@ msgstr "Créer un wiki ou un blogue" msgid "No wikis or blogs available." msgstr "Pas de wiki ou de blogue disponible." -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "Supprimer le site %(site)s" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "Aller au site %(site)s" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "Supprimer le site %(site)s" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2848,8 +2853,8 @@ msgstr "JSXC" msgid "Chat Client" msgstr "Client de discussion" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "Information de licence JavaScript" @@ -2890,63 +2895,63 @@ msgstr "Let's Encrypt" msgid "Certificates" msgstr "Certificats" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 msgid "Domain" msgstr "Domaine" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "État du certificat" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "Sécurité du site web" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 msgid "Actions" msgstr "Actions" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, python-format msgid "Valid, expires on %(expiry_date)s" msgstr "Valide, expire le %(expiry_date)s" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 msgid "Revoked" msgstr "Révoqué" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, python-format msgid "Expired on %(expiry_date)s" msgstr "Expiré le %(expiry_date)s" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 msgid "Invalid test certificate" msgstr "Certificat de test invalide" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "Invalide (%(reason)s)" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 msgid "No certificate" msgstr "Aucun certificat" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "Obtenir à nouveau" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "Révoquer" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "Obtenir" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, python-format msgid "" "No domains have been configured. Configure " @@ -3043,12 +3048,6 @@ msgstr "" msgid "Element" msgstr "Element" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "Configuration" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -3167,11 +3166,11 @@ msgstr "MediaWiki" msgid "Wiki" msgstr "Wiki" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 msgid "Administrator Password" msgstr "Mot de passe administrateur" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." @@ -3179,11 +3178,11 @@ msgstr "" "Définir un nouveau mot de passe pour le compte d'administration de MediaWiki " "(admin). Laissez ce champ vide pour conserver le mot de passe actuel." -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 msgid "Server URL" msgstr "URL du Serveur" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." @@ -3191,11 +3190,11 @@ msgstr "" "Utilisé par MediaWiki pour engendrer des URL qui pointent vers le wiki comme " "dans les pieds de pages, fils et courriels." -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 msgid "Enable public registrations" msgstr "Activer les inscriptions publiques" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." @@ -3203,11 +3202,11 @@ msgstr "" "Permet à n’importe qui depuis Internet de créer un compte sur votre instance " "MediaWiki." -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 msgid "Enable private mode" msgstr "Activer le mode privé" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 msgid "" "If enabled, access will be restricted. Only people who have accounts can " "read/write to the wiki. Public registrations will also be disabled." @@ -3216,11 +3215,11 @@ msgstr "" "lire/écrire sur ce wiki. Les inscriptions publiques sont également " "désactivées." -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 msgid "Default Skin" msgstr "Thème par défaut" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -3323,13 +3322,13 @@ msgstr "" "Si désactivé, les joueurs ne peuvent pas mourir ou être blessés d'aucune " "manière." -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "Adresse" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "Port" @@ -3517,95 +3516,94 @@ msgstr "" msgid "Monkeysphere" msgstr "Monkeysphere" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "Publication de la clef sur un serveur de clefs..." -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "Annuler" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "Service" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 msgid "Domains" msgstr "Domaines" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 msgid "OpenPGP Fingerprint" msgstr "Empreinte OpenPGP" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 msgid "Secure Shell" msgstr "Secure Shell" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 msgid "Other" msgstr "Autre" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "Afficher les détails de la clé %(fingerprint)s" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 msgid "-" msgstr "-" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "Importer la clé" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "Publier la clef" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 msgid "Add Domains" msgstr "Ajouter des domaines" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "Identités OpenPGP de l'utilisateur" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "Date de l'importation de la clé" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 msgid "SSH Key Type" msgstr "Type de clé SSH" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 msgid "SSH Key Size" msgstr "Taille de clé SSH" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 msgid "SSH Fingerprint" msgstr "Empreinte SSH" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "Fichier de la clé" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 msgid "Available Domains" msgstr "Domaines disponibles" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 msgid "Added Domains" msgstr "Domaines ajoutés" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" @@ -3614,15 +3612,15 @@ msgstr "" "signée en utilisant GnuPG grâce aux " "commandes suivantes :" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 msgid "Download the key" msgstr "Télécharger la clé" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "Signer la clé" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 msgid "Send the key back to the keyservers" msgstr "Retourner la clé sur les serveurs de clefs" @@ -3724,7 +3722,7 @@ msgstr "Tous" msgid "All web apps" msgstr "Toutes les applications web" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 msgid "Services" msgstr "Services" @@ -3824,8 +3822,8 @@ msgstr "" "l’adresse sera utilisé par défaut." #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "Passerelle" @@ -3913,7 +3911,7 @@ msgid "-- select --" msgstr "-- sélectionner --" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 msgid "SSID" msgstr "SSID" @@ -3922,7 +3920,7 @@ msgid "The visible name of the network." msgstr "Le nom visible du réseau." #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "Mode" @@ -3951,7 +3949,7 @@ msgid "B/G (2.4 GHz)" msgstr "B/G (2,4 GHz)" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 msgid "Channel" msgstr "Canal" @@ -4165,158 +4163,158 @@ msgstr "" "routeur et souhaitez vous faire rappeler de le configurer ultérieurement. Il " "se peut que d’autres étapes de configuration échouent.

" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "Modifier la connexion" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "Modifier" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "Désactiver" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "Activer" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "Supprimer la connexion" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "Connexion" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "Connexion primaire" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "oui" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "Périphérique" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "État" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "Explication sur l'état" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 msgid "MAC address" msgstr "Adresse MAC" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 msgid "Interface" msgstr "Interface" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "Description" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "Lien physique" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "État du lien" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "Le câble est connecté" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 msgid "please check cable" msgstr "Veuillez vérifier le câble" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "Vitesse" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "%(ethernet_speed)s Mbit/s" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "%(wireless_bitrate)s Mbit/s" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "Force du Signal" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "IPv4" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "Méthode" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "Adresse IP" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "Serveur DNS" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "Défaut" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "IPv6" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "Cette connexion n'est pas active." -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "Sécurité" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "Zone de pare-feu" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 msgid "" "This interface should be connected to a local network/machine. If you " "connect this interface to a public network, services meant to be available " @@ -4327,8 +4325,8 @@ msgstr "" "un usage interne seront rendus accessibles à l’extérieur. Ceci constitue une " "faille de sécurité." -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 msgid "" "This interface should receive your Internet connection. If you connect it to " "a local network/machine, many services meant to available only internally " @@ -4338,13 +4336,13 @@ msgstr "" "à une machine ou à un réseau local, de nombreux services conçus pour un " "usage interne ne seront pas disponibles." -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "Externe" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -4367,40 +4365,40 @@ msgstr "Supprimer Connexion" msgid "Delete connection %(name)s permanently?" msgstr "Supprimer la connexion %(name)s de façon permanente ?" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "Internet" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 msgid "Spacing" msgstr "Espacement" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "Ethernet" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "Wi-Fi" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "Détails de la connexion %(name)s" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "Interne" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "Machine" @@ -4426,19 +4424,19 @@ msgstr "Réseaux Wi-Fi à proximité" msgid "Add Connection" msgstr "Ajouter connexion" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "Supprimer la connexion %(name)s" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "Actif" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "Inactif" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "Supprimer la connexion %(name)s" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "Créer..." @@ -4467,8 +4465,8 @@ msgstr "Passer cette étape" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "Suivant" @@ -4572,7 +4570,7 @@ msgstr "" "Votre %(box_name)s est directement connectée à Internet et il n’y a pas " "d'autre appareil sur le réseau." -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -5088,11 +5086,11 @@ msgstr "Visibilité publique" msgid "PageKite Domain" msgstr "Domaine PageKite" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 msgid "Server domain" msgstr "Domaine du serveur" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " "pagekite.net server." @@ -5100,31 +5098,31 @@ msgstr "" "Choisissez votre serveur pagekite. Saisissez « pagekite.net » pour utiliser " "le serveur pagekite.net par défaut." -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "Port serveur" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "Port de votre serveur pagekite (par défaut : 80)" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "Nom Kite" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "Exemple : monpc.pagekite.me" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "Nom Kite invalide" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "Kite secret" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." @@ -5132,53 +5130,53 @@ msgstr "" "Un secret associé au kite ou le secret par défaut de votre compte si aucun " "secret n’est défini sur ce kite." -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "protocole" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "port externe (du frontal)" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "port interne (de la freedombox)" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "Activer les sous-domaines" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 msgid "Deleted custom service" msgstr "Service personnalisé supprimé" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 msgid "This service is already available as a standard service." msgstr "Ce service est déjà disponible sous forme standard." -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 msgid "Added custom service" msgstr "Service personnalisé ajouté" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "Ce service existe déjà" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 msgid "Custom Services" msgstr "Services Personnalisés" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 msgid "Add Custom Service" msgstr "Ajouter un service personnalisé" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "connecté à %(backend_host)s:%(backend_port)s" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "Supprimer ce service" @@ -5272,13 +5270,16 @@ msgstr "" "Une installation ou une mise à niveau est en cours. Il est préférable " "d’attendre la fin de l’opération avant d’éteindre ou de redémarrer." -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" -msgstr "Redémarrer »" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +msgid "Restart" +msgstr "Redémarrer" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" -msgstr "Éteindre »" +#, fuzzy +#| msgid "Shut down" +msgid "Shut Down" +msgstr "Éteindre" #: plinth/modules/power/templates/power_restart.html:17 msgid "" @@ -5651,11 +5652,11 @@ msgstr "Fichiers GNOME" msgid "Dolphin" msgstr "Dolphin" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 msgid "Shares" msgstr "Partages" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 msgid "" "Note: Only specially created directories will be shared on selected disks, " "not the whole disk." @@ -5663,11 +5664,11 @@ msgstr "" "Remarque : seuls les répertoires créés spécialement pour seront partagés sur " "les disques sélectionnés, et non pas les disques entiers." -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 msgid "VFAT partitions are not supported" msgstr "Les partitions formatées en VFAT ne sont pas gérées" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the stockage et configurer l’accès aux " "partages sur la page du module utilisateurs." -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 msgid "Users who can currently access group and home shares" msgstr "" "Utilisateurs pouvant accéder aux partages de groupe et de dossier personnel" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 msgid "" "Users needing to re-enter their password on the password change page to " "access group and home shares" @@ -5692,11 +5693,11 @@ msgstr "" "changement de mot de passe pour accéder aux partages de groupe et de dossier " "personnel" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 msgid "Unavailable Shares" msgstr "Partages indisponibles" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." @@ -5704,11 +5705,11 @@ msgstr "" "Partages configurés mais dont le disque n’est pas disponible. Le partage " "sera automatiquement réactivé lorsque le disque est rebranché." -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 msgid "Share name" msgstr "Nom du partage" -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 msgid "Action" msgstr "Action" @@ -5831,25 +5832,25 @@ msgstr "" "d'intrusion par force brute sur le serveur SSH ainsi que sur les autres " "services Internet protégés par mot de passe et actifs." -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 msgid "Show security report" msgstr "Afficher le rapport de sécurité" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "Mise à jour régulière des fonctionnalités" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "La mise à jour régulière des fonctionnalités est activée." -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5913,39 +5914,39 @@ msgstr "" "le service est isolé du reste du système. Il n’est affiché que lorsque le " "service est actif." -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 msgid "App Name" msgstr "Application" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 msgid "Current Vulnerabilities" msgstr "Failles actuelles" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 msgid "Past Vulnerabilities" msgstr "Anciennes failles" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 msgid "Sandboxed" msgstr "Isolé" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 msgid "Sandbox Coverage" msgstr "Couverture de l’isolation" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 msgid "N/A" msgstr "Non applicable" -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 msgid "Yes" msgstr "Oui" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 msgid "No" msgstr "Non" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 msgid "Not running" msgstr "Inactif" @@ -6112,28 +6113,28 @@ msgid "Shares should be either public or shared with at least one group" msgstr "" "Les partages peuvent être soit publics soit partagés avec au moins un groupe" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 msgid "Add share" msgstr "Ajouter un partage" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "Aucun partage actuellement configuré." -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "Chemin" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 msgid "Shared Over" msgstr "Partagé sur" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 msgid "With Groups" msgstr "Accessible aux groupes" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "Accès public" @@ -6279,41 +6280,41 @@ msgstr "" msgid "Delete the following snapshots permanently?" msgstr "Supprimer définitivement ces instantanés ?" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "Numéro" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "Date" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 msgid "Delete Snapshots" msgstr "Supprimer les instantanés" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 msgid "Create Snapshot" msgstr "Créer un instantané" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "Revenir en arrière" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 msgid "will be used at next boot" msgstr "sera utilisé au prochain démarrage" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "en utilisation" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "Revenir à l'instantané #%(number)s" @@ -6342,7 +6343,7 @@ msgstr "" "automatiquement. Vous aurez la possibilité d’annuler le retour arrière en " "revenant à l’instantané nouvellement créé." -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "Revenir à l'instantané #%(number)s" @@ -6440,11 +6441,11 @@ msgstr "" "Lors de la connexion au serveur, assurez-vous que l’empreinte affichée par " "le client SSH correspond bien à l'une de ces empreintes." -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "Algorithme" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 msgid "Fingerprint" msgstr "Empreinte" @@ -6628,27 +6629,27 @@ msgstr "Partage" msgid "Other directory (specify below)" msgstr "Autre répertoire (indiquer ci-dessous)" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 msgid "The following storage devices are in use:" msgstr "Les périphériques de stockage suivants sont utilisés :" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "Étiquette" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "Point de montage" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 msgid "Used" msgstr "Utilisé" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "Extension de la partition" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -6660,13 +6661,13 @@ msgstr "" "l’utiliser. Cela vous donnera de l’espace supplémentaire pour stocker vos " "fichiers." -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "Étendre la partition racine" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -6806,25 +6807,25 @@ msgstr "" msgid "Local introducer" msgstr "Introducteur local" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 msgid "Pet Name" msgstr "Surnom" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "Ajouter un nouvel introducteur" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 msgid "Add" msgstr "Ajouter" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "Introducteurs connectés" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "Supprimer" @@ -6996,19 +6997,19 @@ msgstr "Orbot : Mandataire utilisant Tor" msgid "Tor configuration is being updated" msgstr "La configuration de Tor est en cours de mise à jour" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 msgid "Onion Service" msgstr "Service Onion" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 msgid "Ports" msgstr "Ports" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 msgid "Relay" msgstr "Relais" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, python-format msgid "" "If your %(box_name)s is behind a router or firewall, you should make sure " @@ -7113,7 +7114,7 @@ msgstr "" "applications pour une courte période." #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 msgid "Update" @@ -7150,7 +7151,7 @@ msgstr "" "FreedomBox s'effectuera quand celle-ci sera disponible." #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "Activer la mise à jour régulière des fonctionnalités (recommandé)" @@ -7175,11 +7176,11 @@ msgstr "" "Remarque : Une fois activée, la mise à jour régulière des " "fonctionnalités ne peut plus être désactivée." -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 msgid "Updating, please wait..." msgstr "Mise à jour en cours, veuillez patienter…" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 msgid "" "This may take a long time to complete. During an update, " @@ -7191,7 +7192,7 @@ msgstr "" "indisponible ou d’afficher une erreur. Si cela se produit, rafraîchissez la " "page pour continuer." -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, python-format msgid "" "\n" @@ -7221,28 +7222,28 @@ msgstr "" msgid "Dismiss" msgstr "Fermer" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "Mise à jour en cours…" -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, python-format msgid "There is a new %(box_name)s version available." msgstr "Une nouvelle version de %(box_name)s est disponible." -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 msgid "Your Freedombox needs an update!" msgstr "Votre FreedomBox a besoin d’une mise à jour !" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" "Vous pouvez activer la mise à jour régulière des fonctionnalités. Cette " "option est recommandée." -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." @@ -7250,7 +7251,7 @@ msgstr "" "La mise à jour régulière des fonctionnalités n’est pas disponibles. Elle " "n’est sans doute pas nécessaire pour votre distribution." -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -7262,15 +7263,15 @@ msgstr "" "un instantané du système via la fonction d’Instantanés de disque avant de poursuivre." -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 msgid "Manual Update" msgstr "Mise à jour manuelle" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 msgid "Update now" msgstr "Lancer la mise à jour" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 msgid "" "This may take a long time to complete. During an update, " "you cannot install apps. Also, this web interface may be temporarily " @@ -7281,7 +7282,7 @@ msgstr "" "web risque aussi d’être temporairement indisponible ou d’afficher une " "erreur. Si cela se produit, rafraîchissez la page pour continuer." -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 msgid "Show recent update logs" msgstr "Afficher les derniers journaux de mises à jour" @@ -7479,8 +7480,8 @@ msgstr "Sauvegarder le mot de passe" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "Créer Utilisateur" @@ -7543,21 +7544,21 @@ msgstr "" "déjà d’un compte utilisable avec la %(box_name)s, vous pouvez passer cette " "étape." -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "Utilisateurs" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "Supprimer l'utilisateur %(username)s" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "Modifier l'utilisateur %(username)s" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "Supprimer l'utilisateur %(username)s" + #: plinth/modules/users/templates/users_update.html:11 #, python-format msgid "Edit User %(username)s" @@ -7640,8 +7641,8 @@ msgstr "Clé invalide." #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 msgid "Public Key" msgstr "Clé publique" @@ -7746,7 +7747,7 @@ msgid "Allowed IPs" msgstr "IP autorisées" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 msgid "Last Connected Time" msgstr "Date de dernière connexion" @@ -7757,47 +7758,47 @@ msgstr "" "Aucun pair n’a été configuré pour se connecter à la %(box_name)s pour " "l'instant." -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, python-format msgid "Public key for this %(box_name)s:" msgstr "Clé publique de cette %(box_name)s :" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 msgid "Not configured yet." msgstr "Pas encore configuré." -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 msgid "Add a new peer" msgstr "Ajouter un nouveau pair" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "Ajouter un client autorisé" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 msgid "As a Client" msgstr "En tant que client" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "Serveurs auxquels la %(box_name)s va se connecter :" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "Serveur distant" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 msgid "No connections to remote servers are configured yet." msgstr "Aucune connexion vers un serveur distant n’est encore configurée." -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 msgid "Add a new server" msgstr "Ajouter un nouveau serveur" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "Ajouter une connexion à un serveur" @@ -7831,40 +7832,40 @@ msgstr "" "Ce client sera autorisé à se connecter à la %(box_name)s. Assurez-vous que " "le client est configuré avec les informations suivantes." -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "Clé publique du client :" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "Adresse IP à utiliser pour le client :" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "Clé pré-partagée :" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 msgid "Server endpoints:" msgstr "Serveurs distants :" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 msgid "Server public key:" msgstr "Clé publique du serveur :" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "Données envoyées :" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "Données reçues :" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "Dernier « handshake  » :" @@ -7879,15 +7880,15 @@ msgstr "" "informations suivantes. Assurez-vous que ce serveur est configuré pour " "accepter la clé publique et l’adresse IP de votre %(box_name)s." -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 msgid "Server endpoint:" msgstr "Serveur distant :" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "Clé publique de cette machine :" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "Adresse IP de cette machine :" @@ -8033,49 +8034,59 @@ msgstr "Installation" msgid "Service %(service_name)s is not running." msgstr "Le service %(service_name)s n’est pas actif." -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, python-format msgid "Core functionality and web interface for %(box_name)s" msgstr "Fonctions de base et interface web de la %(box_name)s" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" -msgstr "Afficher/masquer le menu de navigation" +#: plinth/templates/base.html:107 +#, fuzzy +#| msgid "Home" +msgid " Home" +msgstr "Accueil" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "Accueil" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +#, fuzzy +#| msgid "Apps" +msgid " Apps" +msgstr "Applis" + +#: plinth/templates/base.html:119 msgid "Apps" msgstr "Applis" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +#, fuzzy +#| msgid "System" +msgid " System" +msgstr "Système" + +#: plinth/templates/base.html:128 msgid "System" msgstr "Système" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "Changer le mot de passe" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -msgid "Restart" -msgstr "Redémarrer" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 msgid "Shut down" msgstr "Éteindre" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "Se déconnecter" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 msgid "Select language" msgstr "Choisir la langue" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "S’identifier" @@ -8139,7 +8150,7 @@ msgstr "Homebrew :" msgid "RPM:" msgstr "RPM :" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -8157,10 +8168,6 @@ msgstr "" "Activez quelques applications pour ajouter des " "raccourcis sur cette page." -#: plinth/templates/index.html:46 -msgid "Configure »" -msgstr "Configurer »" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -8192,7 +8199,7 @@ msgstr "Page d’accueil du projet" msgid "Source Code" msgstr "Code source" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "Faire un don" @@ -8232,6 +8239,10 @@ msgstr "" "Actuellement les interfaces-réseau suivantes sont configurées comme " "internes : %(interface_list)s" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 msgid "Notifications" msgstr "Notifications" @@ -8272,15 +8283,15 @@ msgstr "" "mettre en place une redirection de ports sur votre routeur. Vous devriez " "rediriger les ports suivants pour %(service_name)s :" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 msgid "Protocol" msgstr "Protocole" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "Depuis les ports routeur/Internet (WAN)" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, python-format msgid "To %(box_name)s Ports" msgstr "Vers les ports %(box_name)s" @@ -8337,6 +8348,24 @@ msgstr "%(percentage)s%% effectué" msgid "Gujarati" msgstr "Gujarati" +#~ msgid "Show Ports" +#~ msgstr "Afficher les ports" + +#~ msgid "Learn more »" +#~ msgstr "En savoir plus »" + +#~ msgid "Restart »" +#~ msgstr "Redémarrer »" + +#~ msgid "Shut Down »" +#~ msgstr "Éteindre »" + +#~ msgid "Toggle navigation" +#~ msgstr "Afficher/masquer le menu de navigation" + +#~ msgid "Configure »" +#~ msgstr "Configurer »" + #~ msgid "Show connection %(connection.name)s" #~ msgstr "Détails de la connexion %(connection.name)s" @@ -9094,21 +9123,6 @@ msgstr "Gujarati" #~ "visitant le répertoire « .snapshots » sur le système de fichiers. Les " #~ "instantanés ne peuvent remplacer les sauvegardes." -#, fuzzy -#~| msgid "Home" -#~ msgid " Home" -#~ msgstr "Accueil" - -#, fuzzy -#~| msgid "Apps" -#~ msgid " Apps" -#~ msgstr "Applis" - -#, fuzzy -#~| msgid "System" -#~ msgid " System" -#~ msgstr "Système" - #~ msgid "Archive name" #~ msgstr "Nom de l'archive" diff --git a/plinth/locale/gl/LC_MESSAGES/django.po b/plinth/locale/gl/LC_MESSAGES/django.po index 124b714e5..aa9f81a38 100644 --- a/plinth/locale/gl/LC_MESSAGES/django.po +++ b/plinth/locale/gl/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: 2020-08-12 16:32+0000\n" "Last-Translator: Xosé M \n" "Language-Team: Galician diaspora.%(domain_name)s " msgstr "" +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1597,16 +1604,16 @@ msgid "About" msgstr "Acerca de" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 msgid "Status" msgstr "" @@ -1736,7 +1743,7 @@ msgstr "" msgid "Port {name} ({details}) unavailable for external networks" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -1745,57 +1752,53 @@ msgid "" "system with systemd 'systemctl start firewalld'." msgstr "" -#: plinth/modules/firewall/templates/firewall.html:28 -msgid "Show Ports" -msgstr "" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " "disabled in the firewall." msgstr "" -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -1833,7 +1836,7 @@ msgid "" "modify it if necessary." msgstr "" -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "" @@ -1926,31 +1929,31 @@ msgstr "" msgid "Git" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 msgid "Manage Repositories" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 msgid "Create repository" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 msgid "No repositories available." msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 #, python-format -msgid "Delete repository %(repo.name)s" +msgid "Go to repository %(repo.name)s" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 msgid "Cloning…" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 #, python-format -msgid "Go to repository %(repo.name)s" +msgid "Delete repository %(repo.name)s" msgstr "" #: plinth/modules/gitweb/templates/gitweb_delete.html:12 @@ -2012,6 +2015,25 @@ msgid "Contribute" msgstr "" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, python-format +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:23 +#, python-format +msgid "" +"There is a new %(box_name)s version available." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, python-format +msgid "%(box_name)s is up to date." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:35 #, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2023,7 +2045,7 @@ msgid "" "your data stays with you." msgstr "" -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2033,7 +2055,7 @@ msgid "" "returning the Internet to its intended peer-to-peer architecture." msgstr "" -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2041,34 +2063,15 @@ msgid "" "package." msgstr "" -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the %(box_name)s Wiki." msgstr "" -#: plinth/modules/help/templates/help_about.html:60 -msgid "Learn more »" -msgstr "" - -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, python-format -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "" - -#: plinth/modules/help/templates/help_about.html:69 -#, python-format -msgid "" -"There is a new %(box_name)s version available." -msgstr "" - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, python-format -msgid "%(box_name)s is up to date." +#: plinth/modules/help/templates/help_about.html:78 +msgid "Learn more" msgstr "" #: plinth/modules/help/templates/help_base.html:21 @@ -2134,7 +2137,7 @@ msgid "Thank you!" msgstr "" #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 msgid "Help" msgstr "" @@ -2170,7 +2173,7 @@ msgid "" "channel using the IRC web interface." msgstr "" -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 msgid "Download as PDF" msgstr "" @@ -2348,16 +2351,16 @@ msgstr "" msgid "No wikis or blogs available." msgstr "" -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2448,8 +2451,8 @@ msgstr "" msgid "Chat Client" msgstr "" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "" @@ -2479,63 +2482,63 @@ msgstr "" msgid "Certificates" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 msgid "Domain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 msgid "Actions" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, python-format msgid "Valid, expires on %(expiry_date)s" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 msgid "Revoked" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, python-format msgid "Expired on %(expiry_date)s" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 msgid "Invalid test certificate" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 msgid "No certificate" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, python-format msgid "" "No domains have been configured. Configure " @@ -2612,12 +2615,6 @@ msgstr "" msgid "Element" msgstr "" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -2702,53 +2699,53 @@ msgstr "" msgid "Wiki" msgstr "" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 msgid "Administrator Password" msgstr "" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." msgstr "" -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 #, fuzzy #| msgid "Web Server" msgid "Server URL" msgstr "Servidor web" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." msgstr "" -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 msgid "Enable public registrations" msgstr "" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." msgstr "" -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 msgid "Enable private mode" msgstr "" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 msgid "" "If enabled, access will be restricted. Only people who have accounts can " "read/write to the wiki. Public registrations will also be disabled." msgstr "" -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 msgid "Default Skin" msgstr "" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -2836,13 +2833,13 @@ msgstr "" msgid "When disabled, players cannot die or receive damage of any kind." msgstr "" -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "" @@ -2990,109 +2987,108 @@ msgstr "" msgid "Monkeysphere" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 msgid "Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 msgid "OpenPGP Fingerprint" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 msgid "Secure Shell" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 msgid "Other" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 msgid "-" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 msgid "Add Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 msgid "SSH Key Type" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 msgid "SSH Key Size" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 msgid "SSH Fingerprint" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 msgid "Available Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 msgid "Added Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 msgid "Download the key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 msgid "Send the key back to the keyservers" msgstr "" @@ -3180,7 +3176,7 @@ msgstr "" msgid "All web apps" msgstr "" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 #, fuzzy #| msgid "Service Discovery" msgid "Services" @@ -3271,8 +3267,8 @@ msgid "" msgstr "" #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "" @@ -3348,7 +3344,7 @@ msgid "-- select --" msgstr "" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 msgid "SSID" msgstr "" @@ -3357,7 +3353,7 @@ msgid "The visible name of the network." msgstr "" #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "" @@ -3386,7 +3382,7 @@ msgid "B/G (2.4 GHz)" msgstr "" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 msgid "Channel" msgstr "" @@ -3534,179 +3530,179 @@ msgid "" "to be reminded later. Some of the other configuration steps may fail.

" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 msgid "MAC address" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 msgid "Interface" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 msgid "please check cable" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 msgid "" "This interface should be connected to a local network/machine. If you " "connect this interface to a public network, services meant to be available " "only internally will become available externally. This is a security risk." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 msgid "" "This interface should receive your Internet connection. If you connect it to " "a local network/machine, many services meant to available only internally " "will not be available." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -3727,40 +3723,40 @@ msgstr "" msgid "Delete connection %(name)s permanently?" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 msgid "Spacing" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "" @@ -3786,19 +3782,19 @@ msgstr "" msgid "Add Connection" msgstr "" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "" @@ -3824,8 +3820,8 @@ msgstr "" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "" @@ -3909,7 +3905,7 @@ msgid "" "are no other devices on the network." msgstr "" -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -4351,93 +4347,93 @@ msgstr "" msgid "PageKite Domain" msgstr "" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 msgid "Server domain" msgstr "" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " "pagekite.net server." msgstr "" -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." msgstr "" -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 msgid "Deleted custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 msgid "This service is already available as a standard service." msgstr "" -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 msgid "Added custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 msgid "Custom Services" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 msgid "Add Custom Service" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "" @@ -4517,12 +4513,13 @@ msgid "" "finished before shutting down or restarting." msgstr "" -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +msgid "Restart" msgstr "" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" +msgid "Shut Down" msgstr "" #: plinth/modules/power/templates/power_restart.html:17 @@ -4808,21 +4805,21 @@ msgstr "" msgid "Dolphin" msgstr "" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 msgid "Shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 msgid "" "Note: Only specially created directories will be shared on selected disks, " "not the whole disk." msgstr "" -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 msgid "VFAT partitions are not supported" msgstr "" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the users module page." msgstr "" -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 msgid "Users who can currently access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 msgid "" "Users needing to re-enter their password on the password change page to " "access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 msgid "Unavailable Shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." msgstr "" -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 msgid "Share name" msgstr "" -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 msgid "Action" msgstr "" @@ -4966,25 +4963,25 @@ msgid "" "services." msgstr "" -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 msgid "Show security report" msgstr "" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "" -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5028,39 +5025,39 @@ msgid "" "running." msgstr "" -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 msgid "App Name" msgstr "" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 msgid "Current Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 msgid "Past Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 msgid "Sandboxed" msgstr "" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 msgid "Sandbox Coverage" msgstr "" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 msgid "N/A" msgstr "" -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 msgid "Yes" msgstr "" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 msgid "No" msgstr "" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 msgid "Not running" msgstr "" @@ -5201,28 +5198,28 @@ msgstr "" msgid "Shares should be either public or shared with at least one group" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 msgid "Add share" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "" -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 msgid "Shared Over" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 msgid "With Groups" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "" @@ -5346,41 +5343,41 @@ msgstr "" msgid "Delete the following snapshots permanently?" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 msgid "Delete Snapshots" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 msgid "Create Snapshot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 msgid "will be used at next boot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "" @@ -5403,7 +5400,7 @@ msgid "" "the newly created snapshot." msgstr "" -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "" @@ -5493,11 +5490,11 @@ msgid "" "client matches one of these fingerprints." msgstr "" -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 msgid "Fingerprint" msgstr "" @@ -5670,27 +5667,27 @@ msgstr "" msgid "Other directory (specify below)" msgstr "" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 msgid "The following storage devices are in use:" msgstr "" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 msgid "Used" msgstr "" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -5698,13 +5695,13 @@ msgid "" "will provide you additional free space to store your files." msgstr "" -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -5811,25 +5808,25 @@ msgstr "" msgid "Local introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 msgid "Pet Name" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 msgid "Add" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "" @@ -5973,19 +5970,19 @@ msgstr "" msgid "Tor configuration is being updated" msgstr "" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 msgid "Onion Service" msgstr "" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 msgid "Ports" msgstr "" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 msgid "Relay" msgstr "" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, python-format msgid "" "If your %(box_name)s is behind a router or firewall, you should make sure " @@ -6066,7 +6063,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 msgid "Update" @@ -6103,7 +6100,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "" @@ -6123,11 +6120,11 @@ msgid "" "cannot be deactivated." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 msgid "Updating, please wait..." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 msgid "" "This may take a long time to complete. During an update, " @@ -6135,7 +6132,7 @@ msgid "" "case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, python-format msgid "" "\n" @@ -6160,34 +6157,34 @@ msgstr "" msgid "Dismiss" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, python-format msgid "There is a new %(box_name)s version available." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 #, fuzzy #| msgid "FreedomBox" msgid "Your Freedombox needs an update!" msgstr "FreedomBox" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -6195,24 +6192,24 @@ msgid "" "\"%(snapshot_url)s\">Storage Snapshots before continuing." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 #, fuzzy #| msgid "Manual" msgid "Manual Update" msgstr "Manual" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 msgid "Update now" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 msgid "" "This may take a long time to complete. During an update, " "you cannot install apps. Also, this web interface may be temporarily " "unavailable and show an error. In that case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 msgid "Show recent update logs" msgstr "" @@ -6385,8 +6382,8 @@ msgstr "" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "" @@ -6439,21 +6436,21 @@ msgid "" "step." msgstr "" -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "" + #: plinth/modules/users/templates/users_update.html:11 #, python-format msgid "Edit User %(username)s" @@ -6527,8 +6524,8 @@ msgstr "" #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 msgid "Public Key" msgstr "" @@ -6615,7 +6612,7 @@ msgid "Allowed IPs" msgstr "" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 msgid "Last Connected Time" msgstr "" @@ -6624,47 +6621,47 @@ msgstr "" msgid "No peers configured to connect to this %(box_name)s yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, python-format msgid "Public key for this %(box_name)s:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 msgid "Not configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 msgid "Add a new peer" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 msgid "As a Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "" @@ -6696,40 +6693,40 @@ msgid "" "is configured with the following information." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 msgid "Server endpoints:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 msgid "Server public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "" @@ -6741,15 +6738,15 @@ msgid "" "public key and IP address." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 msgid "Server endpoint:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "" @@ -6885,49 +6882,53 @@ msgstr "" msgid "Service %(service_name)s is not running." msgstr "" -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, python-format msgid "Core functionality and web interface for %(box_name)s" msgstr "" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" +#: plinth/templates/base.html:107 +msgid " Home" msgstr "" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +msgid " Apps" +msgstr "" + +#: plinth/templates/base.html:119 msgid "Apps" msgstr "" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +msgid " System" +msgstr "" + +#: plinth/templates/base.html:128 msgid "System" msgstr "" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -msgid "Restart" -msgstr "" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 msgid "Shut down" msgstr "" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 msgid "Select language" msgstr "" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "" @@ -6991,7 +6992,7 @@ msgstr "" msgid "RPM:" msgstr "" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -7005,10 +7006,6 @@ msgid "" "this page." msgstr "" -#: plinth/templates/index.html:46 -msgid "Configure »" -msgstr "" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -7033,7 +7030,7 @@ msgstr "" msgid "Source Code" msgstr "" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "" @@ -7067,6 +7064,10 @@ msgid "" "%(interface_list)s" msgstr "" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 msgid "Notifications" msgstr "" @@ -7098,15 +7099,15 @@ msgid "" "your router. You should forward the following ports for %(service_name)s:" msgstr "" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 msgid "Protocol" msgstr "" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, python-format msgid "To %(box_name)s Ports" msgstr "" diff --git a/plinth/locale/gu/LC_MESSAGES/django.po b/plinth/locale/gu/LC_MESSAGES/django.po index 4d13cd197..e2a829c05 100644 --- a/plinth/locale/gu/LC_MESSAGES/django.po +++ b/plinth/locale/gu/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: 2018-02-05 18:37+0000\n" "Last-Translator: drashti kaushik \n" "Language-Team: Gujarati ઍક્સેસ " "કરી શકો છો.%(domain_name)s " +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "રૂપરેખાંકન" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1738,16 +1745,16 @@ msgid "About" msgstr "વિશે" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 msgid "Status" msgstr "સ્થિતિ" @@ -1907,7 +1914,7 @@ msgstr "" msgid "Port {name} ({details}) unavailable for external networks" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -1920,44 +1927,40 @@ msgstr "" "કરીને તેને ચલાવી શકો છો 'service firewalld start' અથવા systemd સાથે સિસ્ટમના " "કિસ્સામાં 'systemctl start firewalld'." -#: plinth/modules/firewall/templates/firewall.html:28 -msgid "Show Ports" -msgstr "પોર્ટ્સ બતાવો" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "સેવા/પોર્ટ" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "સક્ષમ કરેલું" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "અક્ષમ કરેલું" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "પરવાનગી છે" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "પરવાનગી છે (ફક્ત આંતરિક)" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "પરવાનગી છે (બાહ્ય માત્ર)" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "અવરોધિત" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " @@ -1966,13 +1969,13 @@ msgstr "" "ફાયરવૉલનું સંચાલન આપોઆપ છે. જ્યારે તમે સેવાને સક્ષમ કરો છો ત્યારે તેને ફાયરવૉલમાં પણ " "પરવાનગી છે અને જ્યારે તમે કોઈ સેવા અક્ષમ કરો છો ત્યારે તે ફાયરવૉલમાં પણ અક્ષમ થાય છે." -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -2012,7 +2015,7 @@ msgstr "" "તમે તપાસી શકો છો નેટવર્ક સેટઅપ અને જો જરૂરી હોય " "તો તેને સુધારો." -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "સેટઅપ પ્રારંભ કરો" @@ -2115,35 +2118,35 @@ msgstr "" msgid "Git" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 #, fuzzy #| msgid "Documentation" msgid "Manage Repositories" msgstr "દસ્તાવેજીકરણ" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 #, fuzzy #| msgid "Documentation" msgid "Create repository" msgstr "દસ્તાવેજીકરણ" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 msgid "No repositories available." msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 #, python-format -msgid "Delete repository %(repo.name)s" +msgid "Go to repository %(repo.name)s" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 msgid "Cloning…" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 #, python-format -msgid "Go to repository %(repo.name)s" +msgid "Delete repository %(repo.name)s" msgstr "" #: plinth/modules/gitweb/templates/gitweb_delete.html:12 @@ -2207,6 +2210,25 @@ msgid "Contribute" msgstr "" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, python-format +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:23 +#, python-format +msgid "" +"There is a new %(box_name)s version available." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, python-format +msgid "%(box_name)s is up to date." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:35 #, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2218,7 +2240,7 @@ msgid "" "your data stays with you." msgstr "" -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2228,7 +2250,7 @@ msgid "" "returning the Internet to its intended peer-to-peer architecture." msgstr "" -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2236,34 +2258,15 @@ msgid "" "package." msgstr "" -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the %(box_name)s Wiki." msgstr "" -#: plinth/modules/help/templates/help_about.html:60 -msgid "Learn more »" -msgstr "" - -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, python-format -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "" - -#: plinth/modules/help/templates/help_about.html:69 -#, python-format -msgid "" -"There is a new %(box_name)s version available." -msgstr "" - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, python-format -msgid "%(box_name)s is up to date." +#: plinth/modules/help/templates/help_about.html:78 +msgid "Learn more" msgstr "" #: plinth/modules/help/templates/help_base.html:21 @@ -2329,7 +2332,7 @@ msgid "Thank you!" msgstr "" #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 msgid "Help" msgstr "મદદ" @@ -2365,7 +2368,7 @@ msgid "" "channel using the IRC web interface." msgstr "" -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 #, fuzzy #| msgid "Download Manual" msgid "Download as PDF" @@ -2547,16 +2550,16 @@ msgstr "" msgid "No wikis or blogs available." msgstr "" -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2647,8 +2650,8 @@ msgstr "" msgid "Chat Client" msgstr "" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "" @@ -2678,63 +2681,63 @@ msgstr "" msgid "Certificates" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 msgid "Domain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 msgid "Actions" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, python-format msgid "Valid, expires on %(expiry_date)s" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 msgid "Revoked" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, python-format msgid "Expired on %(expiry_date)s" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 msgid "Invalid test certificate" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 msgid "No certificate" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, python-format msgid "" "No domains have been configured. Configure " @@ -2813,12 +2816,6 @@ msgstr "" msgid "Element" msgstr "" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "રૂપરેખાંકન" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -2905,55 +2902,55 @@ msgstr "" msgid "Wiki" msgstr "" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 msgid "Administrator Password" msgstr "" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." msgstr "" -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 msgid "Server URL" msgstr "" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." msgstr "" -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 #, fuzzy #| msgid "Enable application" msgid "Enable public registrations" msgstr "એપ્લીકેશનને પ્રસ્થાપિત કરો" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." msgstr "" -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 #, fuzzy #| msgid "Enable application" msgid "Enable private mode" msgstr "એપ્લીકેશનને પ્રસ્થાપિત કરો" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 msgid "" "If enabled, access will be restricted. Only people who have accounts can " "read/write to the wiki. Public registrations will also be disabled." msgstr "" -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 msgid "Default Skin" msgstr "" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -3051,13 +3048,13 @@ msgstr "" msgid "When disabled, players cannot die or receive damage of any kind." msgstr "" -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "" @@ -3207,109 +3204,108 @@ msgstr "" msgid "Monkeysphere" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 msgid "Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 msgid "OpenPGP Fingerprint" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 msgid "Secure Shell" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 msgid "Other" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 msgid "-" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 msgid "Add Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 msgid "SSH Key Type" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 msgid "SSH Key Size" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 msgid "SSH Fingerprint" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 msgid "Available Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 msgid "Added Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 msgid "Download the key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 msgid "Send the key back to the keyservers" msgstr "" @@ -3399,7 +3395,7 @@ msgstr "" msgid "All web apps" msgstr "" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 #, fuzzy #| msgid "Service Type" msgid "Services" @@ -3490,8 +3486,8 @@ msgid "" msgstr "" #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "" @@ -3567,7 +3563,7 @@ msgid "-- select --" msgstr "" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 msgid "SSID" msgstr "" @@ -3576,7 +3572,7 @@ msgid "The visible name of the network." msgstr "" #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "" @@ -3605,7 +3601,7 @@ msgid "B/G (2.4 GHz)" msgstr "" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 msgid "Channel" msgstr "" @@ -3756,179 +3752,179 @@ msgid "" "to be reminded later. Some of the other configuration steps may fail.

" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 msgid "MAC address" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 msgid "Interface" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 msgid "please check cable" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 msgid "" "This interface should be connected to a local network/machine. If you " "connect this interface to a public network, services meant to be available " "only internally will become available externally. This is a security risk." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 msgid "" "This interface should receive your Internet connection. If you connect it to " "a local network/machine, many services meant to available only internally " "will not be available." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -3949,40 +3945,40 @@ msgstr "" msgid "Delete connection %(name)s permanently?" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 msgid "Spacing" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "" @@ -4010,19 +4006,19 @@ msgstr "" msgid "Add Connection" msgstr "" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "" @@ -4048,8 +4044,8 @@ msgstr "" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "" @@ -4136,7 +4132,7 @@ msgid "" "are no other devices on the network." msgstr "" -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -4590,93 +4586,93 @@ msgstr "" msgid "PageKite Domain" msgstr "" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 msgid "Server domain" msgstr "" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " "pagekite.net server." msgstr "" -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." msgstr "" -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 msgid "Deleted custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 msgid "This service is already available as a standard service." msgstr "" -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 msgid "Added custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 msgid "Custom Services" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 msgid "Add Custom Service" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "" @@ -4758,12 +4754,13 @@ msgid "" "finished before shutting down or restarting." msgstr "" -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +msgid "Restart" msgstr "" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" +msgid "Shut Down" msgstr "" #: plinth/modules/power/templates/power_restart.html:17 @@ -5049,21 +5046,21 @@ msgstr "" msgid "Dolphin" msgstr "" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 msgid "Shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 msgid "" "Note: Only specially created directories will be shared on selected disks, " "not the whole disk." msgstr "" -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 msgid "VFAT partitions are not supported" msgstr "" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the users module page." msgstr "" -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 msgid "Users who can currently access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 msgid "" "Users needing to re-enter their password on the password change page to " "access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 msgid "Unavailable Shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." msgstr "" -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 msgid "Share name" msgstr "" -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 msgid "Action" msgstr "" @@ -5209,25 +5206,25 @@ msgid "" "services." msgstr "" -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 msgid "Show security report" msgstr "" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "" -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5271,39 +5268,39 @@ msgid "" "running." msgstr "" -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 msgid "App Name" msgstr "" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 msgid "Current Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 msgid "Past Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 msgid "Sandboxed" msgstr "" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 msgid "Sandbox Coverage" msgstr "" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 msgid "N/A" msgstr "" -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 msgid "Yes" msgstr "" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 msgid "No" msgstr "" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 msgid "Not running" msgstr "" @@ -5444,28 +5441,28 @@ msgstr "" msgid "Shares should be either public or shared with at least one group" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 msgid "Add share" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "" -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 msgid "Shared Over" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 msgid "With Groups" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "" @@ -5589,41 +5586,41 @@ msgstr "" msgid "Delete the following snapshots permanently?" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 msgid "Delete Snapshots" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 msgid "Create Snapshot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 msgid "will be used at next boot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "" @@ -5646,7 +5643,7 @@ msgid "" "the newly created snapshot." msgstr "" -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "" @@ -5741,11 +5738,11 @@ msgid "" "client matches one of these fingerprints." msgstr "" -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 msgid "Fingerprint" msgstr "" @@ -5920,27 +5917,27 @@ msgstr "" msgid "Other directory (specify below)" msgstr "" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 msgid "The following storage devices are in use:" msgstr "" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 msgid "Used" msgstr "" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -5948,13 +5945,13 @@ msgid "" "will provide you additional free space to store your files." msgstr "" -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -6061,25 +6058,25 @@ msgstr "" msgid "Local introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 msgid "Pet Name" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 msgid "Add" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "" @@ -6223,21 +6220,21 @@ msgstr "" msgid "Tor configuration is being updated" msgstr "" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 #, fuzzy #| msgid "Dynamic DNS Service" msgid "Onion Service" msgstr "ડાયનેમિક DNS સેવા" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 msgid "Ports" msgstr "" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 msgid "Relay" msgstr "" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, python-format msgid "" "If your %(box_name)s is behind a router or firewall, you should make sure " @@ -6322,7 +6319,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 msgid "Update" @@ -6363,7 +6360,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "" @@ -6383,11 +6380,11 @@ msgid "" "cannot be deactivated." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 msgid "Updating, please wait..." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 msgid "" "This may take a long time to complete. During an update, " @@ -6395,7 +6392,7 @@ msgid "" "case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, python-format msgid "" "\n" @@ -6420,34 +6417,34 @@ msgstr "" msgid "Dismiss" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, python-format msgid "There is a new %(box_name)s version available." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 #, fuzzy #| msgid "FreedomBox" msgid "Your Freedombox needs an update!" msgstr "ફ્રિડમબોક્ષ" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -6455,26 +6452,26 @@ msgid "" "\"%(snapshot_url)s\">Storage Snapshots before continuing." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 #, fuzzy #| msgid "Last update" msgid "Manual Update" msgstr "છેલ્લો સુધારો" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 #, fuzzy #| msgid "Update URL" msgid "Update now" msgstr "URL અપડેટ કરો" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 msgid "" "This may take a long time to complete. During an update, " "you cannot install apps. Also, this web interface may be temporarily " "unavailable and show an error. In that case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 msgid "Show recent update logs" msgstr "" @@ -6653,8 +6650,8 @@ msgstr "" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "" @@ -6707,21 +6704,21 @@ msgid "" "step." msgstr "" -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "" + #: plinth/modules/users/templates/users_update.html:11 #, python-format msgid "Edit User %(username)s" @@ -6797,8 +6794,8 @@ msgstr "અમાન્ય હોસ્ટનું નામ" #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 msgid "Public Key" msgstr "" @@ -6887,7 +6884,7 @@ msgid "Allowed IPs" msgstr "" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 msgid "Last Connected Time" msgstr "" @@ -6896,47 +6893,47 @@ msgstr "" msgid "No peers configured to connect to this %(box_name)s yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, python-format msgid "Public key for this %(box_name)s:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 msgid "Not configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 msgid "Add a new peer" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 msgid "As a Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "" @@ -6972,42 +6969,42 @@ msgid "" "is configured with the following information." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 #, fuzzy #| msgid "Server Administration" msgid "Server endpoints:" msgstr "સર્વર સંચાલન" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 msgid "Server public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "" @@ -7019,17 +7016,17 @@ msgid "" "public key and IP address." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 #, fuzzy #| msgid "Server Administration" msgid "Server endpoint:" msgstr "સર્વર સંચાલન" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "" @@ -7175,51 +7172,57 @@ msgstr "" msgid "Service %(service_name)s is not running." msgstr "" -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, python-format msgid "Core functionality and web interface for %(box_name)s" msgstr "" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" +#: plinth/templates/base.html:107 +msgid " Home" msgstr "" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +#, fuzzy +#| msgid "BitTorrent Web Client" +msgid " Apps" +msgstr "બીટ ટોરેન્ટ વેબ ક્લાયન્ટ" + +#: plinth/templates/base.html:119 msgid "Apps" msgstr "" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +msgid " System" +msgstr "" + +#: plinth/templates/base.html:128 msgid "System" msgstr "" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -msgid "Restart" -msgstr "" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 msgid "Shut down" msgstr "" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 #, fuzzy #| msgid "Language" msgid "Select language" msgstr "ભાષા" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "" @@ -7285,7 +7288,7 @@ msgstr "" msgid "RPM:" msgstr "" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -7299,10 +7302,6 @@ msgid "" "this page." msgstr "" -#: plinth/templates/index.html:46 -msgid "Configure »" -msgstr "" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -7327,7 +7326,7 @@ msgstr "" msgid "Source Code" msgstr "" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "" @@ -7361,6 +7360,10 @@ msgid "" "%(interface_list)s" msgstr "" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 #, fuzzy #| msgid "Configuration" @@ -7401,15 +7404,15 @@ msgid "" "your router. You should forward the following ports for %(service_name)s:" msgstr "" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 msgid "Protocol" msgstr "" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, python-format msgid "To %(box_name)s Ports" msgstr "" @@ -7462,6 +7465,9 @@ msgstr "" msgid "Gujarati" msgstr "" +#~ msgid "Show Ports" +#~ msgstr "પોર્ટ્સ બતાવો" + #, fuzzy #~| msgid "Domain Name" #~ msgid "Disk Name" @@ -7523,11 +7529,6 @@ msgstr "" #~ msgid "Currently only limited functionality is available." #~ msgstr "હાલમાં ફક્ત મર્યાદિત કાર્યક્ષમતા ઉપલબ્ધ છે." -#, fuzzy -#~| msgid "BitTorrent Web Client" -#~ msgid " Apps" -#~ msgstr "બીટ ટોરેન્ટ વેબ ક્લાયન્ટ" - #, fuzzy #~| msgid "Invalid server name" #~ msgid "Invalid archive name" diff --git a/plinth/locale/hi/LC_MESSAGES/django.po b/plinth/locale/hi/LC_MESSAGES/django.po index 0d72e1c33..11b79b14c 100644 --- a/plinth/locale/hi/LC_MESSAGES/django.po +++ b/plinth/locale/hi/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: 2020-04-03 20:11+0000\n" "Last-Translator: Allan Nordhøy \n" "Language-Team: Hindi diaspora.%(domain_name)s " +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "कॉन्फ़िगरेशन" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1827,16 +1834,16 @@ msgid "About" msgstr "के बारे में" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 msgid "Status" msgstr "स्थिति" @@ -1993,7 +2000,7 @@ msgstr "%(service_name)s सिर्फ आंतरिक नेट msgid "Port {name} ({details}) unavailable for external networks" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -2006,44 +2013,40 @@ msgstr "" "फायरवॉल शुरू' आदेश उपयेग कर या एक सिस्टमदि सिस्टम के साथ 'सिसटेमसिटिएल फायरवॉल शुरू' " "उपयेग कर." -#: plinth/modules/firewall/templates/firewall.html:28 -msgid "Show Ports" -msgstr "पोर्ट दिखाईये" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "सर्विस/पोर्ट" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "सक्षम किया गया है" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "अक्षम किया गया है" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "अनुमति दिया गया है" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "अनुमति दिया गया है (सिर्फ आंतरिक)" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "अनुमति दिया गया है (सिर्फ बाहरी)" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "अवरुद्ध" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " @@ -2052,13 +2055,13 @@ msgstr "" "फ़ायरवॉल की ऑपरेशन स्वचालित है. जब आप एक सेवा सक्षम करते है, फ़ायरवॉल में भी अनुमति है और " "जब एक सेवा अक्षम करते है, फ़ायरवॉल में भी अक्षम करेगा." -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -2103,7 +2106,7 @@ msgstr "" "आप नेटवर्क सेटअप जांचना चाह सकते है और अगर जरुरत " "हू, इससे बदलें." -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "सटअप शुरु करें" @@ -2214,41 +2217,41 @@ msgstr "" msgid "Git" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 #, fuzzy #| msgid "Create User" msgid "Manage Repositories" msgstr "यूसर बनाये" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 #, fuzzy #| msgid "Create User" msgid "Create repository" msgstr "यूसर बनाये" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 #, fuzzy #| msgid "Tor relay port available" msgid "No repositories available." msgstr "टोर रीले पोर्ट उपलब्ध है" -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 -#, fuzzy, python-format -#| msgid "Delete user %(username)s" -msgid "Delete repository %(repo.name)s" -msgstr "यूसर हटाइये %(username)s" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 -msgid "Cloning…" -msgstr "" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 #, fuzzy, python-format #| msgid "Go to site %(site)s" msgid "Go to repository %(repo.name)s" msgstr "साइट पर जाएं %(site)s" +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 +msgid "Cloning…" +msgstr "" + +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 +#, fuzzy, python-format +#| msgid "Delete user %(username)s" +msgid "Delete repository %(repo.name)s" +msgstr "यूसर हटाइये %(username)s" + #: plinth/modules/gitweb/templates/gitweb_delete.html:12 #, fuzzy, python-format #| msgid "Delete Wiki or Blog %(name)s" @@ -2315,6 +2318,26 @@ msgid "Contribute" msgstr "" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, python-format +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "आप %(os_release)s चल रहे है और %(box_name)s संस्करण %(version)s." + +#: plinth/modules/help/templates/help_about.html:23 +#, fuzzy, python-format +#| msgid "There is a new %(box_name)s version available." +msgid "" +"There is a new %(box_name)s version available." +msgstr "एक नया %(box_name)s संस्करण उपलब्ध है." + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, python-format +msgid "%(box_name)s is up to date." +msgstr "%(box_name)s उद्दिनांकित है." + +#: plinth/modules/help/templates/help_about.html:35 #, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2331,7 +2354,7 @@ msgstr "" "वेबसाइट, सामाजिक नेटवर्क, ईमेल, वेब प्रॉक्सी और एक टोर रिले के जैसे एप्लिकेशन होस्ट कर सकते " "है, एक वाई - फाई रूटर के जैसे डिवाइस पर ताकि आपना डेटा आपना साख रखेगें." -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2346,7 +2369,7 @@ msgstr "" "उपयोगी कानूनी सुरक्षा प्राप्त करते हैं. अपने नेटवर्क और मशीनों पर उपयोगकर्ताओं को वापस " "शक्ति देकर, हम इंटरनेट उसके इरादे-वाले पीयर टू पीयर वास्तुकला पर लौट रहे हैं." -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2356,7 +2379,7 @@ msgstr "" "बहुत सारे प्रोजैक्ट चल रहे है, एक वितरित सेवाओं का भविष्य एहसास करने के लिए. " "%(box_name)s यह सब साथ लाने के लिए कोशिस करती है." -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the %(box_name)s Wiki." -#: plinth/modules/help/templates/help_about.html:60 -msgid "Learn more »" -msgstr "और सिखिये »" - -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, python-format -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "आप %(os_release)s चल रहे है और %(box_name)s संस्करण %(version)s." - -#: plinth/modules/help/templates/help_about.html:69 -#, fuzzy, python-format -#| msgid "There is a new %(box_name)s version available." -msgid "" -"There is a new %(box_name)s version available." -msgstr "एक नया %(box_name)s संस्करण उपलब्ध है." - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, python-format -msgid "%(box_name)s is up to date." -msgstr "%(box_name)s उद्दिनांकित है." +#: plinth/modules/help/templates/help_about.html:78 +#, fuzzy +#| msgid "Learn more..." +msgid "Learn more" +msgstr "और सीखिये..." #: plinth/modules/help/templates/help_base.html:21 #: plinth/modules/help/templates/help_index.html:61 @@ -2452,7 +2457,7 @@ msgid "Thank you!" msgstr "" #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 msgid "Help" msgstr "मदद" @@ -2500,7 +2505,7 @@ msgstr "" "randomnick=1&channels=freedombox&prompt=1\"> #freedombox चानेल पर आईआरसी " "वेब इंटरफेस उपयोग कर." -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 #, fuzzy #| msgid "downloading" msgid "Download as PDF" @@ -2713,16 +2718,16 @@ msgstr "विकी या ब्लॉग बनाइये" msgid "No wikis or blogs available." msgstr "कोई विकी या ब्लॉग उपलब्ध नहीं है." -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "साइट हटाएं %(site)s" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "साइट पर जाएं %(site)s" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "साइट हटाएं %(site)s" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2822,8 +2827,8 @@ msgstr "जेएसएक्ससि" msgid "Chat Client" msgstr "चैट क्लाइंट" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "जावास्क्रिप्ट लाइसेंस जानकारी" @@ -2861,63 +2866,63 @@ msgstr "लेटस एंक्रिप्ट" msgid "Certificates" msgstr "प्रमाण पत्र" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 msgid "Domain" msgstr "डोमेन" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "प्रमाणपत्र स्थिति" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "वेबसईट सुरक्षा" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 msgid "Actions" msgstr "एक्सआयन" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, python-format msgid "Valid, expires on %(expiry_date)s" msgstr "मान्य, %(expiry_date)s पर एक्सपाईर हो जाएगा" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 msgid "Revoked" msgstr "रेवोकडॅ" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, python-format msgid "Expired on %(expiry_date)s" msgstr "%(expiry_date)s पर एक्सपाईर हो जाएगा" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 msgid "Invalid test certificate" msgstr "परीक्षण प्रमाणपत्र अमांय है" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "%(reason)s अमांय है" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 msgid "No certificate" msgstr "कोई प्रमाणपत्र नहीं" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "री-ओबटैन" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "रीवोकॅ" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "उबटैईन" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, fuzzy, python-format #| msgid "" #| "No domains have been configured. Configure domains to be able to obtain " @@ -3017,12 +3022,6 @@ msgstr "" msgid "Element" msgstr "" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "कॉन्फ़िगरेशन" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -3129,11 +3128,11 @@ msgstr "मीडियाविकी" msgid "Wiki" msgstr "विकी" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 msgid "Administrator Password" msgstr "व्यवस्थापक पासवर्ड" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." @@ -3141,33 +3140,33 @@ msgstr "" "मीडियाविकी एेडमिन अकाउंट के लिये नया पासवर्ड सेट करें (एेडमिन). वर्तमान पासवर्ड रखने के " "लिए इस फ़ील्ड को रिक्त छोड़ें." -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 #, fuzzy #| msgid "Server" msgid "Server URL" msgstr "सर्वर" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." msgstr "" -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 msgid "Enable public registrations" msgstr "सार्वजनिक रेजिस्टेशिन सक्षम करें" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." msgstr "सक्षम कर के इंटरनेट पर किसी को अपने मिडीयाविकी इस्टेशं पर एक अकाउंट बना सकता है." -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 msgid "Enable private mode" msgstr "निजी मोड सक्षम करें" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 msgid "" "If enabled, access will be restricted. Only people who have accounts can " "read/write to the wiki. Public registrations will also be disabled." @@ -3175,13 +3174,13 @@ msgstr "" "अगर सक्षम है, प्रवेश प्रतिबंधित किया जाएगा. सिर्फ जो लोग जिनके पास अकाउंट है वो लोग " "विकी को पढ़/लिक सकते हैं. सार्वजनिक रेगीसट्रेशिन भी अक्षम कर दिए जाएंगे." -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 #, fuzzy #| msgid "Default" msgid "Default Skin" msgstr "डिफ़ॉल्ट" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -3278,13 +3277,13 @@ msgstr "क्षति को सक्षम करें" msgid "When disabled, players cannot die or receive damage of any kind." msgstr "अक्षम होने पर खिलाड़ियों नहीं मर सकते या किसी चोट लग सकते." -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "ऍड्रेस" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "पोर्ट" @@ -3455,95 +3454,94 @@ msgstr "" msgid "Monkeysphere" msgstr "मंकीसफीर" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "चाबी किसर्वर पर प्रकाशित कर रहा है..." -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "कैंसिल" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "सर्विस" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 msgid "Domains" msgstr "डोमेन्स" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 msgid "OpenPGP Fingerprint" msgstr "अोपनपिजीपि फिंगरप्रिंट" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 msgid "Secure Shell" msgstr "सुरक्षित शेल" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 msgid "Other" msgstr "अदर" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "चाबी का विवरण दिखाएं %(fingerprint)s" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 msgid "-" msgstr "-" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "इमपोरट चाबी" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "चाबी प्रकाशित करें" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 msgid "Add Domains" msgstr "डोमेन्स जोड़ें" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "अोपनपिजीपि यूसर IDs" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "चाबी इमपोरट डेट" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 msgid "SSH Key Type" msgstr "SSH चाबी टाइप" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 msgid "SSH Key Size" msgstr "SSH चाबी आकार" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 msgid "SSH Fingerprint" msgstr "SSH फिंगरप्रिंट" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "चाबी फ़ाइल" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 msgid "Available Domains" msgstr "उपलब्ध वाले डोमेन्स" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 msgid "Added Domains" msgstr "जोड़ा गया डोमेन्स" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" @@ -3551,15 +3549,15 @@ msgstr "" "इस चाबी कीसर्वर पर प्रकाशित करने के बाद, हस्ताक्षर किया जा सकता है GnuPG इन आदेशों उपयोग कर:" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 msgid "Download the key" msgstr "चाबी डाउनलोड करें" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "चाबी पर हस्ताक्षर करें" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 msgid "Send the key back to the keyservers" msgstr "चाबी कीसर्वर से वापस भेजें" @@ -3654,7 +3652,7 @@ msgstr "" msgid "All web apps" msgstr "" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 #, fuzzy #| msgid "Service" msgid "Services" @@ -3754,8 +3752,8 @@ msgstr "" "जाएगा." #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "गेटवे" @@ -3841,7 +3839,7 @@ msgid "-- select --" msgstr "-- चुनिये --" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 msgid "SSID" msgstr "एसएसआईडी" @@ -3850,7 +3848,7 @@ msgid "The visible name of the network." msgstr "यह नेटवर्क का दृश्य नाम." #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "मोड" @@ -3879,7 +3877,7 @@ msgid "B/G (2.4 GHz)" msgstr "बी/जी (२.४ जीएचज़ि)" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 msgid "Channel" msgstr "चैनल" @@ -4036,158 +4034,158 @@ msgid "" "to be reminded later. Some of the other configuration steps may fail.

" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "कनेक्शन संपादित करें" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "संपादन" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "निष्क्रिय" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "सक्रिय" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "कनेक्शन हटाएँ" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "कनेक्शन" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "मुख्य कनेक्शन" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "हाँ" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "यंत्र" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "स्थिति" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "कारण कहो" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 msgid "MAC address" msgstr "एमएेसी एड्रेस" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 msgid "Interface" msgstr "इंटरफ़ेस" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "विवरण" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "फिजिकल लिंक" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "लिंक स्ट्टेट" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "केबल कनेक्ट हो गया" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 msgid "please check cable" msgstr "केबल चेक करें" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "स्पीड" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "%(ethernet_speed)s एमबीट/एस" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "%(wireless_bitrate)s एमबीट/एस" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "सिग्नल क्षमती" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "आईपीवी4" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "तरीका" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "आइपी एेड्रैस" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "डीएनएस सर्वर" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "डिफ़ॉल्ट" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "आईपीवी6" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "यह कनेक्शन सक्रिय नहीं है." -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "सुरक्षा" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "फ़ायरवॉल ज़ोन" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 msgid "" "This interface should be connected to a local network/machine. If you " "connect this interface to a public network, services meant to be available " @@ -4197,8 +4195,8 @@ msgstr "" "नेटवर्क से कनेक्ट करते हैं, सिर्फ आंतरिक रूप से उपलब्ध होने सर्विसे बाहर से भी उपलब्ध हो " "जाएगा. यह एक सुरक्षा जोखिम है." -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 msgid "" "This interface should receive your Internet connection. If you connect it to " "a local network/machine, many services meant to available only internally " @@ -4208,13 +4206,13 @@ msgstr "" "मशीन से कनेक्ट करते हैं, तो सिर्फ आंतरिक रूप से उपलब्ध होने वाली कई सर्विसस उपलब्ध नहीं " "होंगी." -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "बाहरी" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -4235,40 +4233,40 @@ msgstr "कनेक्शन हटाएँ" msgid "Delete connection %(name)s permanently?" msgstr "कनेक्शन %(name)s स्थाई रूप से हटाएं?" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "इंटरनेट" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 msgid "Spacing" msgstr "स्‍पेसिंग" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "इथरनेट" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "वाई-फ़ाई" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "कनेक्शन दिखाइये %(name)s" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "आंतरिक" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "कंप्यूटर" @@ -4296,19 +4294,19 @@ msgstr "पास के वाई-फाई नेटवर्क" msgid "Add Connection" msgstr "कनेक्शन जोड़ें" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "कनेक्शन हटाइये %(name)s" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "एक्टिव" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "इनएक्टिव" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "कनेक्शन हटाइये %(name)s" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "बनाएँ…" @@ -4334,8 +4332,8 @@ msgstr "" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "" @@ -4424,7 +4422,7 @@ msgid "" "are no other devices on the network." msgstr "" -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -4960,11 +4958,11 @@ msgstr "सार्वजनिक विसिबिलिटी" msgid "PageKite Domain" msgstr "पेजकईट अकाउंट" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 msgid "Server domain" msgstr "सर्वर डोमेन" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " "pagekite.net server." @@ -4972,58 +4970,58 @@ msgstr "" "अपने पेजकईटसर्वर चूनें. \"pagekite.net\" सेट करें डिफ़ॉल्ट pagekite.net सर्वर उपयोग करने " "के लिए." -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "सर्वर पोर्ट" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "अपने पेजकईट सर्वर का पोर्ट (डिफ़ॉल्ट: ८०)" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "कईट नाम" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "उदाहरण: mybox.pagekite.me" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "अमान्य कईट नाम" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "कईट गुप्त" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." msgstr "" "एक कोई का सम्बंधित गुप्त या अपना अकाउंट का डिफ़ॉल्ट गुप्त अगर कोई रहस्य कईट पर सेट है." -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "प्रोटोकॉल" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "बाहरी (फ्रंटेंड) पोर्ट" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "आंतरिक (फ्रीडमबॉकस) पोर्ट" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "सबडोमेन सक्षम करें" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 msgid "Deleted custom service" msgstr "हटाई गई कस्टम सर्विस" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 #, fuzzy #| msgid "" #| "This service is available as a standard service. Please use the " @@ -5033,31 +5031,31 @@ msgstr "" "यह सर्विस एक मानक सर्विस के रूप में उपलब्ध है. इसे सक्षम करने के लिए \"मानक सर्विस\" पेज " "का उपयोग करें." -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 msgid "Added custom service" msgstr "जोड़ा गया कस्टम सर्विस" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "यह सर्विस पहले से मौजूद है" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 msgid "Custom Services" msgstr "कस्टम सर्विसस" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 #, fuzzy #| msgid "Custom Services" msgid "Add Custom Service" msgstr "कस्टम सर्विसस" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "%(backend_host)s से कनेक्टेड:%(backend_port)s" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "यह सर्विस हटाएं" @@ -5146,13 +5144,16 @@ msgstr "" "अभी एक स्थापना या अपग्रेड चल रहा है. इसे शट डाउन या रीस्टार्ट करने से पहले इसे समाप्त " "होने तक प्रतीक्षा करें." -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" -msgstr "रीस्टार्ट »" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +msgid "Restart" +msgstr "रीस्टार्ट" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" -msgstr "शट डाउन »" +#, fuzzy +#| msgid "Shut down" +msgid "Shut Down" +msgstr "शट डाउन" #: plinth/modules/power/templates/power_restart.html:17 msgid "" @@ -5518,23 +5519,23 @@ msgstr "गनोम कैलेंडर" msgid "Dolphin" msgstr "" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 #, fuzzy #| msgid "Shared" msgid "Shares" msgstr "साझा किया गया" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 msgid "" "Note: Only specially created directories will be shared on selected disks, " "not the whole disk." msgstr "" -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 msgid "VFAT partitions are not supported" msgstr "" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the users module page." msgstr "" -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 msgid "Users who can currently access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 msgid "" "Users needing to re-enter their password on the password change page to " "access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 #, fuzzy #| msgid "Available Domains" msgid "Unavailable Shares" msgstr "उपलब्ध वाले डोमेन्स" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." msgstr "" -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 #, fuzzy #| msgid "Share added." msgid "Share name" msgstr "शेयर जोड़ा गया." -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 #, fuzzy #| msgid "Actions" msgid "Action" @@ -5702,27 +5703,27 @@ msgstr "" "जब यह विकल्प सक्षम है, Fail2Ban SSH सर्वर और दूसरा सक्षम किया गया पसवर्ड इंटरनेट " "सर्विसस को ब्रूट फोर्स ब्रेक-इन प्रयासों से सीमा होगी." -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 #, fuzzy #| msgid "Security" msgid "Show security report" msgstr "सुरक्षा" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "" -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5768,49 +5769,49 @@ msgid "" "running." msgstr "" -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 #, fuzzy #| msgid "Name" msgid "App Name" msgstr "नाम" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 msgid "Current Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 msgid "Past Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 #, fuzzy #| msgid "Block Sandbox" msgid "Sandboxed" msgstr "ब्लॉक सेंडबोक्स" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 #, fuzzy #| msgid "Block Sandbox" msgid "Sandbox Coverage" msgstr "ब्लॉक सेंडबोक्स" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 msgid "N/A" msgstr "" -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 #, fuzzy #| msgid "yes" msgid "Yes" msgstr "हाँ" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 #, fuzzy #| msgid "None" msgid "No" msgstr "कोई नहीं" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 #, fuzzy #| msgid "Tor is running" msgid "Not running" @@ -5981,28 +5982,28 @@ msgstr "इस नाम का एक शयर पहले से मौज msgid "Shares should be either public or shared with at least one group" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 msgid "Add share" msgstr "शेयर जोड़ें" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "वर्तमान में कोई शेयर कॉन्फ़िगर नहीं किया गया है." -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "डिस्क पाथ" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 msgid "Shared Over" msgstr "शेयरड अोवर" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 msgid "With Groups" msgstr "समूहों के साथ" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "" @@ -6139,41 +6140,41 @@ msgstr "इस कई वार्षिक स्नैपशॉट की ए msgid "Delete the following snapshots permanently?" msgstr "इन स्नैपशॉटस स्थाई रूप से हटाएं?" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "संख्या" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "तिथि" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 msgid "Delete Snapshots" msgstr "स्नैपशॉटस हटाएँ" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 msgid "Create Snapshot" msgstr "स्नैपशॉट बनाइये" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "रोलबैक" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 msgid "will be used at next boot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "स्नैपशॉट से रोलबैक करें #%(number)s" @@ -6198,7 +6199,7 @@ msgstr "" "फ़ाइल सिस्टम की वर्तमान स्थिति के साथ एक नया स्नैपशॉट ऑटोमेटिकली बनाया जाएगा. आप नए " "बनाए गए स्नैपशॉट पर वापस जा कर एक रोलबैक को पूर्ववत् करने में सक्षम होंगे." -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "स्नैपशॉट से रोलबैक करें #%(number)s" @@ -6297,11 +6298,11 @@ msgid "" "client matches one of these fingerprints." msgstr "" -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 #, fuzzy #| msgid "SSH Fingerprint" msgid "Fingerprint" @@ -6492,29 +6493,29 @@ msgstr "साझा किया गया" msgid "Other directory (specify below)" msgstr "" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 #, fuzzy #| msgid "The following disks are in use:" msgid "The following storage devices are in use:" msgstr "निम्नलिखित डिस्कस उपयोग में है:" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "लेबल" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "माउन्ट प्वाइंट" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 msgid "Used" msgstr "उपयोग किया गया" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "पारटिशन एक्सपांसन" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -6525,13 +6526,13 @@ msgstr "" "पार्टीशन इस स्थान ज्यादा बनने के लिए उपयोग किया जा सकता है. यह आपको आपकी फ़ाइलों " "स्टोर करने के लिए अतिरिक्त मुक्त स्थान प्रदान करेगा." -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "रूट पारटिशन विस्तार करें" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -6664,25 +6665,25 @@ msgstr "" msgid "Local introducer" msgstr "स्थानीय इंट्रोड्यूसर" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 msgid "Pet Name" msgstr "पेट नाम" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "नया इंट्रोड्यूसर जोड़ें" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 msgid "Add" msgstr "जोड़ें" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "कनेक्टेड इंट्रोड्यूसरस" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "निकालें" @@ -6855,21 +6856,21 @@ msgstr "अोरबोट: टोर के साथ प्रॉक्सी" msgid "Tor configuration is being updated" msgstr "टोर कॉन्फ़िगरेशन अपडेट किया जा रहा है" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 #, fuzzy #| msgid "Hidden Service" msgid "Onion Service" msgstr "हिडन सर्विस" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 msgid "Ports" msgstr "पोर्टस" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 msgid "Relay" msgstr "रीले" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, python-format msgid "" "If your %(box_name)s is behind a router or firewall, you should make sure " @@ -6970,7 +6971,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 msgid "Update" @@ -7011,7 +7012,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "" @@ -7033,11 +7034,11 @@ msgid "" "cannot be deactivated." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 msgid "Updating, please wait..." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 #, fuzzy #| msgid "" @@ -7054,7 +7055,7 @@ msgstr "" "जब अपग्रेडस प्रगति पर हैं, दुसरे पैकेजस इंस्टॉल नहीं कर सकेगा. अपग्रेड करते समय, यह वेब इंटरफ़ेस " "शयद अस्थायी रूप से अनुपलब्ध है और एक त्रुटि दिखाएे. जारी रखने के लिए पेज रिफ्रेश करें." -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, fuzzy, python-format #| msgid "%(box_name)s is up to date." msgid "" @@ -7081,34 +7082,34 @@ msgstr "" msgid "Dismiss" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, python-format msgid "There is a new %(box_name)s version available." msgstr "एक नया %(box_name)s संस्करण उपलब्ध है." -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 #, fuzzy #| msgid "FreedomBox Foundation" msgid "Your Freedombox needs an update!" msgstr "फ्रीडमबाक्स फाउंडेशन" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -7116,19 +7117,19 @@ msgid "" "\"%(snapshot_url)s\">Storage Snapshots before continuing." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 #, fuzzy #| msgid "Last update" msgid "Manual Update" msgstr "अंतिम अपडेट" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 #, fuzzy #| msgid "Update" msgid "Update now" msgstr "अपडेट" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 #, fuzzy #| msgid "" #| "Depending on the number of packages to install, this may take a long time " @@ -7144,7 +7145,7 @@ msgstr "" "जब अपग्रेडस प्रगति पर हैं, दुसरे पैकेजस इंस्टॉल नहीं कर सकेगा. अपग्रेड करते समय, यह वेब इंटरफ़ेस " "शयद अस्थायी रूप से अनुपलब्ध है और एक त्रुटि दिखाएे. जारी रखने के लिए पेज रिफ्रेश करें." -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 msgid "Show recent update logs" msgstr "" @@ -7347,8 +7348,8 @@ msgstr "पासवर्ड सहेजें" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "यूसर बनाये" @@ -7408,21 +7409,21 @@ msgid "" "step." msgstr "" -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "यूसरस" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "यूसर हटाइये %(username)s" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "यूसर संपादित करें %(username)s" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "यूसर हटाइये %(username)s" + #: plinth/modules/users/templates/users_update.html:11 #, fuzzy, python-format #| msgid "Edit user %(username)s" @@ -7501,8 +7502,8 @@ msgstr "अमान्य कईट नाम" #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 #, fuzzy #| msgid "Publish Key" msgid "Public Key" @@ -7594,7 +7595,7 @@ msgid "Allowed IPs" msgstr "" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 #, fuzzy #| msgid "Create Connection" msgid "Last Connected Time" @@ -7605,55 +7606,55 @@ msgstr "कनेक्शन बनाएँ" msgid "No peers configured to connect to this %(box_name)s yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, python-format msgid "Public key for this %(box_name)s:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 #, fuzzy #| msgid "No shares currently configured." msgid "Not configured yet." msgstr "वर्तमान में कोई शेयर कॉन्फ़िगर नहीं किया गया है." -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 #, fuzzy #| msgid "Add new introducer" msgid "Add a new peer" msgstr "नया इंट्रोड्यूसर जोड़ें" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 #, fuzzy #| msgid "Chat Client" msgid "As a Client" msgstr "चैट क्लाइंट" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 #, fuzzy #| msgid "Add new introducer" msgid "Add a new server" msgstr "नया इंट्रोड्यूसर जोड़ें" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 #, fuzzy #| msgid "Add Connection" @@ -7693,44 +7694,44 @@ msgid "" "is configured with the following information." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 #, fuzzy #| msgid "Server domain" msgid "Server endpoints:" msgstr "सर्वर डोमेन" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 #, fuzzy #| msgid "Server port number" msgid "Server public key:" msgstr "सर्वर पोर्ट नंबर" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "" @@ -7742,17 +7743,17 @@ msgid "" "public key and IP address." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 #, fuzzy #| msgid "Server domain" msgid "Server endpoint:" msgstr "सर्वर डोमेन" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "" @@ -7933,50 +7934,54 @@ msgstr "इंस्टालेशन" msgid "Service %(service_name)s is not running." msgstr "सर्विस %(service_name)s नहीं चल रहा है." -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, fuzzy, python-format #| msgid "Core funtionality and web interface for %(box_name)s" msgid "Core functionality and web interface for %(box_name)s" msgstr "%(box_name)s के लिए कोर फंक्शनलिटी और वेब इंटरफेस" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" -msgstr "टॉगल नेविगेशन" +#: plinth/templates/base.html:107 +msgid " Home" +msgstr " होम" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "होम" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +msgid " Apps" +msgstr " ऐप्स" + +#: plinth/templates/base.html:119 msgid "Apps" msgstr "ऐप्स" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +msgid " System" +msgstr " सिस्टम" + +#: plinth/templates/base.html:128 msgid "System" msgstr "सिस्टम" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "पासवर्ड बदलें" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -msgid "Restart" -msgstr "रीस्टार्ट" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 msgid "Shut down" msgstr "शट डाउन" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "लॉग आउट" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 msgid "Select language" msgstr "भाषा चुनें" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "लॉग इन" @@ -8040,7 +8045,7 @@ msgstr "होमब्रु:" msgid "RPM:" msgstr "आरपीएम:" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -8057,10 +8062,6 @@ msgid "" msgstr "" "कुछएप्लिकेशनस सक्षम करें, इस पेज पर शॉर्टकटस जोड़ने के लिए." -#: plinth/templates/index.html:46 -msgid "Configure »" -msgstr "कॉंफ़िगर »" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -8090,7 +8091,7 @@ msgstr "होमपेज" msgid "Source Code" msgstr "सोर्स कोड" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "दान करें" @@ -8125,6 +8126,10 @@ msgid "" "%(interface_list)s" msgstr "अभी यह नेटवर्क इंटरफ़ेसस आंतरिक के रूप में कॉंफ़िगर किया गया है:%(interface_list)s" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 #, fuzzy #| msgid "No certificate" @@ -8163,17 +8168,17 @@ msgid "" "your router. You should forward the following ports for %(service_name)s:" msgstr "" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 #, fuzzy #| msgid "protocol" msgid "Protocol" msgstr "प्रोटोकॉल" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, fuzzy, python-format #| msgid "%(box_name)s Setup" msgid "To %(box_name)s Ports" @@ -8228,6 +8233,24 @@ msgstr "%(percentage)s%% पूर्ण" msgid "Gujarati" msgstr "" +#~ msgid "Show Ports" +#~ msgstr "पोर्ट दिखाईये" + +#~ msgid "Learn more »" +#~ msgstr "और सिखिये »" + +#~ msgid "Restart »" +#~ msgstr "रीस्टार्ट »" + +#~ msgid "Shut Down »" +#~ msgstr "शट डाउन »" + +#~ msgid "Toggle navigation" +#~ msgstr "टॉगल नेविगेशन" + +#~ msgid "Configure »" +#~ msgstr "कॉंफ़िगर »" + #~ msgid "Show connection %(connection.name)s" #~ msgstr "कनेक्शन दिखाइये %(connection.name)s" @@ -8968,15 +8991,6 @@ msgstr "" #~ "इससे पुराने सॉफ़्टवेयर स्नैपशॉट हटा दिए जाएंगे. यह बनाए गए सॉफ़्टवेयर स्नैपशॉट की संख्या " #~ "को सीमित नहीं करता है." -#~ msgid " Home" -#~ msgstr " होम" - -#~ msgid " Apps" -#~ msgstr " ऐप्स" - -#~ msgid " System" -#~ msgstr " सिस्टम" - #~ msgid "Archive name" #~ msgstr "पुरालेख नाम" diff --git a/plinth/locale/hu/LC_MESSAGES/django.po b/plinth/locale/hu/LC_MESSAGES/django.po index 11a319dc8..195506620 100644 --- a/plinth/locale/hu/LC_MESSAGES/django.po +++ b/plinth/locale/hu/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: 2020-12-29 01:10+0000\n" "Last-Translator: Doma Gergő \n" "Language-Team: Hungarian diaspora.%(domain_name)s" +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "Beállítások" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1777,16 +1784,16 @@ msgid "About" msgstr "Névjegy" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 msgid "Status" msgstr "Állapot" @@ -1941,7 +1948,7 @@ msgstr "{name} port ({details}) elérhető a külső hálózaton" msgid "Port {name} ({details}) unavailable for external networks" msgstr "{name} port ({details}) nem érhető el külső hálózaton" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -1955,44 +1962,40 @@ msgstr "" "kiadásával vagy a systemd alapú rendszer rendszer esetében 'systemctl start " "firewalld'." -#: plinth/modules/firewall/templates/firewall.html:28 -msgid "Show Ports" -msgstr "Portok mutatása" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "Szolgáltatás/port" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "Engedélyezve" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "Letiltva" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "Engedélyezett" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "Engedélyezett (csak belső)" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "Engedélyezett (csak külső)" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "Blokkolva" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " @@ -2002,13 +2005,13 @@ msgstr "" "tűzfalban is engedélyezve lesz, és ha letiltod a szolgáltatást az a " "tűzfalban szintén le lesz tiltva." -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "Fejlett" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -2053,7 +2056,7 @@ msgstr "" "Esetleg leellenőrizheted a hálózati beállítást és módosíthatod ha szükséges." -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "Beállítás elkezdése" @@ -2159,33 +2162,33 @@ msgstr "" msgid "Git" msgstr "Git" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 msgid "Manage Repositories" msgstr "Tárolók kezelése" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 msgid "Create repository" msgstr "Tároló létrehozása" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 msgid "No repositories available." msgstr "Nincs elérhető tároló." -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 -#, python-format -msgid "Delete repository %(repo.name)s" -msgstr "%(repo.name)s tároló törlése" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 -msgid "Cloning…" -msgstr "Klónozás…" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 #, python-format msgid "Go to repository %(repo.name)s" msgstr "Ugrás a %(repo.name)s tárolóra" +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 +msgid "Cloning…" +msgstr "Klónozás…" + +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 +#, python-format +msgid "Delete repository %(repo.name)s" +msgstr "%(repo.name)s tároló törlése" + #: plinth/modules/gitweb/templates/gitweb_delete.html:12 #, python-format msgid "Delete Git Repository %(name)s" @@ -2243,6 +2246,26 @@ msgid "Contribute" msgstr "Hozzájárulás" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, python-format +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "" +"Az eszközön %(os_release)s és a %(box_name)s %(version)s számú verziója fut." + +#: plinth/modules/help/templates/help_about.html:23 +#, python-format +msgid "" +"There is a new %(box_name)s version available." +msgstr "Új %(box_name)s verzió elérhető." + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, python-format +msgid "%(box_name)s is up to date." +msgstr "A %(box_name)s naprakész." + +#: plinth/modules/help/templates/help_about.html:35 #, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2262,7 +2285,7 @@ msgstr "" "futtathat egy olyan eszközön, amely akár a Wi-Fi routert is helyettesítheti, " "így személyes adatait nem kell kiadnia a kezéből." -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2280,7 +2303,7 @@ msgstr "" "visszatérünk az internet eredeti peer-to-peer (decentralizált) " "architektúrájához." -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2291,7 +2314,7 @@ msgstr "" "jövőjét; a %(box_name)s arra törekszik, hogy összegyűjtse ezeket egy könnyen " "kezelhető csomagba." -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the %(box_name)s Wiki oldalon találhatóak." -#: plinth/modules/help/templates/help_about.html:60 -msgid "Learn more »" -msgstr "Bővebben »" - -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, python-format -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "" -"Az eszközön %(os_release)s és a %(box_name)s %(version)s számú verziója fut." - -#: plinth/modules/help/templates/help_about.html:69 -#, python-format -msgid "" -"There is a new %(box_name)s version available." -msgstr "Új %(box_name)s verzió elérhető." - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, python-format -msgid "%(box_name)s is up to date." -msgstr "A %(box_name)s naprakész." +#: plinth/modules/help/templates/help_about.html:78 +#, fuzzy +#| msgid "Learn more..." +msgid "Learn more" +msgstr "Bővebben..." #: plinth/modules/help/templates/help_base.html:21 #: plinth/modules/help/templates/help_index.html:61 @@ -2408,7 +2413,7 @@ msgid "Thank you!" msgstr "Köszönjük!" #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 msgid "Help" msgstr "Súgó" @@ -2457,7 +2462,7 @@ msgstr "" "oftc.net/?randomnick=1&channels=freedombox&prompt=1\"> #freedombox " "csatornán az IRC webes felületét használva." -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 msgid "Download as PDF" msgstr "Letöltés PDF-ként" @@ -2674,16 +2679,16 @@ msgstr "Wiki vagy Blog létrehozása" msgid "No wikis or blogs available." msgstr "Nincs elérhető wiki vagy blog." -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "%(site)s webhely törlése" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "Ugrás a %(site)s webhelyre" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "%(site)s webhely törlése" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2785,8 +2790,8 @@ msgstr "JSXC" msgid "Chat Client" msgstr "Chat kliens" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "JavaScript licencinformáció" @@ -2827,63 +2832,63 @@ msgstr "Let's Encrypt" msgid "Certificates" msgstr "Tanúsítványok" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 msgid "Domain" msgstr "Domain" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "Tanúsítvány állapot" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "Webhelybiztonság" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 msgid "Actions" msgstr "Műveletek" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, python-format msgid "Valid, expires on %(expiry_date)s" msgstr "Érvényes, lejár: %(expiry_date)s" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 msgid "Revoked" msgstr "Visszavonva" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, python-format msgid "Expired on %(expiry_date)s" msgstr "Lejárt: %(expiry_date)s" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 msgid "Invalid test certificate" msgstr "Érvénytelen vizsgálati tanúsítvány" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "Érvénytelen: (%(reason)s)" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 msgid "No certificate" msgstr "Nincs tanúsítvány" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "Újra beszerezni" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "Visszavonás" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "Beszerzés" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, python-format msgid "" "No domains have been configured. Configure " @@ -2952,8 +2957,8 @@ msgid "" "\">available clients for mobile, desktop and the web. Element client is recommended." msgstr "" -"A kommunikációhoz válassz az elérhető kliensek közül, akár mobil, asztali vagy webes felületűt. elérhető kliensek közül, akár mobil, asztali vagy webes felületűt. Element kliens az ajánlott." #: plinth/modules/matrixsynapse/__init__.py:67 @@ -2978,12 +2983,6 @@ msgstr "" msgid "Element" msgstr "" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "Beállítások" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -3101,11 +3100,11 @@ msgstr "MediaWiki" msgid "Wiki" msgstr "Wiki" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 msgid "Administrator Password" msgstr "Rendszergazdai jelszó" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." @@ -3113,21 +3112,21 @@ msgstr "" "Állíts be új jelszót a MediaWiki rendszergazdai (admin) fiókjának. Hagyd " "üresen ezt a mezőt a jelenlegi jelszó megtartásához." -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 msgid "Server URL" msgstr "Kiszolgáló URL" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." msgstr "" -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 msgid "Enable public registrations" msgstr "Szabad regisztráció engedélyezése" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." @@ -3135,11 +3134,11 @@ msgstr "" "Ha engedélyezett, az interneten bárki létrehozhat egy fiókot ebben a " "MediaWiki példányban." -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 msgid "Enable private mode" msgstr "Privát mód engedélyezése" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 msgid "" "If enabled, access will be restricted. Only people who have accounts can " "read/write to the wiki. Public registrations will also be disabled." @@ -3148,11 +3147,11 @@ msgstr "" "rendelkező emberek fogják tudni olvasni/írni a wiki-t. A szabad regisztráció " "is le lesz tiltva." -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 msgid "Default Skin" msgstr "Alapértelmezett felszín" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -3252,13 +3251,13 @@ msgstr "Sérülés engedélyezése" msgid "When disabled, players cannot die or receive damage of any kind." msgstr "Ha le van tiltva, a játékosok nem fognak meghalni ill. megsérülni." -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "Cím" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "Port" @@ -3444,95 +3443,94 @@ msgstr "" msgid "Monkeysphere" msgstr "Monkeysphere" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "A kulcs közzététele a kulcskiszolgálónak…" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "Mégse" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "Szolgáltatás" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 msgid "Domains" msgstr "Domainek" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 msgid "OpenPGP Fingerprint" msgstr "OpenPGP ujjlenyomat" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 msgid "Secure Shell" msgstr "Secure Shell (Biztonságos parancsértelmező)" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 msgid "Other" msgstr "Egyéb" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "A %(fingerprint)s kulcs részletei" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 msgid "-" msgstr "-" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "Kulcs importálása" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "Kulcs közzététele" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 msgid "Add Domains" msgstr "Domainek hozzáadása" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "OpenPGP felhasználói azonosítók" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "Kulcs importálásának dátuma" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 msgid "SSH Key Type" msgstr "SSH kulcs típusa" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 msgid "SSH Key Size" msgstr "SSH kulcs mérete" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 msgid "SSH Fingerprint" msgstr "SSH ujjlenyomat" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "Kulcsfájl" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 msgid "Available Domains" msgstr "Elérhető Domainek" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 msgid "Added Domains" msgstr "Hozzáadott Domainek" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" @@ -3541,15 +3539,15 @@ msgstr "" "href=\"https://www.gnupg.org/\">GnuPG-t használva a következő " "parancsokkal:" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 msgid "Download the key" msgstr "A kulcs letöltése" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "A kulcs aláírása" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 msgid "Send the key back to the keyservers" msgstr "A kulcs visszaküldése a kulcskiszolgálónak" @@ -3650,7 +3648,7 @@ msgstr "Összes" msgid "All web apps" msgstr "Összes webalkalmazás" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 msgid "Services" msgstr "Szolgáltatások" @@ -3750,8 +3748,8 @@ msgstr "" "lesz használva." #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "Átjáró" @@ -3841,7 +3839,7 @@ msgid "-- select --" msgstr "-- válassz --" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 msgid "SSID" msgstr "SSID" @@ -3850,7 +3848,7 @@ msgid "The visible name of the network." msgstr "A név, amellyel a hálózat látható." #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "Mód" @@ -3879,7 +3877,7 @@ msgid "B/G (2.4 GHz)" msgstr "B/G (2.4 GHz)" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 msgid "Channel" msgstr "Csatorna" @@ -4076,158 +4074,158 @@ msgid "" "to be reminded later. Some of the other configuration steps may fail.

" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "Kapcsolat szerkesztése" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "Szerkesztés" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "Deaktivál" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "Aktivál" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "Kapcsolat törlése" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "Kapcsolat" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "Elsődleges kapcsolat" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "igen" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "Eszköz" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "Állapot" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "Az állapot oka" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 msgid "MAC address" msgstr "MAC cím" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 msgid "Interface" msgstr "Interfész" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "Leírás" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "Fizikai kapcsolat" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "Kapcsolat állapota" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "kábel csatlakoztatva" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 msgid "please check cable" msgstr "Kérem ellenőrizze a kábelt" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "Sebesség" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "%(ethernet_speed)s Mbit/s" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "%(wireless_bitrate)s Mbit/s" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "Jelerősség" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "IPv4" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "Módszer" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "IP cím" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "DNS szerver" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "Alapértelmezett" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "IPv6" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "Ez a kapcsolat nem aktív." -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "Biztonság" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "Tűzfal zóna" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 msgid "" "This interface should be connected to a local network/machine. If you " "connect this interface to a public network, services meant to be available " @@ -4238,8 +4236,8 @@ msgstr "" "tervezett szolgáltatások kívülről is elérhetőek lesznek. Ez biztonsági " "kockázatot jelent." -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 msgid "" "This interface should receive your Internet connection. If you connect it to " "a local network/machine, many services meant to available only internally " @@ -4249,13 +4247,13 @@ msgstr "" "helyi hálózathoz/géphez csatlakoztatod, sok, csak belsőként elérhetőnek " "tervezett szolgáltatás nem lesz elérhető." -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "Külső" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -4276,40 +4274,40 @@ msgstr "Kapcsolat törlése" msgid "Delete connection %(name)s permanently?" msgstr "%(name)s kapcsolatot véglegesen törlöd?" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "Internet" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 msgid "Spacing" msgstr "Térköz" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "Ethernet" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "Wi-Fi" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "%(name)s kapcsolat megjelenítése" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "Belső" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "Számítógép" @@ -4335,19 +4333,19 @@ msgstr "Wi-Fi hálózatok a közelben" msgid "Add Connection" msgstr "Kapcsolat hozzáadása" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "%(name)s kapcsolat törlése" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "Aktív" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "Inaktív" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "%(name)s kapcsolat törlése" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "Létrehoz..." @@ -4373,8 +4371,8 @@ msgstr "" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "" @@ -4458,7 +4456,7 @@ msgid "" "are no other devices on the network." msgstr "" -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -4931,11 +4929,11 @@ msgstr "Nyilvános láthatóság" msgid "PageKite Domain" msgstr "PageKite domain" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 msgid "Server domain" msgstr "Kiszolgáló domain" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " "pagekite.net server." @@ -4943,31 +4941,31 @@ msgstr "" "Válaszd ki a pagekite kiszolgálódat. Állítsd „pagekite.net” -re, ha az " "alapértelmezett pagekite.net kiszolgálót szeretnéd használni." -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "Kiszolgáló port" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "A pagekite kiszolgálód portja (alapértelmezett: 80)" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "Kite név" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "Például: mybox.pagekite.me" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "Érvénytelen kite név" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "Kite titkos kulcs" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." @@ -4975,53 +4973,53 @@ msgstr "" "A kite-hoz kapcsolódó titkos kulcs vagy a fiókod alapértelmezett titkos " "kulcsa, ha nem lett titkos kulcs beállítva a kite-ra." -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "protokoll" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "külső (frontend) port" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "belső (freedombox) port" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "Aldomének engedélyezése" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 msgid "Deleted custom service" msgstr "Törölt egyéni szolgáltatás" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 msgid "This service is already available as a standard service." msgstr "Ez a szolgáltatás már elérhető szabványosként." -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 msgid "Added custom service" msgstr "Egyedi szolgáltatás hozzáadva" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "Ez a szolgáltatás már létezik" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 msgid "Custom Services" msgstr "Egyedi szolgáltatások" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 msgid "Add Custom Service" msgstr "Egyedi szolgáltatás hozzáadása" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "csatlakoztatva a következőhöz: %(backend_host)s:%(backend_port)s" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "Szolgáltatás törlése" @@ -5108,13 +5106,16 @@ msgstr "" "Jelenleg telepítés vagy frissítés zajlik. Érdemes megvárni a folyamat végét " "a leállítás vagy újraindítás előtt." -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" -msgstr "Újraindítás »" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +msgid "Restart" +msgstr "Újraindítás" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" -msgstr "Leállítás »" +#, fuzzy +#| msgid "Shut down" +msgid "Shut Down" +msgstr "Leállítás" #: plinth/modules/power/templates/power_restart.html:17 msgid "" @@ -5250,10 +5251,10 @@ msgid "" msgstr "" "A Radicale egy CalDAV és CardDAV kiszolgáló. Ezzel lehetővé válik az " "időbeosztás és a kapcsolati adatok szinkronizációja és megosztása. A " -"Radicale használatához szükség lesz egy támogatott kliens alkalmazásra " -"is. A Radicale elérhető bármely felhasználó számára „{box_name}” " -"felhasználónév használatával." +"Radicale használatához szükség lesz egy támogatott kliens " +"alkalmazásra is. A Radicale elérhető bármely felhasználó számára " +"„{box_name}” felhasználónév használatával." #: plinth/modules/radicale/__init__.py:33 msgid "" @@ -5466,21 +5467,21 @@ msgstr "GNOME Fájlok" msgid "Dolphin" msgstr "" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 msgid "Shares" msgstr "Megosztások" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 msgid "" "Note: Only specially created directories will be shared on selected disks, " "not the whole disk." msgstr "" -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 msgid "VFAT partitions are not supported" msgstr "" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the users module page." msgstr "" -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 msgid "Users who can currently access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 msgid "" "Users needing to re-enter their password on the password change page to " "access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 msgid "Unavailable Shares" msgstr "Nem elérhető megosztások" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." msgstr "" -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 msgid "Share name" msgstr "Megosztás neve" -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 msgid "Action" msgstr "Művelet" @@ -5633,25 +5634,25 @@ msgstr "" "behatolási kísérleteket az SSH kiszolgálóra és egyéb engedélyezett, " "jelszóval védett internetes szolgáltatásokra." -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 msgid "Show security report" msgstr "Biztonsági jelentés megjelenítése" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "" -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5699,39 +5700,39 @@ msgid "" "running." msgstr "" -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 msgid "App Name" msgstr "Alkalmazás neve" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 msgid "Current Vulnerabilities" msgstr "Jelenlegi biztonsági rések" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 msgid "Past Vulnerabilities" msgstr "Múltbéli biztonsági rések" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 msgid "Sandboxed" msgstr "Virtuális környezetben" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 msgid "Sandbox Coverage" msgstr "Virtuális környezet lefedettsége" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 msgid "N/A" msgstr "" -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 msgid "Yes" msgstr "Igen" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 msgid "No" msgstr "Nem" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 msgid "Not running" msgstr "Nem fut" @@ -5898,28 +5899,28 @@ msgstr "" "A megosztásnak nyilvánosnak vagy legalább egy csoporttal megosztottnak kell " "lennie" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 msgid "Add share" msgstr "Megosztás hozzáadása" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "Jelenleg nincs beállított megosztás." -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "Lemez elérési útja" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 msgid "Shared Over" msgstr "Megosztva ezen keresztül" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 msgid "With Groups" msgstr "Ezekkel a csoportokkal" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "nyilvános hozzáférés" @@ -6064,41 +6065,41 @@ msgstr "" msgid "Delete the following snapshots permanently?" msgstr "Véglegesen törlöd az alábbi pillanatképeket?" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "Sorszám" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "Dátum" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 msgid "Delete Snapshots" msgstr "Pillanatképek törlése" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 msgid "Create Snapshot" msgstr "Pillanatkép létrehozása" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "Visszaállít" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 msgid "will be used at next boot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "Visszaállítás erre a pillanatképre: %(number)s" @@ -6110,8 +6111,8 @@ msgid "" "currently only available on %(types_supported)s filesystems." msgstr "" "Az általad használt fájlrendszer típusa: %(fs_type)s. A " -"Pillanatképek jelenleg csak a következő fájlrendszereken érhető el: " -"%(types_supported)s." +"Pillanatképek jelenleg csak a következő fájlrendszereken érhető el: " +"%(types_supported)s." #: plinth/modules/snapshot/templates/snapshot_rollback.html:12 msgid "Roll back the system to this snapshot?" @@ -6127,7 +6128,7 @@ msgstr "" "állapotáról. Képes leszel visszavonni egy visszaállítást azáltal hogy " "visszatérsz az újonnan létrehozott pillanatképre." -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "Visszaállítás erre a pillanatképre: %(number)s" @@ -6220,11 +6221,11 @@ msgid "" "client matches one of these fingerprints." msgstr "" -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 msgid "Fingerprint" msgstr "Ujjlenyomat" @@ -6406,27 +6407,27 @@ msgstr "Megosztás" msgid "Other directory (specify below)" msgstr "" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 msgid "The following storage devices are in use:" msgstr "A következő tárolóeszközök vannak használatban:" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "Címke" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "Csatolási pont" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 msgid "Used" msgstr "Felhasznált" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "Partíció kibővítése" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -6437,13 +6438,13 @@ msgstr "" "követően. A root partíció kibővíthető erre a területre. Ez további szabad " "területet biztosíthat a fájljaid tárolásához." -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "Root partíció kibővítése" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -6577,25 +6578,25 @@ msgstr "" msgid "Local introducer" msgstr "Helyi bevezető" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 msgid "Pet Name" msgstr "Becenév" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "Új bevezető hozzáadása" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 msgid "Add" msgstr "Hozzáadás" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "Csatlakozott bevezetők" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "Eltávolít" @@ -6766,19 +6767,19 @@ msgstr "Orbot: Tor proxy Android platformra" msgid "Tor configuration is being updated" msgstr "A Tor beállításainak frissítése folyamatban" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 msgid "Onion Service" msgstr "Onion szolgáltatás" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 msgid "Ports" msgstr "Portok" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 msgid "Relay" msgstr "Továbbító" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, python-format msgid "" "If your %(box_name)s is behind a router or firewall, you should make sure " @@ -6832,8 +6833,8 @@ msgid "" "When enabled, Tiny Tiny RSS can be accessed by any user with a {box_name} login." msgstr "" -"Ha engedélyezett, a Tiny Tiny RSS elérhető lesz bármely felhasználó számára {box_name} felhasználónévvel." +"Ha engedélyezett, a Tiny Tiny RSS elérhető lesz bármely felhasználó számára {box_name} felhasználónévvel." #: plinth/modules/ttrss/__init__.py:37 msgid "" @@ -6875,7 +6876,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 msgid "Update" @@ -6909,7 +6910,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "" @@ -6929,11 +6930,11 @@ msgid "" "cannot be deactivated." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 msgid "Updating, please wait..." msgstr "Frissítés, várjon…" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 msgid "" "This may take a long time to complete. During an update, " @@ -6944,7 +6945,7 @@ msgstr "" "van ez a webes felület átmenetileg elérhetetlenné válhat és hibát jelezhet. " "Ebben az esetben frissítsd az oldalt a folytatáshoz." -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, python-format msgid "" "\n" @@ -6972,32 +6973,32 @@ msgstr "" msgid "Dismiss" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "Frissítés…" -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, python-format msgid "There is a new %(box_name)s version available." msgstr "Új %(box_name)s verzió hozzáférhető." -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 msgid "Your Freedombox needs an update!" msgstr "A Freedombox frissítésre szorul!" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -7005,15 +7006,15 @@ msgid "" "\"%(snapshot_url)s\">Storage Snapshots before continuing." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 msgid "Manual Update" msgstr "Kézi frissítés" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 msgid "Update now" msgstr "Frissítés most" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 msgid "" "This may take a long time to complete. During an update, " "you cannot install apps. Also, this web interface may be temporarily " @@ -7024,7 +7025,7 @@ msgstr "" "felület átmenetileg elérhetetlenné válhat és hibát jelezhet. Ebben az " "esetben frissítsd az oldalt a folytatáshoz." -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 msgid "Show recent update logs" msgstr "Legutóbbi frissítési naplók megjelenítése" @@ -7209,8 +7210,8 @@ msgstr "Jelszó mentése" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "Felhasználó létrehozása" @@ -7267,21 +7268,21 @@ msgid "" "step." msgstr "" -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "Felhasználók" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "%(username)s felhasználó törlése" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "%(username)s felhasználó szerkesztése" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "%(username)s felhasználó törlése" + #: plinth/modules/users/templates/users_update.html:11 #, python-format msgid "Edit User %(username)s" @@ -7357,8 +7358,8 @@ msgstr "Érvénytelen kulcs." #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 msgid "Public Key" msgstr "Nyilvános kulcs" @@ -7443,7 +7444,7 @@ msgid "Allowed IPs" msgstr "" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 msgid "Last Connected Time" msgstr "Utolsó csatlakoztatási idő" @@ -7452,47 +7453,47 @@ msgstr "Utolsó csatlakoztatási idő" msgid "No peers configured to connect to this %(box_name)s yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, python-format msgid "Public key for this %(box_name)s:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 msgid "Not configured yet." msgstr "Még nincs konfigurálva." -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 msgid "Add a new peer" msgstr "Új társ hozzáadása" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 msgid "As a Client" msgstr "Ügyfélként" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 msgid "No connections to remote servers are configured yet." msgstr "A távoli kiszolgálókhoz még nincsenek konfigurálva kapcsolatok." -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 msgid "Add a new server" msgstr "Új kiszolgáló hozzáadása" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "Kapcsolat hozzáadása a kiszolgálóhoz" @@ -7524,40 +7525,40 @@ msgid "" "is configured with the following information." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 msgid "Server endpoints:" msgstr "Kiszolgáló végpontok:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 msgid "Server public key:" msgstr "Kiszolgáló nyilvános kulcsa:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "" @@ -7569,15 +7570,15 @@ msgid "" "public key and IP address." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 msgid "Server endpoint:" msgstr "Kiszolgáló végpont:" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "" @@ -7721,49 +7722,53 @@ msgstr "Telepítés" msgid "Service %(service_name)s is not running." msgstr "A szolgáltatás nem fut (%(service_name)s)." -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, python-format msgid "Core functionality and web interface for %(box_name)s" msgstr "Alapvető funkcionalitás és webes felület %(box_name)s eszközére" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" -msgstr "Navigációs sor ki- vagy bekapcsolása" +#: plinth/templates/base.html:107 +msgid " Home" +msgstr " Kezdőlap" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "Kezdőlap" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +msgid " Apps" +msgstr " Alkalmazások" + +#: plinth/templates/base.html:119 msgid "Apps" msgstr "Alkalmazások" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +msgid " System" +msgstr " Rendszer" + +#: plinth/templates/base.html:128 msgid "System" msgstr "Rendszer" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "Jelszómódosítás" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -msgid "Restart" -msgstr "Újraindítás" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 msgid "Shut down" msgstr "Leállítás" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "Kijelentkezés" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 msgid "Select language" msgstr "Válassz nyelvet" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "Bejelentkezés" @@ -7827,7 +7832,7 @@ msgstr "Homebrew:" msgid "RPM:" msgstr "RPM:" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -7845,10 +7850,6 @@ msgstr "" "Engedélyezd néhány alkalmazásnak, hogy " "hivatkozásokat adjanak ehhez az oldalhoz." -#: plinth/templates/index.html:46 -msgid "Configure »" -msgstr "Beállítás »" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -7881,7 +7882,7 @@ msgstr "Honlap" msgid "Source Code" msgstr "Forráskód" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "Adományozás" @@ -7920,6 +7921,10 @@ msgstr "" "Jelenleg a következő hálózati interfészek vannak belsőként konfigurálva: " "%(interface_list)s" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 msgid "Notifications" msgstr "Értesítések" @@ -7956,15 +7961,15 @@ msgstr "" "nem használod a DMZ funkciót. Be kell állítanod a port továbbítást a " "routeren. A következő portokat kell továbbítani a %(service_name)s számára:" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 msgid "Protocol" msgstr "Protokoll" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, python-format msgid "To %(box_name)s Ports" msgstr "%(box_name)s portokhoz" @@ -8019,6 +8024,24 @@ msgstr "befejezettségi szint: %(percentage)s%%" msgid "Gujarati" msgstr "Gudzsaráti" +#~ msgid "Show Ports" +#~ msgstr "Portok mutatása" + +#~ msgid "Learn more »" +#~ msgstr "Bővebben »" + +#~ msgid "Restart »" +#~ msgstr "Újraindítás »" + +#~ msgid "Shut Down »" +#~ msgstr "Leállítás »" + +#~ msgid "Toggle navigation" +#~ msgstr "Navigációs sor ki- vagy bekapcsolása" + +#~ msgid "Configure »" +#~ msgstr "Beállítás »" + #~ msgid "Show connection %(connection.name)s" #~ msgstr "%(connection.name)s kapcsolat megjelenítése" @@ -8744,15 +8767,6 @@ msgstr "Gudzsaráti" #~ msgid "DAVDroid" #~ msgstr "DAVDroid" -#~ msgid " Home" -#~ msgstr " Kezdőlap" - -#~ msgid " Apps" -#~ msgstr " Alkalmazások" - -#~ msgid " System" -#~ msgstr " Rendszer" - #~ msgid "Archive name" #~ msgstr "Archívum neve" diff --git a/plinth/locale/id/LC_MESSAGES/django.po b/plinth/locale/id/LC_MESSAGES/django.po index 5b4c6d27a..210574acc 100644 --- a/plinth/locale/id/LC_MESSAGES/django.po +++ b/plinth/locale/id/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Indonesian (FreedomBox)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: 2018-11-02 00:44+0000\n" "Last-Translator: ButterflyOfFire \n" "Language-Team: Indonesian diaspora.%(domain_name)s " msgstr "" +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1699,16 +1706,16 @@ msgid "About" msgstr "Tentang" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 msgid "Status" msgstr "Status" @@ -1844,7 +1851,7 @@ msgstr "" msgid "Port {name} ({details}) unavailable for external networks" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -1853,59 +1860,53 @@ msgid "" "system with systemd 'systemctl start firewalld'." msgstr "" -#: plinth/modules/firewall/templates/firewall.html:28 -#, fuzzy -#| msgid "Ports" -msgid "Show Ports" -msgstr "Ports" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "Layanan/Port" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "Aktifkan" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "Non-Aktifkan" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " "disabled in the firewall." msgstr "" -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -1943,7 +1944,7 @@ msgid "" "modify it if necessary." msgstr "" -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "Jalankan Pengaturan" @@ -2042,41 +2043,41 @@ msgstr "" msgid "Git" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 #, fuzzy #| msgid "Actions" msgid "Manage Repositories" msgstr "Aksi" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 #, fuzzy #| msgid "Actions" msgid "Create repository" msgstr "Aksi" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 #, fuzzy #| msgid "No wikis or blogs available." msgid "No repositories available." msgstr "Tidak ada wiki atau blogs yang tersedia." -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 -#, fuzzy, python-format -#| msgid "Delete %(name)s" -msgid "Delete repository %(repo.name)s" -msgstr "Hapus %(name)s" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 -msgid "Cloning…" -msgstr "" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 #, fuzzy, python-format #| msgid "Go to site %(site)s" msgid "Go to repository %(repo.name)s" msgstr "Pergi ke situs %(site)s" +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 +msgid "Cloning…" +msgstr "" + +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 +#, fuzzy, python-format +#| msgid "Delete %(name)s" +msgid "Delete repository %(repo.name)s" +msgstr "Hapus %(name)s" + #: plinth/modules/gitweb/templates/gitweb_delete.html:12 #, fuzzy, python-format #| msgid "Delete Wiki or Blog %(name)s" @@ -2139,6 +2140,27 @@ msgid "Contribute" msgstr "" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, fuzzy, python-format +#| msgid "You are running Plinth version %(version)s." +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "Anda menjalankan Plinth versi %(version)s." + +#: plinth/modules/help/templates/help_about.html:23 +#, python-format +msgid "" +"There is a new %(box_name)s version available." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, fuzzy, python-format +#| msgid "%(box_name)s Setup" +msgid "%(box_name)s is up to date." +msgstr "Pengaturan %(box_name)s" + +#: plinth/modules/help/templates/help_about.html:35 #, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2150,7 +2172,7 @@ msgid "" "your data stays with you." msgstr "" -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2160,7 +2182,7 @@ msgid "" "returning the Internet to its intended peer-to-peer architecture." msgstr "" -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2168,38 +2190,19 @@ msgid "" "package." msgstr "" -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the %(box_name)s Wiki." msgstr "" -#: plinth/modules/help/templates/help_about.html:60 -msgid "Learn more »" +#: plinth/modules/help/templates/help_about.html:78 +#, fuzzy +#| msgid "Learn more »" +msgid "Learn more" msgstr "Pelajari lainnya »" -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, fuzzy, python-format -#| msgid "You are running Plinth version %(version)s." -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "Anda menjalankan Plinth versi %(version)s." - -#: plinth/modules/help/templates/help_about.html:69 -#, python-format -msgid "" -"There is a new %(box_name)s version available." -msgstr "" - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, fuzzy, python-format -#| msgid "%(box_name)s Setup" -msgid "%(box_name)s is up to date." -msgstr "Pengaturan %(box_name)s" - #: plinth/modules/help/templates/help_base.html:21 #: plinth/modules/help/templates/help_index.html:61 #, python-format @@ -2265,7 +2268,7 @@ msgid "Thank you!" msgstr "" #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 msgid "Help" msgstr "Bantuan" @@ -2301,7 +2304,7 @@ msgid "" "channel using the IRC web interface." msgstr "" -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 #, fuzzy #| msgid "{box_name} Manual" msgid "Download as PDF" @@ -2495,16 +2498,16 @@ msgstr "Membuat Wiki atau Blog" msgid "No wikis or blogs available." msgstr "Tidak ada wiki atau blogs yang tersedia." -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "Hapus situs %(site)s" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "Pergi ke situs %(site)s" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "Hapus situs %(site)s" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2599,8 +2602,8 @@ msgstr "" msgid "Chat Client" msgstr "" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "" @@ -2632,67 +2635,67 @@ msgstr "" msgid "Certificates" msgstr "Tidak ada Sertifikat" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 msgid "Domain" msgstr "Domain" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "Keamanan Website" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 msgid "Actions" msgstr "Aksi" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, python-format msgid "Valid, expires on %(expiry_date)s" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 msgid "Revoked" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, python-format msgid "Expired on %(expiry_date)s" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 #, fuzzy #| msgid "No certficate" msgid "Invalid test certificate" msgstr "Tidak ada Sertifikat" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 #, fuzzy #| msgid "No certficate" msgid "No certificate" msgstr "Tidak ada Sertifikat" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, python-format msgid "" "No domains have been configured. Configure " @@ -2771,12 +2774,6 @@ msgstr "" msgid "Element" msgstr "" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -2863,59 +2860,59 @@ msgstr "" msgid "Wiki" msgstr "" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 #, fuzzy #| msgid "Administrator Account" msgid "Administrator Password" msgstr "Akun Administrator" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." msgstr "" -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 #, fuzzy #| msgid "Service" msgid "Server URL" msgstr "Layanan" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." msgstr "" -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 #, fuzzy #| msgid "Enable application" msgid "Enable public registrations" msgstr "Aktifkan aplikasi" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." msgstr "" -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 #, fuzzy #| msgid "Enable application" msgid "Enable private mode" msgstr "Aktifkan aplikasi" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 msgid "" "If enabled, access will be restricted. Only people who have accounts can " "read/write to the wiki. Public registrations will also be disabled." msgstr "" -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 msgid "Default Skin" msgstr "" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -3019,13 +3016,13 @@ msgstr "Aktifkan PageKite" msgid "When disabled, players cannot die or receive damage of any kind." msgstr "" -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "Address" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "Port" @@ -3179,109 +3176,108 @@ msgstr "" msgid "Monkeysphere" msgstr "Monkeysphere" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "Publikasikan kunci ke keyserver..." -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "Batal" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "Layanan" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 msgid "Domains" msgstr "Domain" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 msgid "OpenPGP Fingerprint" msgstr "Sidik Jari OpenPGP" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 msgid "Secure Shell" msgstr "Secure Shell" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 msgid "Other" msgstr "Lainnya" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "Tampilkan rincial untuk kunci %(fingerprint)s" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 msgid "-" msgstr "-" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "Impor Kunci" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "Publikasikan Kunci" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 msgid "Add Domains" msgstr "Tambah Domain" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 msgid "SSH Key Type" msgstr "Tipe Kunci SSH" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 msgid "SSH Key Size" msgstr "Ukuran Kunci SSH" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 msgid "SSH Fingerprint" msgstr "Sidik Jari SSH" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "Berkas Kunci" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 msgid "Available Domains" msgstr "Domain yang Tersedia" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 msgid "Added Domains" msgstr "Domain di Tambahkan" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 msgid "Download the key" msgstr "Unduh kunci" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "Tanda tangani kunci" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 msgid "Send the key back to the keyservers" msgstr "Kirim kembali kunci ke keyserver" @@ -3373,7 +3369,7 @@ msgstr "" msgid "All web apps" msgstr "" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 #, fuzzy #| msgid "Service" msgid "Services" @@ -3465,8 +3461,8 @@ msgid "" msgstr "" #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "Gateway" @@ -3545,7 +3541,7 @@ msgid "-- select --" msgstr "-- pilih --" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 msgid "SSID" msgstr "SSID" @@ -3554,7 +3550,7 @@ msgid "The visible name of the network." msgstr "" #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "Mode" @@ -3583,7 +3579,7 @@ msgid "B/G (2.4 GHz)" msgstr "B/G (2.4 GHz)" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 #, fuzzy msgid "Channel" msgstr "Channel" @@ -3734,181 +3730,181 @@ msgid "" "to be reminded later. Some of the other configuration steps may fail.

" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "Sunting Koneksi" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "Sunting" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "Hapus koneksi" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "Koneksi" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "ya" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "Perangkat" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 #, fuzzy msgid "MAC address" msgstr "MAC address" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 #, fuzzy msgid "Interface" msgstr "Interface" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 msgid "please check cable" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "%(ethernet_speed)s Mbit/s" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "%(wireless_bitrate)s Mbit/s" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "IPv4" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "IPv6" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 msgid "" "This interface should be connected to a local network/machine. If you " "connect this interface to a public network, services meant to be available " "only internally will become available externally. This is a security risk." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 msgid "" "This interface should receive your Internet connection. If you connect it to " "a local network/machine, many services meant to available only internally " "will not be available." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -3929,40 +3925,40 @@ msgstr "Hapus Koneksi" msgid "Delete connection %(name)s permanently?" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "Internet" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 msgid "Spacing" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "Ethernet" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "Wi-Fi" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "" @@ -3990,19 +3986,19 @@ msgstr "Jaringan Wi-Fi terdekat" msgid "Add Connection" msgstr "Tambah Koneksi" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "" @@ -4028,8 +4024,8 @@ msgstr "" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "" @@ -4117,7 +4113,7 @@ msgid "" "are no other devices on the network." msgstr "" -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -4606,95 +4602,95 @@ msgstr "" msgid "PageKite Domain" msgstr "Pagekite" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 msgid "Server domain" msgstr "" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " "pagekite.net server." msgstr "" -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "nama Kite" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." msgstr "" -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 msgid "Deleted custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 msgid "This service is already available as a standard service." msgstr "" -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 msgid "Added custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 msgid "Custom Services" msgstr "Kostumisasi Layanan" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 #, fuzzy #| msgid "Custom Services" msgid "Add Custom Service" msgstr "Kostumisasi Layanan" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "Hapus layanan ini" @@ -4776,13 +4772,18 @@ msgid "" "finished before shutting down or restarting." msgstr "" -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" -msgstr "Jalankan ulang »" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +#, fuzzy +#| msgid "Restart Now" +msgid "Restart" +msgstr "Jalankan ulang Sekarang" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" -msgstr "Matikan »" +#, fuzzy +#| msgid "Shut Down Now" +msgid "Shut Down" +msgstr "Matikan Sekarang" #: plinth/modules/power/templates/power_restart.html:17 msgid "" @@ -5072,23 +5073,23 @@ msgstr "" msgid "Dolphin" msgstr "" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 #, fuzzy #| msgid "Shared" msgid "Shares" msgstr "Shared" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 msgid "" "Note: Only specially created directories will be shared on selected disks, " "not the whole disk." msgstr "" -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 msgid "VFAT partitions are not supported" msgstr "" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the users module page." msgstr "" -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 msgid "Users who can currently access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 msgid "" "Users needing to re-enter their password on the password change page to " "access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 #, fuzzy #| msgid "Available Domains" msgid "Unavailable Shares" msgstr "Domain yang Tersedia" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." msgstr "" -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 #, fuzzy #| msgid "Shared" msgid "Share name" msgstr "Shared" -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 #, fuzzy #| msgid "Actions" msgid "Action" @@ -5254,25 +5255,25 @@ msgid "" "services." msgstr "" -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 msgid "Show security report" msgstr "" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "" -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5316,43 +5317,43 @@ msgid "" "running." msgstr "" -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 #, fuzzy #| msgid "Name" msgid "App Name" msgstr "Nama" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 msgid "Current Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 msgid "Past Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 msgid "Sandboxed" msgstr "" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 msgid "Sandbox Coverage" msgstr "" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 msgid "N/A" msgstr "" -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 #, fuzzy #| msgid "yes" msgid "Yes" msgstr "ya" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 msgid "No" msgstr "" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 msgid "Not running" msgstr "" @@ -5499,32 +5500,32 @@ msgstr "" msgid "Shares should be either public or shared with at least one group" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 #, fuzzy #| msgid "Add Service" msgid "Add share" msgstr "Tambah Layanan" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "" -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 #, fuzzy #| msgid "Shared" msgid "Shared Over" msgstr "Shared" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 msgid "With Groups" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "" @@ -5666,43 +5667,43 @@ msgstr "" msgid "Delete the following snapshots permanently?" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "Tanggal" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 #, fuzzy #| msgid "Delete %(name)s" msgid "Delete Snapshots" msgstr "Hapus %(name)s" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 msgid "Create Snapshot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 msgid "will be used at next boot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "" @@ -5725,7 +5726,7 @@ msgid "" "the newly created snapshot." msgstr "" -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "" @@ -5825,11 +5826,11 @@ msgid "" "client matches one of these fingerprints." msgstr "" -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 #, fuzzy #| msgid "SSH Fingerprint" msgid "Fingerprint" @@ -6014,27 +6015,27 @@ msgstr "Shared" msgid "Other directory (specify below)" msgstr "" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 msgid "The following storage devices are in use:" msgstr "" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "Mount Point" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 msgid "Used" msgstr "Digunakan" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -6042,13 +6043,13 @@ msgid "" "will provide you additional free space to store your files." msgstr "" -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -6155,29 +6156,29 @@ msgstr "" msgid "Local introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 #, fuzzy #| msgid "Name" msgid "Pet Name" msgstr "Nama" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 #, fuzzy #| msgid "Address" msgid "Add" msgstr "Address" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "" @@ -6323,23 +6324,23 @@ msgstr "" msgid "Tor configuration is being updated" msgstr "" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 #, fuzzy #| msgid "Service" msgid "Onion Service" msgstr "Layanan" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 #, fuzzy msgid "Ports" msgstr "Ports" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 #, fuzzy msgid "Relay" msgstr "Relay" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, python-format msgid "" "If your %(box_name)s is behind a router or firewall, you should make sure " @@ -6420,7 +6421,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 msgid "Update" @@ -6461,7 +6462,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "" @@ -6481,11 +6482,11 @@ msgid "" "cannot be deactivated." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 msgid "Updating, please wait..." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 msgid "" "This may take a long time to complete. During an update, " @@ -6493,7 +6494,7 @@ msgid "" "case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, fuzzy, python-format #| msgid "%(box_name)s Setup" msgid "" @@ -6520,34 +6521,34 @@ msgstr "" msgid "Dismiss" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, python-format msgid "There is a new %(box_name)s version available." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 #, fuzzy #| msgid "FreedomBox" msgid "Your Freedombox needs an update!" msgstr "FreedomBox" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -6555,26 +6556,26 @@ msgid "" "\"%(snapshot_url)s\">Storage Snapshots before continuing." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 #, fuzzy #| msgid "Manual" msgid "Manual Update" msgstr "Panduan" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 #, fuzzy #| msgid "Update URL" msgid "Update now" msgstr "Perbaharui URL" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 msgid "" "This may take a long time to complete. During an update, " "you cannot install apps. Also, this web interface may be temporarily " "unavailable and show an error. In that case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 msgid "Show recent update logs" msgstr "" @@ -6760,8 +6761,8 @@ msgstr "" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "" @@ -6818,21 +6819,21 @@ msgid "" "step." msgstr "" -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "" + #: plinth/modules/users/templates/users_update.html:11 #, fuzzy, python-format #| msgid "Delete Wiki or Blog %(name)s" @@ -6909,8 +6910,8 @@ msgstr "Aksi" #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 #, fuzzy #| msgid "Publish Key" msgid "Public Key" @@ -7001,7 +7002,7 @@ msgid "Allowed IPs" msgstr "" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 msgid "Last Connected Time" msgstr "" @@ -7010,47 +7011,47 @@ msgstr "" msgid "No peers configured to connect to this %(box_name)s yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, python-format msgid "Public key for this %(box_name)s:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 msgid "Not configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 msgid "Add a new peer" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 msgid "As a Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 #, fuzzy #| msgid "Add Connection" @@ -7088,42 +7089,42 @@ msgid "" "is configured with the following information." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 #, fuzzy #| msgid "SSH Fingerprint" msgid "Server endpoints:" msgstr "Sidik Jari SSH" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 msgid "Server public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "" @@ -7135,17 +7136,17 @@ msgid "" "public key and IP address." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 #, fuzzy #| msgid "SSH Fingerprint" msgid "Server endpoint:" msgstr "Sidik Jari SSH" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "" @@ -7297,55 +7298,59 @@ msgstr "" msgid "Service %(service_name)s is not running." msgstr "" -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, python-format msgid "Core functionality and web interface for %(box_name)s" msgstr "" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" +#: plinth/templates/base.html:107 +msgid " Home" msgstr "" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +#, fuzzy +#| msgid "Apps" +msgid " Apps" +msgstr "Apps" + +#: plinth/templates/base.html:119 msgid "Apps" msgstr "Apps" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +msgid " System" +msgstr "" + +#: plinth/templates/base.html:128 msgid "System" msgstr "" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -#, fuzzy -#| msgid "Restart Now" -msgid "Restart" -msgstr "Jalankan ulang Sekarang" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 #, fuzzy #| msgid "Shut Down Now" msgid "Shut down" msgstr "Matikan Sekarang" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 #, fuzzy #| msgid "Language" msgid "Select language" msgstr "Bahasa" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "" @@ -7409,7 +7414,7 @@ msgstr "" msgid "RPM:" msgstr "" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -7423,12 +7428,6 @@ msgid "" "this page." msgstr "" -#: plinth/templates/index.html:46 -#, fuzzy -#| msgid "Configure" -msgid "Configure »" -msgstr "Konfigurasi" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -7453,7 +7452,7 @@ msgstr "" msgid "Source Code" msgstr "" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "" @@ -7489,6 +7488,10 @@ msgid "" "%(interface_list)s" msgstr "" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 #, fuzzy #| msgid "No certficate" @@ -7524,15 +7527,15 @@ msgid "" "your router. You should forward the following ports for %(service_name)s:" msgstr "" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 msgid "Protocol" msgstr "" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, fuzzy, python-format #| msgid "%(box_name)s Setup" msgid "To %(box_name)s Ports" @@ -7586,6 +7589,25 @@ msgstr "" msgid "Gujarati" msgstr "" +#, fuzzy +#~| msgid "Ports" +#~ msgid "Show Ports" +#~ msgstr "Ports" + +#~ msgid "Learn more »" +#~ msgstr "Pelajari lainnya »" + +#~ msgid "Restart »" +#~ msgstr "Jalankan ulang »" + +#~ msgid "Shut Down »" +#~ msgstr "Matikan »" + +#, fuzzy +#~| msgid "Configure" +#~ msgid "Configure »" +#~ msgstr "Konfigurasi" + #, fuzzy #~| msgid "Name" #~ msgid "Disk Name" @@ -7728,11 +7750,6 @@ msgstr "" #~ msgid "Error setting default app: {exception}" #~ msgstr "Kesalahan pengaturan bahasa: {exception}" -#, fuzzy -#~| msgid "Apps" -#~ msgid " Apps" -#~ msgstr "Apps" - #, fuzzy #~| msgid "Kite name" #~ msgid "Archive name" diff --git a/plinth/locale/it/LC_MESSAGES/django.po b/plinth/locale/it/LC_MESSAGES/django.po index efaa901f5..aff435dcb 100644 --- a/plinth/locale/it/LC_MESSAGES/django.po +++ b/plinth/locale/it/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: 2020-11-23 22:49+0000\n" "Last-Translator: Diego Roversi \n" "Language-Team: Italian diaspora.%(domain_name)s" +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "Configurazione" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1784,16 +1791,16 @@ msgid "About" msgstr "Circa" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 msgid "Status" msgstr "Stato" @@ -1951,7 +1958,7 @@ msgstr "Porta {name} ({details}) disponibile per reti esterne" msgid "Port {name} ({details}) unavailable for external networks" msgstr "Porta {name} ({details}) non disponibile per reti esterne" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -1965,44 +1972,40 @@ msgstr "" "'service firewall start' o nol caso di un sistema con systemd 'systemctl " "start firewalld'." -#: plinth/modules/firewall/templates/firewall.html:28 -msgid "Show Ports" -msgstr "Mostra Porte" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "Servizio/Porta" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "Abilitato" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "Disabilitato" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "Permesso" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "Permesso (solo internamente)" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "Permesso (solo esternamente)" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "Bloccato" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " @@ -2012,13 +2015,13 @@ msgstr "" "abilitato anche sul firewall, e quando lo disabiliti, viene disabilitato " "anche nel firewall." -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -2062,7 +2065,7 @@ msgstr "" "Puoi controllare le impostazioni di rete e " "modificarle se necessario." -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "Avvia Configurazione" @@ -2169,33 +2172,33 @@ msgstr "" msgid "Git" msgstr "Git" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 msgid "Manage Repositories" msgstr "Gestire i repository" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 msgid "Create repository" msgstr "Creare il repository" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 msgid "No repositories available." msgstr "Non ci sono depositi disponibili." -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 -#, python-format -msgid "Delete repository %(repo.name)s" -msgstr "Cancellare il repository %(repo.name)s" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 -msgid "Cloning…" -msgstr "Clonazione…" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 #, python-format msgid "Go to repository %(repo.name)s" msgstr "Vai al deposito %(repo.name)s" +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 +msgid "Cloning…" +msgstr "Clonazione…" + +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 +#, python-format +msgid "Delete repository %(repo.name)s" +msgstr "Cancellare il repository %(repo.name)s" + #: plinth/modules/gitweb/templates/gitweb_delete.html:12 #, python-format msgid "Delete Git Repository %(name)s" @@ -2256,6 +2259,27 @@ msgid "Contribute" msgstr "Contribuire" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, python-format +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "Stai eseguendo %(os_release)s, versione %(box_name)s %(version)s." + +#: plinth/modules/help/templates/help_about.html:23 +#, python-format +msgid "" +"There is a new %(box_name)s version available." +msgstr "" +"Una nuova versione di %(box_name)s è disponibile." + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, python-format +msgid "%(box_name)s is up to date." +msgstr "%(box_name)s è aggiornato." + +#: plinth/modules/help/templates/help_about.html:35 #, fuzzy, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2274,7 +2298,7 @@ msgstr "" "network, email, proxy web e relay Tor, in un dispositivo che può rimpiazzare " "il tuo router WiFi, in modo che i tuoi dati restino con te." -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2292,7 +2316,7 @@ msgstr "" "Internet ad un'architettura peer-to-peer, così com'era stata concepita dai " "suoi creatori." -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, fuzzy, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2302,7 +2326,7 @@ msgstr "" "Ci sono numerosi progetti mirati a realizzare futuri servizi distribuiti. " "%(box_name)s mira a portarli tutti insieme in un apposito pacchetto." -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the wiki." -#: plinth/modules/help/templates/help_about.html:60 +#: plinth/modules/help/templates/help_about.html:78 #, fuzzy -msgid "Learn more »" -msgstr "Impara di più »" - -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, python-format -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "Stai eseguendo %(os_release)s, versione %(box_name)s %(version)s." - -#: plinth/modules/help/templates/help_about.html:69 -#, python-format -msgid "" -"There is a new %(box_name)s version available." -msgstr "" -"Una nuova versione di %(box_name)s è disponibile." - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, python-format -msgid "%(box_name)s is up to date." -msgstr "%(box_name)s è aggiornato." +#| msgid "Learn more..." +msgid "Learn more" +msgstr "Impara di più..." #: plinth/modules/help/templates/help_base.html:21 #: plinth/modules/help/templates/help_index.html:61 @@ -2422,7 +2426,7 @@ msgid "Thank you!" msgstr "Grazie!" #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 msgid "Help" msgstr "Aiuto" @@ -2471,7 +2475,7 @@ msgstr "" "oftc.net/?randomnick=1&channels=freedombox&prompt=1\">#freedombox usando " "l'interfaccia web IRC." -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 msgid "Download as PDF" msgstr "Scaricare in formato PDF" @@ -2698,16 +2702,16 @@ msgstr "Crea Wiki o Blog" msgid "No wikis or blogs available." msgstr "Nessun wiki o blog disponibile." -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "Cancella sito %(site)s" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "Vai nel sito %(site)s" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "Cancella sito %(site)s" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, fuzzy, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2808,8 +2812,8 @@ msgstr "JSXC" msgid "Chat Client" msgstr "Client" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "Informazioni sulla licenza JavaScript" @@ -2849,64 +2853,64 @@ msgstr "Let's Encrypt" msgid "Certificates" msgstr "Certificati" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 #, fuzzy msgid "Domain" msgstr "Dominio" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "Stato Certificato" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "Sicurezza Sito Web" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 msgid "Actions" msgstr "Azioni" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, python-format msgid "Valid, expires on %(expiry_date)s" msgstr "Valido, scade il %(expiry_date)s" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 msgid "Revoked" msgstr "Revocato" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, python-format msgid "Expired on %(expiry_date)s" msgstr "Scade il %(expiry_date)s" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 msgid "Invalid test certificate" msgstr "Test certificato non valido" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "Non valido (%(reason)s)" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 msgid "No certificate" msgstr "Nessun certificato" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "Riottieni" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "Revoca" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "Ottieni" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, fuzzy, python-format msgid "" "No domains have been configured. Configure " @@ -3001,12 +3005,6 @@ msgstr "" msgid "Element" msgstr "Element" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "Configurazione" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -3122,11 +3120,11 @@ msgstr "MediaWiki" msgid "Wiki" msgstr "Wiki" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 msgid "Administrator Password" msgstr "Password Amministratore" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." @@ -3134,23 +3132,23 @@ msgstr "" "Imposta una nuova password per il profilo amministratore (admin) di " "MediaWiki. Lascia vuoto questo campo per mantenere la password corrente." -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 #, fuzzy #| msgid "Server port" msgid "Server URL" msgstr "Porta server" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." msgstr "" -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 msgid "Enable public registrations" msgstr "Attivare le registrazioni pubbliche" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." @@ -3158,11 +3156,11 @@ msgstr "" "Se abilitato, chiunque nell'Internet potrà creare un profilo nella tua " "istanza MediaWiki." -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 msgid "Enable private mode" msgstr "Abilita modalità privata" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 #, fuzzy #| msgid "" #| "If enabled, Access will be restricted. Only people who have accounts can " @@ -3175,11 +3173,11 @@ msgstr "" "potranno scrivere/leggere nel wiki. Inoltre saranno disabilitate le " "registrazioni pubbliche." -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 msgid "Default Skin" msgstr "Tema predefinito" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -3282,13 +3280,13 @@ msgstr "" "Quando disabilitato i giocatori non potranno morire o subire nessun tipo di " "danno." -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "Indirizzo" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "Porta" @@ -3455,96 +3453,95 @@ msgstr "" msgid "Monkeysphere" msgstr "Monkeysphere" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "Pubblicazione della chiave nel keyserver…" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "Cancella" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "Servizio" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 msgid "Domains" msgstr "Domini" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 msgid "OpenPGP Fingerprint" msgstr "OpenPGP Fingerprint" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 msgid "Secure Shell" msgstr "Secure Shell" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 msgid "Other" msgstr "Altro" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "Mostra i dettagli per la chiave %(fingerprint)s" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 msgid "-" msgstr "-" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "Importa chiave" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "Importa chiave" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 msgid "Add Domains" msgstr "Aggiungi Domini" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "OpenPGP User ID" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "Data Importazione Chiave" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 msgid "SSH Key Type" msgstr "Tipo Chiave SSH" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 #, fuzzy msgid "SSH Key Size" msgstr "Grandezza Chiave SSH" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 msgid "SSH Fingerprint" msgstr "SSH Fingerprint" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "Key File" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 msgid "Available Domains" msgstr "Domini disponibili" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 msgid "Added Domains" msgstr "Domini Aggiunti" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" @@ -3552,15 +3549,15 @@ msgstr "" "Dopo che la chiave viene pubblicata nei keyserver, può essere firmata usando " "GnuPG con i comandi seguenti:" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 msgid "Download the key" msgstr "Scarica la chiave" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "Firma la chiave" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 msgid "Send the key back to the keyservers" msgstr "Rispedisci la chiave ai keyserver" @@ -3653,7 +3650,7 @@ msgstr "" msgid "All web apps" msgstr "" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 msgid "Services" msgstr "Servizi" @@ -3750,8 +3747,8 @@ msgstr "" "sull'indirizzo IP." #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "Gateway" @@ -3840,7 +3837,7 @@ msgid "-- select --" msgstr "-- seleziona--" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 msgid "SSID" msgstr "SSID" @@ -3849,7 +3846,7 @@ msgid "The visible name of the network." msgstr "Il nome visibile sella rete." #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "Modalità" @@ -3878,7 +3875,7 @@ msgid "B/G (2.4 GHz)" msgstr "B/G (2.4 GHz)" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 msgid "Channel" msgstr "Canale" @@ -4034,159 +4031,159 @@ msgid "" "to be reminded later. Some of the other configuration steps may fail.

" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "Modifica Connessione" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "Modifica" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "Disattiva" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "Attiva" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "Cancella connessione" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "Connessione" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "Connessione primaria" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "si" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "Dispositivo" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "Stato" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "Causa stato" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 msgid "MAC address" msgstr "Indirizzo MAC" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 msgid "Interface" msgstr "Interfaccia" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "Descrizione" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "Collegamento fisico" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "Stato collegamenti" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "il cavo è connesso" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 #, fuzzy msgid "please check cable" msgstr "controlla il cavo per favore" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "Velocità" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "%(ethernet_speed)s Mbit/s" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "%(wireless_bitrate)s Mbit/s" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "Potenza segnale" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "IPv4" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "Metodo" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "Indirizso IP" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "Server DNS" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "Default" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "IPv6" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "Questa connessione non è attiva." -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "Sicurezza" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "Zona firewall" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 msgid "" "This interface should be connected to a local network/machine. If you " "connect this interface to a public network, services meant to be available " @@ -4197,8 +4194,8 @@ msgstr "" "essere disponibili solo internamente, saranno disponibili anche " "esternamente. Questo rappresenta un rischio per la sicurezza." -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 msgid "" "This interface should receive your Internet connection. If you connect it to " "a local network/machine, many services meant to available only internally " @@ -4208,13 +4205,13 @@ msgstr "" "connessa ad una rete/macchina locale, molti servizi impostati per funzionare " "solo internamente, non saranno disponibili." -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "Esterna" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -4235,40 +4232,40 @@ msgstr "Cancella Connessione" msgid "Delete connection %(name)s permanently?" msgstr "Cancellare definitivamente %(name)s la connessione?" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "Internet" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 msgid "Spacing" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "Ethernet" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "Wi-Fi" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "Mostra connessione %(name)s" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "Interna" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "Computer" @@ -4294,19 +4291,19 @@ msgstr "Reti WiFi vicine" msgid "Add Connection" msgstr "Aggiungi Connessione" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "Cancella connessione %(name)s" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "Attiva" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "Inattiva" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "Cancella connessione %(name)s" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "Crea..." @@ -4332,8 +4329,8 @@ msgstr "" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "" @@ -4417,7 +4414,7 @@ msgid "" "are no other devices on the network." msgstr "" -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -4934,11 +4931,11 @@ msgstr "Visibilità Pubblica" msgid "PageKite Domain" msgstr "Dominio PageKite" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 msgid "Server domain" msgstr "Dominio server" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " "pagekite.net server." @@ -4946,31 +4943,31 @@ msgstr "" "Selezione il tuo server pagekite. Imposta \"pagekite.net\" per usare il " "server predefinito di pagekite.net." -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "Porta server" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "Porta del tuo server pagekite (predefinita: 80)" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "Nome Kite" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "Esempio: mybox.pagekite.me" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "Nome Kite invalido" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "Segreto Kite" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." @@ -4978,53 +4975,53 @@ msgstr "" "Un segreto associate col kite o il segreto predefinito del tuo profile nel " "caso non sia state impostato nel kite." -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "protocollo" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "porta esterna (frontend)" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "porta interna (freedombox)" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "Abilita Sottodomini" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 msgid "Deleted custom service" msgstr "Cancella servizio personalizzato" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 msgid "This service is already available as a standard service." msgstr "Questo servizio è già disponibile come servizio standard." -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 msgid "Added custom service" msgstr "Servizio personalizzato aggiunto" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "Questo servizio è già presente" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 msgid "Custom Services" msgstr "Servizi personalizzati" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 msgid "Add Custom Service" msgstr "Aggiungi un servizio personalizzato" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "connesso a %(backend_host)s: %(backend_port)s" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "Cancella questo servizio" @@ -5113,13 +5110,16 @@ msgstr "" "la possibilità di aspettare che fimisca prima di spegnere o riavviare il " "sistema." -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" -msgstr "Riavvia »" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +msgid "Restart" +msgstr "" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" -msgstr "Spegni »" +#, fuzzy +#| msgid "Shut Down Now" +msgid "Shut Down" +msgstr "Spegni Ora" #: plinth/modules/power/templates/power_restart.html:17 msgid "" @@ -5446,23 +5446,23 @@ msgstr "" msgid "Dolphin" msgstr "Dolphin" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 #, fuzzy #| msgid "Shared" msgid "Shares" msgstr "Shares" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 msgid "" "Note: Only specially created directories will be shared on selected disks, " "not the whole disk." msgstr "" -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 msgid "VFAT partitions are not supported" msgstr "" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the users module page." msgstr "" -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 msgid "Users who can currently access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 msgid "" "Users needing to re-enter their password on the password change page to " "access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 msgid "Unavailable Shares" msgstr "Shares disponibili" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." msgstr "" -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 msgid "Share name" msgstr "Nome Share" -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 msgid "Action" msgstr "Azione" @@ -5604,25 +5604,25 @@ msgid "" "services." msgstr "" -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 msgid "Show security report" msgstr "Visualizza il rapporto sulla sicurezza" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "" -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5666,41 +5666,41 @@ msgid "" "running." msgstr "" -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 msgid "App Name" msgstr "Nome App" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 msgid "Current Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 msgid "Past Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 #, fuzzy #| msgid "Block Sandbox" msgid "Sandboxed" msgstr "Sandboxed" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 msgid "Sandbox Coverage" msgstr "Copertura della Sandbox" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 msgid "N/A" msgstr "" -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 msgid "Yes" msgstr "Si" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 msgid "No" msgstr "No" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 msgid "Not running" msgstr "" @@ -5841,28 +5841,28 @@ msgstr "" msgid "Shares should be either public or shared with at least one group" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 msgid "Add share" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "" -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 msgid "Shared Over" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 msgid "With Groups" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "" @@ -5986,41 +5986,41 @@ msgstr "" msgid "Delete the following snapshots permanently?" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 msgid "Delete Snapshots" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 msgid "Create Snapshot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 msgid "will be used at next boot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "" @@ -6043,7 +6043,7 @@ msgid "" "the newly created snapshot." msgstr "" -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "" @@ -6137,11 +6137,11 @@ msgid "" "client matches one of these fingerprints." msgstr "" -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 #, fuzzy #| msgid "SSH Fingerprint" msgid "Fingerprint" @@ -6317,27 +6317,27 @@ msgstr "Partage" msgid "Other directory (specify below)" msgstr "" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 msgid "The following storage devices are in use:" msgstr "" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 msgid "Used" msgstr "" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -6345,13 +6345,13 @@ msgid "" "will provide you additional free space to store your files." msgstr "" -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -6458,25 +6458,25 @@ msgstr "" msgid "Local introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 msgid "Pet Name" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 msgid "Add" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "" @@ -6622,19 +6622,19 @@ msgstr "" msgid "Tor configuration is being updated" msgstr "" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 msgid "Onion Service" msgstr "Servizio Onion" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 msgid "Ports" msgstr "Ports" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 msgid "Relay" msgstr "" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, python-format msgid "" "If your %(box_name)s is behind a router or firewall, you should make sure " @@ -6717,7 +6717,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 msgid "Update" @@ -6752,7 +6752,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "" @@ -6772,11 +6772,11 @@ msgid "" "cannot be deactivated." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 msgid "Updating, please wait..." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 msgid "" "This may take a long time to complete. During an update, " @@ -6784,7 +6784,7 @@ msgid "" "case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, fuzzy, python-format #| msgid "%(box_name)s is up to date." msgid "" @@ -6810,32 +6810,32 @@ msgstr "" msgid "Dismiss" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, python-format msgid "There is a new %(box_name)s version available." msgstr "C'è una nuova versione %(box_name)s disponibile." -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 msgid "Your Freedombox needs an update!" msgstr "La vostra FreedomBox ha bisogno di un aggiornamento!" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -6843,24 +6843,24 @@ msgid "" "\"%(snapshot_url)s\">Storage Snapshots before continuing." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 #, fuzzy #| msgid "Manual update" msgid "Manual Update" msgstr "Aggiornamento manuale" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 msgid "Update now" msgstr "Aggiorna adesso" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 msgid "" "This may take a long time to complete. During an update, " "you cannot install apps. Also, this web interface may be temporarily " "unavailable and show an error. In that case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 msgid "Show recent update logs" msgstr "" @@ -7035,8 +7035,8 @@ msgstr "" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "" @@ -7089,21 +7089,21 @@ msgid "" "step." msgstr "" -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "" + #: plinth/modules/users/templates/users_update.html:11 #, python-format msgid "Edit User %(username)s" @@ -7177,8 +7177,8 @@ msgstr "Chiave non valida." #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 msgid "Public Key" msgstr "Chiave pubblico" @@ -7263,7 +7263,7 @@ msgid "Allowed IPs" msgstr "" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 msgid "Last Connected Time" msgstr "Data dell'ultima connessione" @@ -7272,47 +7272,47 @@ msgstr "Data dell'ultima connessione" msgid "No peers configured to connect to this %(box_name)s yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, python-format msgid "Public key for this %(box_name)s:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 msgid "Not configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 msgid "Add a new peer" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 msgid "As a Client" msgstr "Come Client" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "Aggiungi Connessione a Server" @@ -7344,40 +7344,40 @@ msgid "" "is configured with the following information." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 msgid "Server endpoints:" msgstr "Endpoint del server:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 msgid "Server public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "" @@ -7389,15 +7389,15 @@ msgid "" "public key and IP address." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 msgid "Server endpoint:" msgstr "Endpoint del server:" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "" @@ -7538,49 +7538,53 @@ msgstr "" msgid "Service %(service_name)s is not running." msgstr "" -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, python-format msgid "Core functionality and web interface for %(box_name)s" msgstr "" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" +#: plinth/templates/base.html:107 +msgid " Home" msgstr "" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +msgid " Apps" +msgstr "" + +#: plinth/templates/base.html:119 msgid "Apps" msgstr "" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +msgid " System" +msgstr "" + +#: plinth/templates/base.html:128 msgid "System" msgstr "" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -msgid "Restart" -msgstr "" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 msgid "Shut down" msgstr "" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 msgid "Select language" msgstr "" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "" @@ -7644,7 +7648,7 @@ msgstr "" msgid "RPM:" msgstr "" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -7658,10 +7662,6 @@ msgid "" "this page." msgstr "" -#: plinth/templates/index.html:46 -msgid "Configure »" -msgstr "" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -7686,7 +7686,7 @@ msgstr "" msgid "Source Code" msgstr "" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "" @@ -7720,6 +7720,10 @@ msgid "" "%(interface_list)s" msgstr "" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 msgid "Notifications" msgstr "Notificazioni" @@ -7753,15 +7757,15 @@ msgid "" "your router. You should forward the following ports for %(service_name)s:" msgstr "" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 msgid "Protocol" msgstr "Protocollo" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, fuzzy, python-format #| msgid "%(box_name)s Setup" msgid "To %(box_name)s Ports" @@ -7815,6 +7819,19 @@ msgstr "%(percentage)s%% completata" msgid "Gujarati" msgstr "" +#~ msgid "Show Ports" +#~ msgstr "Mostra Porte" + +#, fuzzy +#~ msgid "Learn more »" +#~ msgstr "Impara di più »" + +#~ msgid "Restart »" +#~ msgstr "Riavvia »" + +#~ msgid "Shut Down »" +#~ msgstr "Spegni »" + #~ msgid "Show connection %(connection.name)s" #~ msgstr "Mostra connessione %(connection.name)s" diff --git a/plinth/locale/ja/LC_MESSAGES/django.po b/plinth/locale/ja/LC_MESSAGES/django.po index ee2735b28..a073a8a75 100644 --- a/plinth/locale/ja/LC_MESSAGES/django.po +++ b/plinth/locale/ja/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -92,8 +92,8 @@ msgid "Apache HTTP Server" msgstr "" #: plinth/modules/apache/__init__.py:44 -#: plinth/modules/monkeysphere/templates/monkeysphere.html:67 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:45 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:49 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:46 msgid "Web Server" msgstr "" @@ -149,11 +149,11 @@ msgid "Repository" msgstr "" #: plinth/modules/backups/forms.py:52 -#: plinth/modules/backups/templates/backups_delete.html:18 +#: plinth/modules/backups/templates/backups_delete.html:17 #: plinth/modules/ikiwiki/forms.py:15 -#: plinth/modules/networks/templates/connection_show.html:63 -#: plinth/modules/samba/templates/samba.html:77 -#: plinth/modules/sharing/templates/sharing.html:37 +#: plinth/modules/networks/templates/connection_show.html:58 +#: plinth/modules/samba/templates/samba.html:66 +#: plinth/modules/sharing/templates/sharing.html:33 msgid "Name" msgstr "" @@ -317,40 +317,40 @@ msgstr "" msgid "{box_name} storage" msgstr "" -#: plinth/modules/backups/templates/backups.html:30 +#: plinth/modules/backups/templates/backups.html:17 #: plinth/modules/backups/views.py:61 msgid "Create a new backup" msgstr "" -#: plinth/modules/backups/templates/backups.html:34 +#: plinth/modules/backups/templates/backups.html:21 msgid "Create Backup" msgstr "" -#: plinth/modules/backups/templates/backups.html:37 +#: plinth/modules/backups/templates/backups.html:24 msgid "Upload and restore a backup archive" msgstr "" -#: plinth/modules/backups/templates/backups.html:41 +#: plinth/modules/backups/templates/backups.html:28 msgid "Upload and Restore" msgstr "" -#: plinth/modules/backups/templates/backups.html:44 +#: plinth/modules/backups/templates/backups.html:31 msgid "Add a backup location" msgstr "" -#: plinth/modules/backups/templates/backups.html:48 +#: plinth/modules/backups/templates/backups.html:35 msgid "Add Backup Location" msgstr "" -#: plinth/modules/backups/templates/backups.html:51 +#: plinth/modules/backups/templates/backups.html:38 msgid "Add a remote backup location" msgstr "" -#: plinth/modules/backups/templates/backups.html:55 +#: plinth/modules/backups/templates/backups.html:42 msgid "Add Remote Backup Location" msgstr "" -#: plinth/modules/backups/templates/backups.html:58 +#: plinth/modules/backups/templates/backups.html:46 msgid "Existing Backups" msgstr "" @@ -375,11 +375,11 @@ msgstr "" msgid "Delete this archive permanently?" msgstr "" -#: plinth/modules/backups/templates/backups_delete.html:19 +#: plinth/modules/backups/templates/backups_delete.html:18 msgid "Time" msgstr "" -#: plinth/modules/backups/templates/backups_delete.html:36 +#: plinth/modules/backups/templates/backups_delete.html:34 #, python-format msgid "Delete Archive %(name)s" msgstr "" @@ -721,13 +721,13 @@ msgid "List" msgstr "" #: plinth/modules/bepasty/views.py:53 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:91 -#: plinth/modules/networks/templates/connection_show.html:48 -#: plinth/modules/samba/templates/samba.html:163 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:86 +#: plinth/modules/networks/templates/connection_show.html:43 +#: plinth/modules/samba/templates/samba.html:154 #: plinth/modules/wireguard/templates/wireguard_delete_client.html:24 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:33 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:73 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:74 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:77 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:78 msgid "Delete" msgstr "" @@ -802,35 +802,35 @@ msgstr "" msgid "Serving Domains" msgstr "" -#: plinth/modules/bind/templates/bind.html:16 +#: plinth/modules/bind/templates/bind.html:17 #: plinth/modules/ikiwiki/forms.py:12 -#: plinth/modules/names/templates/names.html:14 -#: plinth/modules/networks/templates/connection_show.html:83 -#: plinth/modules/samba/templates/samba.html:76 -#: plinth/modules/storage/templates/storage.html:28 +#: plinth/modules/names/templates/names.html:15 +#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/samba/templates/samba.html:65 +#: plinth/modules/storage/templates/storage.html:26 msgid "Type" msgstr "" -#: plinth/modules/bind/templates/bind.html:17 +#: plinth/modules/bind/templates/bind.html:18 msgid "Domain Names" msgstr "" -#: plinth/modules/bind/templates/bind.html:18 +#: plinth/modules/bind/templates/bind.html:19 msgid "Serving" msgstr "" -#: plinth/modules/bind/templates/bind.html:19 +#: plinth/modules/bind/templates/bind.html:20 msgid "IP addresses" msgstr "" -#: plinth/modules/bind/templates/bind.html:35 #: plinth/modules/bind/templates/bind.html:37 +#: plinth/modules/bind/templates/bind.html:39 msgid "Refresh IP address and domains" msgstr "" #: plinth/modules/bind/views.py:71 plinth/modules/coturn/views.py:39 #: plinth/modules/deluge/views.py:42 plinth/modules/dynamicdns/views.py:154 -#: plinth/modules/mumble/views.py:28 plinth/modules/pagekite/forms.py:90 +#: plinth/modules/mumble/views.py:28 plinth/modules/pagekite/forms.py:76 #: plinth/modules/quassel/views.py:29 plinth/modules/shadowsocks/views.py:59 #: plinth/modules/transmission/views.py:47 msgid "Configuration updated" @@ -898,29 +898,29 @@ msgstr "" msgid "Delete %(name)s" msgstr "" -#: plinth/modules/calibre/templates/calibre.html:23 +#: plinth/modules/calibre/templates/calibre.html:11 msgid "Manage Libraries" msgstr "" -#: plinth/modules/calibre/templates/calibre.html:27 -#: plinth/modules/calibre/templates/calibre.html:29 +#: plinth/modules/calibre/templates/calibre.html:15 +#: plinth/modules/calibre/templates/calibre.html:17 msgid "Create Library" msgstr "" -#: plinth/modules/calibre/templates/calibre.html:36 +#: plinth/modules/calibre/templates/calibre.html:24 msgid "No libraries available." msgstr "" -#: plinth/modules/calibre/templates/calibre.html:43 -#, python-format -msgid "Delete library %(library)s" -msgstr "" - -#: plinth/modules/calibre/templates/calibre.html:49 +#: plinth/modules/calibre/templates/calibre.html:31 #, python-format msgid "Go to library %(library)s" msgstr "" +#: plinth/modules/calibre/templates/calibre.html:37 +#, python-format +msgid "Delete library %(library)s" +msgstr "" + #: plinth/modules/calibre/views.py:39 msgid "Library created." msgstr "" @@ -997,16 +997,17 @@ msgid "General Configuration" msgstr "" #: plinth/modules/config/__init__.py:59 plinth/modules/dynamicdns/views.py:29 -#: plinth/modules/names/templates/names.html:29 -#: plinth/modules/names/templates/names.html:43 +#: plinth/modules/names/templates/names.html:30 +#: plinth/modules/names/templates/names.html:44 #: plinth/modules/snapshot/views.py:37 #: plinth/modules/tahoe/templates/tahoe-pre-setup.html:24 +#: plinth/templates/index.html:46 msgid "Configure" msgstr "" #: plinth/modules/config/__init__.py:63 plinth/modules/config/forms.py:68 #: plinth/modules/dynamicdns/forms.py:97 -#: plinth/modules/names/templates/names.html:15 +#: plinth/modules/names/templates/names.html:16 msgid "Domain Name" msgstr "" @@ -1285,8 +1286,7 @@ msgid "Low Memory" msgstr "" #: plinth/modules/diagnostics/templates/diagnostics.html:17 -#: plinth/modules/diagnostics/templates/diagnostics_button.html:13 -#: plinth/modules/diagnostics/templates/diagnostics_button.html:16 +#: plinth/modules/diagnostics/templates/diagnostics_button.html:11 msgid "Run Diagnostics" msgstr "" @@ -1319,11 +1319,11 @@ msgstr "" msgid "This app does not support diagnostics" msgstr "" -#: plinth/modules/diagnostics/templates/diagnostics_results.html:10 +#: plinth/modules/diagnostics/templates/diagnostics_results.html:11 msgid "Test" msgstr "" -#: plinth/modules/diagnostics/templates/diagnostics_results.html:11 +#: plinth/modules/diagnostics/templates/diagnostics_results.html:12 msgid "Result" msgstr "" @@ -1370,6 +1370,13 @@ msgid "" "href=\"https://diaspora.%(domain_name)s\"> diaspora.%(domain_name)s " msgstr "" +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1592,16 +1599,16 @@ msgid "About" msgstr "" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 msgid "Status" msgstr "" @@ -1731,7 +1738,7 @@ msgstr "" msgid "Port {name} ({details}) unavailable for external networks" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -1740,57 +1747,53 @@ msgid "" "system with systemd 'systemctl start firewalld'." msgstr "" -#: plinth/modules/firewall/templates/firewall.html:28 -msgid "Show Ports" -msgstr "" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " "disabled in the firewall." msgstr "" -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -1828,7 +1831,7 @@ msgid "" "modify it if necessary." msgstr "" -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "" @@ -1921,31 +1924,31 @@ msgstr "" msgid "Git" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 msgid "Manage Repositories" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 msgid "Create repository" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 msgid "No repositories available." msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 #, python-format -msgid "Delete repository %(repo.name)s" +msgid "Go to repository %(repo.name)s" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 msgid "Cloning…" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 #, python-format -msgid "Go to repository %(repo.name)s" +msgid "Delete repository %(repo.name)s" msgstr "" #: plinth/modules/gitweb/templates/gitweb_delete.html:12 @@ -2005,6 +2008,25 @@ msgid "Contribute" msgstr "" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, python-format +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:23 +#, python-format +msgid "" +"There is a new %(box_name)s version available." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, python-format +msgid "%(box_name)s is up to date." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:35 #, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2016,7 +2038,7 @@ msgid "" "your data stays with you." msgstr "" -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2026,7 +2048,7 @@ msgid "" "returning the Internet to its intended peer-to-peer architecture." msgstr "" -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2034,34 +2056,15 @@ msgid "" "package." msgstr "" -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the %(box_name)s Wiki." msgstr "" -#: plinth/modules/help/templates/help_about.html:60 -msgid "Learn more »" -msgstr "" - -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, python-format -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "" - -#: plinth/modules/help/templates/help_about.html:69 -#, python-format -msgid "" -"There is a new %(box_name)s version available." -msgstr "" - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, python-format -msgid "%(box_name)s is up to date." +#: plinth/modules/help/templates/help_about.html:78 +msgid "Learn more" msgstr "" #: plinth/modules/help/templates/help_base.html:21 @@ -2127,7 +2130,7 @@ msgid "Thank you!" msgstr "" #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 msgid "Help" msgstr "" @@ -2163,7 +2166,7 @@ msgid "" "channel using the IRC web interface." msgstr "" -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 msgid "Download as PDF" msgstr "" @@ -2341,16 +2344,16 @@ msgstr "" msgid "No wikis or blogs available." msgstr "" -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2441,8 +2444,8 @@ msgstr "" msgid "Chat Client" msgstr "" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "" @@ -2472,63 +2475,63 @@ msgstr "" msgid "Certificates" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 msgid "Domain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 msgid "Actions" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, python-format msgid "Valid, expires on %(expiry_date)s" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 msgid "Revoked" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, python-format msgid "Expired on %(expiry_date)s" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 msgid "Invalid test certificate" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 msgid "No certificate" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, python-format msgid "" "No domains have been configured. Configure " @@ -2605,12 +2608,6 @@ msgstr "" msgid "Element" msgstr "" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -2695,51 +2692,51 @@ msgstr "" msgid "Wiki" msgstr "" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 msgid "Administrator Password" msgstr "" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." msgstr "" -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 msgid "Server URL" msgstr "" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." msgstr "" -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 msgid "Enable public registrations" msgstr "" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." msgstr "" -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 msgid "Enable private mode" msgstr "" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 msgid "" "If enabled, access will be restricted. Only people who have accounts can " "read/write to the wiki. Public registrations will also be disabled." msgstr "" -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 msgid "Default Skin" msgstr "" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -2827,13 +2824,13 @@ msgstr "" msgid "When disabled, players cannot die or receive damage of any kind." msgstr "" -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "" @@ -2981,109 +2978,108 @@ msgstr "" msgid "Monkeysphere" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 msgid "Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 msgid "OpenPGP Fingerprint" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 msgid "Secure Shell" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 msgid "Other" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 msgid "-" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 msgid "Add Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 msgid "SSH Key Type" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 msgid "SSH Key Size" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 msgid "SSH Fingerprint" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 msgid "Available Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 msgid "Added Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 msgid "Download the key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 msgid "Send the key back to the keyservers" msgstr "" @@ -3171,7 +3167,7 @@ msgstr "" msgid "All web apps" msgstr "" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 msgid "Services" msgstr "" @@ -3258,8 +3254,8 @@ msgid "" msgstr "" #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "" @@ -3335,7 +3331,7 @@ msgid "-- select --" msgstr "" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 msgid "SSID" msgstr "" @@ -3344,7 +3340,7 @@ msgid "The visible name of the network." msgstr "" #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "" @@ -3373,7 +3369,7 @@ msgid "B/G (2.4 GHz)" msgstr "" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 msgid "Channel" msgstr "" @@ -3521,179 +3517,179 @@ msgid "" "to be reminded later. Some of the other configuration steps may fail.

" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 msgid "MAC address" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 msgid "Interface" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 msgid "please check cable" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 msgid "" "This interface should be connected to a local network/machine. If you " "connect this interface to a public network, services meant to be available " "only internally will become available externally. This is a security risk." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 msgid "" "This interface should receive your Internet connection. If you connect it to " "a local network/machine, many services meant to available only internally " "will not be available." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -3714,40 +3710,40 @@ msgstr "" msgid "Delete connection %(name)s permanently?" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 msgid "Spacing" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "" @@ -3773,19 +3769,19 @@ msgstr "" msgid "Add Connection" msgstr "" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "" @@ -3811,8 +3807,8 @@ msgstr "" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "" @@ -3896,7 +3892,7 @@ msgid "" "are no other devices on the network." msgstr "" -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -4336,93 +4332,93 @@ msgstr "" msgid "PageKite Domain" msgstr "" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 msgid "Server domain" msgstr "" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " "pagekite.net server." msgstr "" -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." msgstr "" -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 msgid "Deleted custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 msgid "This service is already available as a standard service." msgstr "" -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 msgid "Added custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 msgid "Custom Services" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 msgid "Add Custom Service" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "" @@ -4502,12 +4498,13 @@ msgid "" "finished before shutting down or restarting." msgstr "" -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +msgid "Restart" msgstr "" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" +msgid "Shut Down" msgstr "" #: plinth/modules/power/templates/power_restart.html:17 @@ -4793,21 +4790,21 @@ msgstr "" msgid "Dolphin" msgstr "" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 msgid "Shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 msgid "" "Note: Only specially created directories will be shared on selected disks, " "not the whole disk." msgstr "" -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 msgid "VFAT partitions are not supported" msgstr "" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the users module page." msgstr "" -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 msgid "Users who can currently access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 msgid "" "Users needing to re-enter their password on the password change page to " "access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 msgid "Unavailable Shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." msgstr "" -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 msgid "Share name" msgstr "" -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 msgid "Action" msgstr "" @@ -4947,25 +4944,25 @@ msgid "" "services." msgstr "" -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 msgid "Show security report" msgstr "" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "" -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5009,39 +5006,39 @@ msgid "" "running." msgstr "" -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 msgid "App Name" msgstr "" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 msgid "Current Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 msgid "Past Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 msgid "Sandboxed" msgstr "" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 msgid "Sandbox Coverage" msgstr "" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 msgid "N/A" msgstr "" -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 msgid "Yes" msgstr "" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 msgid "No" msgstr "" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 msgid "Not running" msgstr "" @@ -5182,28 +5179,28 @@ msgstr "" msgid "Shares should be either public or shared with at least one group" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 msgid "Add share" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "" -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 msgid "Shared Over" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 msgid "With Groups" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "" @@ -5327,41 +5324,41 @@ msgstr "" msgid "Delete the following snapshots permanently?" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 msgid "Delete Snapshots" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 msgid "Create Snapshot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 msgid "will be used at next boot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "" @@ -5384,7 +5381,7 @@ msgid "" "the newly created snapshot." msgstr "" -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "" @@ -5472,11 +5469,11 @@ msgid "" "client matches one of these fingerprints." msgstr "" -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 msgid "Fingerprint" msgstr "" @@ -5649,27 +5646,27 @@ msgstr "" msgid "Other directory (specify below)" msgstr "" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 msgid "The following storage devices are in use:" msgstr "" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 msgid "Used" msgstr "" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -5677,13 +5674,13 @@ msgid "" "will provide you additional free space to store your files." msgstr "" -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -5790,25 +5787,25 @@ msgstr "" msgid "Local introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 msgid "Pet Name" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 msgid "Add" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "" @@ -5952,19 +5949,19 @@ msgstr "" msgid "Tor configuration is being updated" msgstr "" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 msgid "Onion Service" msgstr "" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 msgid "Ports" msgstr "" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 msgid "Relay" msgstr "" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, python-format msgid "" "If your %(box_name)s is behind a router or firewall, you should make sure " @@ -6045,7 +6042,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 msgid "Update" @@ -6078,7 +6075,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "" @@ -6098,11 +6095,11 @@ msgid "" "cannot be deactivated." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 msgid "Updating, please wait..." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 msgid "" "This may take a long time to complete. During an update, " @@ -6110,7 +6107,7 @@ msgid "" "case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, python-format msgid "" "\n" @@ -6135,32 +6132,32 @@ msgstr "" msgid "Dismiss" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, python-format msgid "There is a new %(box_name)s version available." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 msgid "Your Freedombox needs an update!" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -6168,22 +6165,22 @@ msgid "" "\"%(snapshot_url)s\">Storage Snapshots before continuing." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 msgid "Manual Update" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 msgid "Update now" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 msgid "" "This may take a long time to complete. During an update, " "you cannot install apps. Also, this web interface may be temporarily " "unavailable and show an error. In that case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 msgid "Show recent update logs" msgstr "" @@ -6356,8 +6353,8 @@ msgstr "" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "" @@ -6410,21 +6407,21 @@ msgid "" "step." msgstr "" -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "" + #: plinth/modules/users/templates/users_update.html:11 #, python-format msgid "Edit User %(username)s" @@ -6498,8 +6495,8 @@ msgstr "" #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 msgid "Public Key" msgstr "" @@ -6584,7 +6581,7 @@ msgid "Allowed IPs" msgstr "" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 msgid "Last Connected Time" msgstr "" @@ -6593,47 +6590,47 @@ msgstr "" msgid "No peers configured to connect to this %(box_name)s yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, python-format msgid "Public key for this %(box_name)s:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 msgid "Not configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 msgid "Add a new peer" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 msgid "As a Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "" @@ -6665,40 +6662,40 @@ msgid "" "is configured with the following information." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 msgid "Server endpoints:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 msgid "Server public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "" @@ -6710,15 +6707,15 @@ msgid "" "public key and IP address." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 msgid "Server endpoint:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "" @@ -6854,49 +6851,53 @@ msgstr "" msgid "Service %(service_name)s is not running." msgstr "" -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, python-format msgid "Core functionality and web interface for %(box_name)s" msgstr "" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" +#: plinth/templates/base.html:107 +msgid " Home" msgstr "" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +msgid " Apps" +msgstr "" + +#: plinth/templates/base.html:119 msgid "Apps" msgstr "" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +msgid " System" +msgstr "" + +#: plinth/templates/base.html:128 msgid "System" msgstr "" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -msgid "Restart" -msgstr "" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 msgid "Shut down" msgstr "" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 msgid "Select language" msgstr "" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "" @@ -6960,7 +6961,7 @@ msgstr "" msgid "RPM:" msgstr "" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -6974,10 +6975,6 @@ msgid "" "this page." msgstr "" -#: plinth/templates/index.html:46 -msgid "Configure »" -msgstr "" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -7002,7 +6999,7 @@ msgstr "" msgid "Source Code" msgstr "" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "" @@ -7036,6 +7033,10 @@ msgid "" "%(interface_list)s" msgstr "" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 msgid "Notifications" msgstr "" @@ -7067,15 +7068,15 @@ msgid "" "your router. You should forward the following ports for %(service_name)s:" msgstr "" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 msgid "Protocol" msgstr "" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, python-format msgid "To %(box_name)s Ports" msgstr "" diff --git a/plinth/locale/kn/LC_MESSAGES/django.po b/plinth/locale/kn/LC_MESSAGES/django.po index 58997ed85..11f062de1 100644 --- a/plinth/locale/kn/LC_MESSAGES/django.po +++ b/plinth/locale/kn/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: 2020-07-16 16:41+0000\n" "Last-Translator: Yogesh \n" "Language-Team: Kannada diaspora.%(domain_name)s " msgstr "" +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1593,16 +1600,16 @@ msgid "About" msgstr "ಬಗ್ಗೆ" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 msgid "Status" msgstr "" @@ -1732,7 +1739,7 @@ msgstr "" msgid "Port {name} ({details}) unavailable for external networks" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -1741,57 +1748,53 @@ msgid "" "system with systemd 'systemctl start firewalld'." msgstr "" -#: plinth/modules/firewall/templates/firewall.html:28 -msgid "Show Ports" -msgstr "" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " "disabled in the firewall." msgstr "" -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -1829,7 +1832,7 @@ msgid "" "modify it if necessary." msgstr "" -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "" @@ -1922,31 +1925,31 @@ msgstr "" msgid "Git" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 msgid "Manage Repositories" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 msgid "Create repository" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 msgid "No repositories available." msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 #, python-format -msgid "Delete repository %(repo.name)s" +msgid "Go to repository %(repo.name)s" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 msgid "Cloning…" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 #, python-format -msgid "Go to repository %(repo.name)s" +msgid "Delete repository %(repo.name)s" msgstr "" #: plinth/modules/gitweb/templates/gitweb_delete.html:12 @@ -2006,6 +2009,25 @@ msgid "Contribute" msgstr "" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, python-format +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:23 +#, python-format +msgid "" +"There is a new %(box_name)s version available." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, python-format +msgid "%(box_name)s is up to date." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:35 #, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2017,7 +2039,7 @@ msgid "" "your data stays with you." msgstr "" -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2027,7 +2049,7 @@ msgid "" "returning the Internet to its intended peer-to-peer architecture." msgstr "" -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2035,34 +2057,15 @@ msgid "" "package." msgstr "" -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the %(box_name)s Wiki." msgstr "" -#: plinth/modules/help/templates/help_about.html:60 -msgid "Learn more »" -msgstr "" - -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, python-format -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "" - -#: plinth/modules/help/templates/help_about.html:69 -#, python-format -msgid "" -"There is a new %(box_name)s version available." -msgstr "" - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, python-format -msgid "%(box_name)s is up to date." +#: plinth/modules/help/templates/help_about.html:78 +msgid "Learn more" msgstr "" #: plinth/modules/help/templates/help_base.html:21 @@ -2128,7 +2131,7 @@ msgid "Thank you!" msgstr "" #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 msgid "Help" msgstr "" @@ -2164,7 +2167,7 @@ msgid "" "channel using the IRC web interface." msgstr "" -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 msgid "Download as PDF" msgstr "" @@ -2342,16 +2345,16 @@ msgstr "" msgid "No wikis or blogs available." msgstr "" -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2442,8 +2445,8 @@ msgstr "" msgid "Chat Client" msgstr "" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "" @@ -2473,63 +2476,63 @@ msgstr "" msgid "Certificates" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 msgid "Domain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 msgid "Actions" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, python-format msgid "Valid, expires on %(expiry_date)s" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 msgid "Revoked" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, python-format msgid "Expired on %(expiry_date)s" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 msgid "Invalid test certificate" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 msgid "No certificate" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, python-format msgid "" "No domains have been configured. Configure " @@ -2606,12 +2609,6 @@ msgstr "" msgid "Element" msgstr "" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -2696,51 +2693,51 @@ msgstr "" msgid "Wiki" msgstr "" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 msgid "Administrator Password" msgstr "" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." msgstr "" -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 msgid "Server URL" msgstr "" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." msgstr "" -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 msgid "Enable public registrations" msgstr "" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." msgstr "" -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 msgid "Enable private mode" msgstr "" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 msgid "" "If enabled, access will be restricted. Only people who have accounts can " "read/write to the wiki. Public registrations will also be disabled." msgstr "" -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 msgid "Default Skin" msgstr "" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -2828,13 +2825,13 @@ msgstr "" msgid "When disabled, players cannot die or receive damage of any kind." msgstr "" -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "" @@ -2982,109 +2979,108 @@ msgstr "" msgid "Monkeysphere" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 msgid "Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 msgid "OpenPGP Fingerprint" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 msgid "Secure Shell" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 msgid "Other" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 msgid "-" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 msgid "Add Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 msgid "SSH Key Type" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 msgid "SSH Key Size" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 msgid "SSH Fingerprint" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 msgid "Available Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 msgid "Added Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 msgid "Download the key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 msgid "Send the key back to the keyservers" msgstr "" @@ -3172,7 +3168,7 @@ msgstr "" msgid "All web apps" msgstr "" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 msgid "Services" msgstr "" @@ -3259,8 +3255,8 @@ msgid "" msgstr "" #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "" @@ -3336,7 +3332,7 @@ msgid "-- select --" msgstr "" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 msgid "SSID" msgstr "" @@ -3345,7 +3341,7 @@ msgid "The visible name of the network." msgstr "" #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "" @@ -3374,7 +3370,7 @@ msgid "B/G (2.4 GHz)" msgstr "" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 msgid "Channel" msgstr "" @@ -3522,179 +3518,179 @@ msgid "" "to be reminded later. Some of the other configuration steps may fail.

" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 msgid "MAC address" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 msgid "Interface" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 msgid "please check cable" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 msgid "" "This interface should be connected to a local network/machine. If you " "connect this interface to a public network, services meant to be available " "only internally will become available externally. This is a security risk." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 msgid "" "This interface should receive your Internet connection. If you connect it to " "a local network/machine, many services meant to available only internally " "will not be available." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -3715,40 +3711,40 @@ msgstr "" msgid "Delete connection %(name)s permanently?" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 msgid "Spacing" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "" @@ -3774,19 +3770,19 @@ msgstr "" msgid "Add Connection" msgstr "" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "" @@ -3812,8 +3808,8 @@ msgstr "" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "" @@ -3897,7 +3893,7 @@ msgid "" "are no other devices on the network." msgstr "" -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -4337,93 +4333,93 @@ msgstr "" msgid "PageKite Domain" msgstr "" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 msgid "Server domain" msgstr "" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " "pagekite.net server." msgstr "" -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." msgstr "" -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 msgid "Deleted custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 msgid "This service is already available as a standard service." msgstr "" -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 msgid "Added custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 msgid "Custom Services" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 msgid "Add Custom Service" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "" @@ -4503,12 +4499,13 @@ msgid "" "finished before shutting down or restarting." msgstr "" -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +msgid "Restart" msgstr "" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" +msgid "Shut Down" msgstr "" #: plinth/modules/power/templates/power_restart.html:17 @@ -4794,21 +4791,21 @@ msgstr "" msgid "Dolphin" msgstr "" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 msgid "Shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 msgid "" "Note: Only specially created directories will be shared on selected disks, " "not the whole disk." msgstr "" -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 msgid "VFAT partitions are not supported" msgstr "" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the users module page." msgstr "" -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 msgid "Users who can currently access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 msgid "" "Users needing to re-enter their password on the password change page to " "access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 msgid "Unavailable Shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." msgstr "" -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 msgid "Share name" msgstr "" -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 msgid "Action" msgstr "" @@ -4950,25 +4947,25 @@ msgid "" "services." msgstr "" -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 msgid "Show security report" msgstr "" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "" -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5012,39 +5009,39 @@ msgid "" "running." msgstr "" -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 msgid "App Name" msgstr "" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 msgid "Current Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 msgid "Past Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 msgid "Sandboxed" msgstr "" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 msgid "Sandbox Coverage" msgstr "" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 msgid "N/A" msgstr "" -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 msgid "Yes" msgstr "" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 msgid "No" msgstr "" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 msgid "Not running" msgstr "" @@ -5185,28 +5182,28 @@ msgstr "" msgid "Shares should be either public or shared with at least one group" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 msgid "Add share" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "" -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 msgid "Shared Over" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 msgid "With Groups" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "" @@ -5330,41 +5327,41 @@ msgstr "" msgid "Delete the following snapshots permanently?" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 msgid "Delete Snapshots" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 msgid "Create Snapshot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 msgid "will be used at next boot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "" @@ -5387,7 +5384,7 @@ msgid "" "the newly created snapshot." msgstr "" -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "" @@ -5475,11 +5472,11 @@ msgid "" "client matches one of these fingerprints." msgstr "" -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 msgid "Fingerprint" msgstr "" @@ -5652,27 +5649,27 @@ msgstr "" msgid "Other directory (specify below)" msgstr "" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 msgid "The following storage devices are in use:" msgstr "" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 msgid "Used" msgstr "" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -5680,13 +5677,13 @@ msgid "" "will provide you additional free space to store your files." msgstr "" -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -5793,25 +5790,25 @@ msgstr "" msgid "Local introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 msgid "Pet Name" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 msgid "Add" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "" @@ -5955,19 +5952,19 @@ msgstr "" msgid "Tor configuration is being updated" msgstr "" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 msgid "Onion Service" msgstr "" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 msgid "Ports" msgstr "" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 msgid "Relay" msgstr "" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, python-format msgid "" "If your %(box_name)s is behind a router or firewall, you should make sure " @@ -6048,7 +6045,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 msgid "Update" @@ -6081,7 +6078,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "" @@ -6101,11 +6098,11 @@ msgid "" "cannot be deactivated." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 msgid "Updating, please wait..." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 msgid "" "This may take a long time to complete. During an update, " @@ -6113,7 +6110,7 @@ msgid "" "case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, python-format msgid "" "\n" @@ -6138,32 +6135,32 @@ msgstr "" msgid "Dismiss" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, python-format msgid "There is a new %(box_name)s version available." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 msgid "Your Freedombox needs an update!" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -6171,22 +6168,22 @@ msgid "" "\"%(snapshot_url)s\">Storage Snapshots before continuing." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 msgid "Manual Update" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 msgid "Update now" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 msgid "" "This may take a long time to complete. During an update, " "you cannot install apps. Also, this web interface may be temporarily " "unavailable and show an error. In that case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 msgid "Show recent update logs" msgstr "" @@ -6359,8 +6356,8 @@ msgstr "" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "" @@ -6413,21 +6410,21 @@ msgid "" "step." msgstr "" -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "" + #: plinth/modules/users/templates/users_update.html:11 #, python-format msgid "Edit User %(username)s" @@ -6501,8 +6498,8 @@ msgstr "" #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 msgid "Public Key" msgstr "" @@ -6587,7 +6584,7 @@ msgid "Allowed IPs" msgstr "" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 msgid "Last Connected Time" msgstr "" @@ -6596,47 +6593,47 @@ msgstr "" msgid "No peers configured to connect to this %(box_name)s yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, python-format msgid "Public key for this %(box_name)s:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 msgid "Not configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 msgid "Add a new peer" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 msgid "As a Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "" @@ -6668,40 +6665,40 @@ msgid "" "is configured with the following information." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 msgid "Server endpoints:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 msgid "Server public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "" @@ -6713,15 +6710,15 @@ msgid "" "public key and IP address." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 msgid "Server endpoint:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "" @@ -6857,49 +6854,53 @@ msgstr "" msgid "Service %(service_name)s is not running." msgstr "" -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, python-format msgid "Core functionality and web interface for %(box_name)s" msgstr "" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" +#: plinth/templates/base.html:107 +msgid " Home" msgstr "" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +msgid " Apps" +msgstr "" + +#: plinth/templates/base.html:119 msgid "Apps" msgstr "" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +msgid " System" +msgstr "" + +#: plinth/templates/base.html:128 msgid "System" msgstr "" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -msgid "Restart" -msgstr "" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 msgid "Shut down" msgstr "" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 msgid "Select language" msgstr "" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "" @@ -6963,7 +6964,7 @@ msgstr "" msgid "RPM:" msgstr "" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -6977,10 +6978,6 @@ msgid "" "this page." msgstr "" -#: plinth/templates/index.html:46 -msgid "Configure »" -msgstr "" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -7005,7 +7002,7 @@ msgstr "" msgid "Source Code" msgstr "" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "" @@ -7039,6 +7036,10 @@ msgid "" "%(interface_list)s" msgstr "" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 msgid "Notifications" msgstr "" @@ -7070,15 +7071,15 @@ msgid "" "your router. You should forward the following ports for %(service_name)s:" msgstr "" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 msgid "Protocol" msgstr "" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, python-format msgid "To %(box_name)s Ports" msgstr "" diff --git a/plinth/locale/lt/LC_MESSAGES/django.po b/plinth/locale/lt/LC_MESSAGES/django.po index 825ddeb90..d4b76706b 100644 --- a/plinth/locale/lt/LC_MESSAGES/django.po +++ b/plinth/locale/lt/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -93,8 +93,8 @@ msgid "Apache HTTP Server" msgstr "" #: plinth/modules/apache/__init__.py:44 -#: plinth/modules/monkeysphere/templates/monkeysphere.html:67 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:45 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:49 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:46 msgid "Web Server" msgstr "" @@ -150,11 +150,11 @@ msgid "Repository" msgstr "" #: plinth/modules/backups/forms.py:52 -#: plinth/modules/backups/templates/backups_delete.html:18 +#: plinth/modules/backups/templates/backups_delete.html:17 #: plinth/modules/ikiwiki/forms.py:15 -#: plinth/modules/networks/templates/connection_show.html:63 -#: plinth/modules/samba/templates/samba.html:77 -#: plinth/modules/sharing/templates/sharing.html:37 +#: plinth/modules/networks/templates/connection_show.html:58 +#: plinth/modules/samba/templates/samba.html:66 +#: plinth/modules/sharing/templates/sharing.html:33 msgid "Name" msgstr "" @@ -318,40 +318,40 @@ msgstr "" msgid "{box_name} storage" msgstr "" -#: plinth/modules/backups/templates/backups.html:30 +#: plinth/modules/backups/templates/backups.html:17 #: plinth/modules/backups/views.py:61 msgid "Create a new backup" msgstr "" -#: plinth/modules/backups/templates/backups.html:34 +#: plinth/modules/backups/templates/backups.html:21 msgid "Create Backup" msgstr "" -#: plinth/modules/backups/templates/backups.html:37 +#: plinth/modules/backups/templates/backups.html:24 msgid "Upload and restore a backup archive" msgstr "" -#: plinth/modules/backups/templates/backups.html:41 +#: plinth/modules/backups/templates/backups.html:28 msgid "Upload and Restore" msgstr "" -#: plinth/modules/backups/templates/backups.html:44 +#: plinth/modules/backups/templates/backups.html:31 msgid "Add a backup location" msgstr "" -#: plinth/modules/backups/templates/backups.html:48 +#: plinth/modules/backups/templates/backups.html:35 msgid "Add Backup Location" msgstr "" -#: plinth/modules/backups/templates/backups.html:51 +#: plinth/modules/backups/templates/backups.html:38 msgid "Add a remote backup location" msgstr "" -#: plinth/modules/backups/templates/backups.html:55 +#: plinth/modules/backups/templates/backups.html:42 msgid "Add Remote Backup Location" msgstr "" -#: plinth/modules/backups/templates/backups.html:58 +#: plinth/modules/backups/templates/backups.html:46 msgid "Existing Backups" msgstr "" @@ -376,11 +376,11 @@ msgstr "" msgid "Delete this archive permanently?" msgstr "" -#: plinth/modules/backups/templates/backups_delete.html:19 +#: plinth/modules/backups/templates/backups_delete.html:18 msgid "Time" msgstr "" -#: plinth/modules/backups/templates/backups_delete.html:36 +#: plinth/modules/backups/templates/backups_delete.html:34 #, python-format msgid "Delete Archive %(name)s" msgstr "" @@ -722,13 +722,13 @@ msgid "List" msgstr "" #: plinth/modules/bepasty/views.py:53 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:91 -#: plinth/modules/networks/templates/connection_show.html:48 -#: plinth/modules/samba/templates/samba.html:163 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:86 +#: plinth/modules/networks/templates/connection_show.html:43 +#: plinth/modules/samba/templates/samba.html:154 #: plinth/modules/wireguard/templates/wireguard_delete_client.html:24 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:33 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:73 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:74 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:77 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:78 msgid "Delete" msgstr "" @@ -803,35 +803,35 @@ msgstr "" msgid "Serving Domains" msgstr "" -#: plinth/modules/bind/templates/bind.html:16 +#: plinth/modules/bind/templates/bind.html:17 #: plinth/modules/ikiwiki/forms.py:12 -#: plinth/modules/names/templates/names.html:14 -#: plinth/modules/networks/templates/connection_show.html:83 -#: plinth/modules/samba/templates/samba.html:76 -#: plinth/modules/storage/templates/storage.html:28 +#: plinth/modules/names/templates/names.html:15 +#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/samba/templates/samba.html:65 +#: plinth/modules/storage/templates/storage.html:26 msgid "Type" msgstr "" -#: plinth/modules/bind/templates/bind.html:17 +#: plinth/modules/bind/templates/bind.html:18 msgid "Domain Names" msgstr "" -#: plinth/modules/bind/templates/bind.html:18 +#: plinth/modules/bind/templates/bind.html:19 msgid "Serving" msgstr "" -#: plinth/modules/bind/templates/bind.html:19 +#: plinth/modules/bind/templates/bind.html:20 msgid "IP addresses" msgstr "" -#: plinth/modules/bind/templates/bind.html:35 #: plinth/modules/bind/templates/bind.html:37 +#: plinth/modules/bind/templates/bind.html:39 msgid "Refresh IP address and domains" msgstr "" #: plinth/modules/bind/views.py:71 plinth/modules/coturn/views.py:39 #: plinth/modules/deluge/views.py:42 plinth/modules/dynamicdns/views.py:154 -#: plinth/modules/mumble/views.py:28 plinth/modules/pagekite/forms.py:90 +#: plinth/modules/mumble/views.py:28 plinth/modules/pagekite/forms.py:76 #: plinth/modules/quassel/views.py:29 plinth/modules/shadowsocks/views.py:59 #: plinth/modules/transmission/views.py:47 msgid "Configuration updated" @@ -899,29 +899,29 @@ msgstr "" msgid "Delete %(name)s" msgstr "" -#: plinth/modules/calibre/templates/calibre.html:23 +#: plinth/modules/calibre/templates/calibre.html:11 msgid "Manage Libraries" msgstr "" -#: plinth/modules/calibre/templates/calibre.html:27 -#: plinth/modules/calibre/templates/calibre.html:29 +#: plinth/modules/calibre/templates/calibre.html:15 +#: plinth/modules/calibre/templates/calibre.html:17 msgid "Create Library" msgstr "" -#: plinth/modules/calibre/templates/calibre.html:36 +#: plinth/modules/calibre/templates/calibre.html:24 msgid "No libraries available." msgstr "" -#: plinth/modules/calibre/templates/calibre.html:43 -#, python-format -msgid "Delete library %(library)s" -msgstr "" - -#: plinth/modules/calibre/templates/calibre.html:49 +#: plinth/modules/calibre/templates/calibre.html:31 #, python-format msgid "Go to library %(library)s" msgstr "" +#: plinth/modules/calibre/templates/calibre.html:37 +#, python-format +msgid "Delete library %(library)s" +msgstr "" + #: plinth/modules/calibre/views.py:39 msgid "Library created." msgstr "" @@ -998,16 +998,17 @@ msgid "General Configuration" msgstr "" #: plinth/modules/config/__init__.py:59 plinth/modules/dynamicdns/views.py:29 -#: plinth/modules/names/templates/names.html:29 -#: plinth/modules/names/templates/names.html:43 +#: plinth/modules/names/templates/names.html:30 +#: plinth/modules/names/templates/names.html:44 #: plinth/modules/snapshot/views.py:37 #: plinth/modules/tahoe/templates/tahoe-pre-setup.html:24 +#: plinth/templates/index.html:46 msgid "Configure" msgstr "" #: plinth/modules/config/__init__.py:63 plinth/modules/config/forms.py:68 #: plinth/modules/dynamicdns/forms.py:97 -#: plinth/modules/names/templates/names.html:15 +#: plinth/modules/names/templates/names.html:16 msgid "Domain Name" msgstr "" @@ -1286,8 +1287,7 @@ msgid "Low Memory" msgstr "" #: plinth/modules/diagnostics/templates/diagnostics.html:17 -#: plinth/modules/diagnostics/templates/diagnostics_button.html:13 -#: plinth/modules/diagnostics/templates/diagnostics_button.html:16 +#: plinth/modules/diagnostics/templates/diagnostics_button.html:11 msgid "Run Diagnostics" msgstr "" @@ -1320,11 +1320,11 @@ msgstr "" msgid "This app does not support diagnostics" msgstr "" -#: plinth/modules/diagnostics/templates/diagnostics_results.html:10 +#: plinth/modules/diagnostics/templates/diagnostics_results.html:11 msgid "Test" msgstr "" -#: plinth/modules/diagnostics/templates/diagnostics_results.html:11 +#: plinth/modules/diagnostics/templates/diagnostics_results.html:12 msgid "Result" msgstr "" @@ -1371,6 +1371,13 @@ msgid "" "href=\"https://diaspora.%(domain_name)s\"> diaspora.%(domain_name)s " msgstr "" +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1593,16 +1600,16 @@ msgid "About" msgstr "" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 msgid "Status" msgstr "" @@ -1732,7 +1739,7 @@ msgstr "" msgid "Port {name} ({details}) unavailable for external networks" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -1741,57 +1748,53 @@ msgid "" "system with systemd 'systemctl start firewalld'." msgstr "" -#: plinth/modules/firewall/templates/firewall.html:28 -msgid "Show Ports" -msgstr "" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " "disabled in the firewall." msgstr "" -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -1829,7 +1832,7 @@ msgid "" "modify it if necessary." msgstr "" -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "" @@ -1922,31 +1925,31 @@ msgstr "" msgid "Git" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 msgid "Manage Repositories" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 msgid "Create repository" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 msgid "No repositories available." msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 #, python-format -msgid "Delete repository %(repo.name)s" +msgid "Go to repository %(repo.name)s" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 msgid "Cloning…" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 #, python-format -msgid "Go to repository %(repo.name)s" +msgid "Delete repository %(repo.name)s" msgstr "" #: plinth/modules/gitweb/templates/gitweb_delete.html:12 @@ -2006,6 +2009,25 @@ msgid "Contribute" msgstr "" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, python-format +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:23 +#, python-format +msgid "" +"There is a new %(box_name)s version available." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, python-format +msgid "%(box_name)s is up to date." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:35 #, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2017,7 +2039,7 @@ msgid "" "your data stays with you." msgstr "" -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2027,7 +2049,7 @@ msgid "" "returning the Internet to its intended peer-to-peer architecture." msgstr "" -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2035,34 +2057,15 @@ msgid "" "package." msgstr "" -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the %(box_name)s Wiki." msgstr "" -#: plinth/modules/help/templates/help_about.html:60 -msgid "Learn more »" -msgstr "" - -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, python-format -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "" - -#: plinth/modules/help/templates/help_about.html:69 -#, python-format -msgid "" -"There is a new %(box_name)s version available." -msgstr "" - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, python-format -msgid "%(box_name)s is up to date." +#: plinth/modules/help/templates/help_about.html:78 +msgid "Learn more" msgstr "" #: plinth/modules/help/templates/help_base.html:21 @@ -2128,7 +2131,7 @@ msgid "Thank you!" msgstr "" #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 msgid "Help" msgstr "" @@ -2164,7 +2167,7 @@ msgid "" "channel using the IRC web interface." msgstr "" -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 msgid "Download as PDF" msgstr "" @@ -2342,16 +2345,16 @@ msgstr "" msgid "No wikis or blogs available." msgstr "" -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2442,8 +2445,8 @@ msgstr "" msgid "Chat Client" msgstr "" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "" @@ -2473,63 +2476,63 @@ msgstr "" msgid "Certificates" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 msgid "Domain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 msgid "Actions" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, python-format msgid "Valid, expires on %(expiry_date)s" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 msgid "Revoked" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, python-format msgid "Expired on %(expiry_date)s" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 msgid "Invalid test certificate" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 msgid "No certificate" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, python-format msgid "" "No domains have been configured. Configure " @@ -2606,12 +2609,6 @@ msgstr "" msgid "Element" msgstr "" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -2696,51 +2693,51 @@ msgstr "" msgid "Wiki" msgstr "" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 msgid "Administrator Password" msgstr "" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." msgstr "" -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 msgid "Server URL" msgstr "" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." msgstr "" -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 msgid "Enable public registrations" msgstr "" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." msgstr "" -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 msgid "Enable private mode" msgstr "" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 msgid "" "If enabled, access will be restricted. Only people who have accounts can " "read/write to the wiki. Public registrations will also be disabled." msgstr "" -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 msgid "Default Skin" msgstr "" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -2828,13 +2825,13 @@ msgstr "" msgid "When disabled, players cannot die or receive damage of any kind." msgstr "" -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "" @@ -2982,109 +2979,108 @@ msgstr "" msgid "Monkeysphere" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 msgid "Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 msgid "OpenPGP Fingerprint" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 msgid "Secure Shell" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 msgid "Other" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 msgid "-" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 msgid "Add Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 msgid "SSH Key Type" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 msgid "SSH Key Size" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 msgid "SSH Fingerprint" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 msgid "Available Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 msgid "Added Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 msgid "Download the key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 msgid "Send the key back to the keyservers" msgstr "" @@ -3172,7 +3168,7 @@ msgstr "" msgid "All web apps" msgstr "" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 msgid "Services" msgstr "" @@ -3259,8 +3255,8 @@ msgid "" msgstr "" #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "" @@ -3336,7 +3332,7 @@ msgid "-- select --" msgstr "" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 msgid "SSID" msgstr "" @@ -3345,7 +3341,7 @@ msgid "The visible name of the network." msgstr "" #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "" @@ -3374,7 +3370,7 @@ msgid "B/G (2.4 GHz)" msgstr "" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 msgid "Channel" msgstr "" @@ -3522,179 +3518,179 @@ msgid "" "to be reminded later. Some of the other configuration steps may fail.

" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 msgid "MAC address" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 msgid "Interface" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 msgid "please check cable" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 msgid "" "This interface should be connected to a local network/machine. If you " "connect this interface to a public network, services meant to be available " "only internally will become available externally. This is a security risk." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 msgid "" "This interface should receive your Internet connection. If you connect it to " "a local network/machine, many services meant to available only internally " "will not be available." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -3715,40 +3711,40 @@ msgstr "" msgid "Delete connection %(name)s permanently?" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 msgid "Spacing" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "" @@ -3774,19 +3770,19 @@ msgstr "" msgid "Add Connection" msgstr "" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "" @@ -3812,8 +3808,8 @@ msgstr "" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "" @@ -3897,7 +3893,7 @@ msgid "" "are no other devices on the network." msgstr "" -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -4337,93 +4333,93 @@ msgstr "" msgid "PageKite Domain" msgstr "" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 msgid "Server domain" msgstr "" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " "pagekite.net server." msgstr "" -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." msgstr "" -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 msgid "Deleted custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 msgid "This service is already available as a standard service." msgstr "" -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 msgid "Added custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 msgid "Custom Services" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 msgid "Add Custom Service" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "" @@ -4503,12 +4499,13 @@ msgid "" "finished before shutting down or restarting." msgstr "" -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +msgid "Restart" msgstr "" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" +msgid "Shut Down" msgstr "" #: plinth/modules/power/templates/power_restart.html:17 @@ -4794,21 +4791,21 @@ msgstr "" msgid "Dolphin" msgstr "" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 msgid "Shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 msgid "" "Note: Only specially created directories will be shared on selected disks, " "not the whole disk." msgstr "" -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 msgid "VFAT partitions are not supported" msgstr "" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the users module page." msgstr "" -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 msgid "Users who can currently access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 msgid "" "Users needing to re-enter their password on the password change page to " "access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 msgid "Unavailable Shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." msgstr "" -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 msgid "Share name" msgstr "" -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 msgid "Action" msgstr "" @@ -4948,25 +4945,25 @@ msgid "" "services." msgstr "" -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 msgid "Show security report" msgstr "" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "" -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5010,39 +5007,39 @@ msgid "" "running." msgstr "" -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 msgid "App Name" msgstr "" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 msgid "Current Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 msgid "Past Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 msgid "Sandboxed" msgstr "" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 msgid "Sandbox Coverage" msgstr "" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 msgid "N/A" msgstr "" -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 msgid "Yes" msgstr "" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 msgid "No" msgstr "" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 msgid "Not running" msgstr "" @@ -5183,28 +5180,28 @@ msgstr "" msgid "Shares should be either public or shared with at least one group" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 msgid "Add share" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "" -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 msgid "Shared Over" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 msgid "With Groups" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "" @@ -5328,41 +5325,41 @@ msgstr "" msgid "Delete the following snapshots permanently?" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 msgid "Delete Snapshots" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 msgid "Create Snapshot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 msgid "will be used at next boot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "" @@ -5385,7 +5382,7 @@ msgid "" "the newly created snapshot." msgstr "" -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "" @@ -5473,11 +5470,11 @@ msgid "" "client matches one of these fingerprints." msgstr "" -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 msgid "Fingerprint" msgstr "" @@ -5650,27 +5647,27 @@ msgstr "" msgid "Other directory (specify below)" msgstr "" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 msgid "The following storage devices are in use:" msgstr "" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 msgid "Used" msgstr "" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -5678,13 +5675,13 @@ msgid "" "will provide you additional free space to store your files." msgstr "" -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -5791,25 +5788,25 @@ msgstr "" msgid "Local introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 msgid "Pet Name" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 msgid "Add" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "" @@ -5953,19 +5950,19 @@ msgstr "" msgid "Tor configuration is being updated" msgstr "" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 msgid "Onion Service" msgstr "" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 msgid "Ports" msgstr "" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 msgid "Relay" msgstr "" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, python-format msgid "" "If your %(box_name)s is behind a router or firewall, you should make sure " @@ -6046,7 +6043,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 msgid "Update" @@ -6079,7 +6076,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "" @@ -6099,11 +6096,11 @@ msgid "" "cannot be deactivated." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 msgid "Updating, please wait..." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 msgid "" "This may take a long time to complete. During an update, " @@ -6111,7 +6108,7 @@ msgid "" "case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, python-format msgid "" "\n" @@ -6136,32 +6133,32 @@ msgstr "" msgid "Dismiss" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, python-format msgid "There is a new %(box_name)s version available." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 msgid "Your Freedombox needs an update!" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -6169,22 +6166,22 @@ msgid "" "\"%(snapshot_url)s\">Storage Snapshots before continuing." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 msgid "Manual Update" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 msgid "Update now" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 msgid "" "This may take a long time to complete. During an update, " "you cannot install apps. Also, this web interface may be temporarily " "unavailable and show an error. In that case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 msgid "Show recent update logs" msgstr "" @@ -6357,8 +6354,8 @@ msgstr "" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "" @@ -6411,21 +6408,21 @@ msgid "" "step." msgstr "" -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "" + #: plinth/modules/users/templates/users_update.html:11 #, python-format msgid "Edit User %(username)s" @@ -6499,8 +6496,8 @@ msgstr "" #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 msgid "Public Key" msgstr "" @@ -6585,7 +6582,7 @@ msgid "Allowed IPs" msgstr "" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 msgid "Last Connected Time" msgstr "" @@ -6594,47 +6591,47 @@ msgstr "" msgid "No peers configured to connect to this %(box_name)s yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, python-format msgid "Public key for this %(box_name)s:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 msgid "Not configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 msgid "Add a new peer" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 msgid "As a Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "" @@ -6666,40 +6663,40 @@ msgid "" "is configured with the following information." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 msgid "Server endpoints:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 msgid "Server public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "" @@ -6711,15 +6708,15 @@ msgid "" "public key and IP address." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 msgid "Server endpoint:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "" @@ -6855,49 +6852,53 @@ msgstr "" msgid "Service %(service_name)s is not running." msgstr "" -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, python-format msgid "Core functionality and web interface for %(box_name)s" msgstr "" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" +#: plinth/templates/base.html:107 +msgid " Home" msgstr "" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +msgid " Apps" +msgstr "" + +#: plinth/templates/base.html:119 msgid "Apps" msgstr "" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +msgid " System" +msgstr "" + +#: plinth/templates/base.html:128 msgid "System" msgstr "" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -msgid "Restart" -msgstr "" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 msgid "Shut down" msgstr "" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 msgid "Select language" msgstr "" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "" @@ -6961,7 +6962,7 @@ msgstr "" msgid "RPM:" msgstr "" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -6975,10 +6976,6 @@ msgid "" "this page." msgstr "" -#: plinth/templates/index.html:46 -msgid "Configure »" -msgstr "" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -7003,7 +7000,7 @@ msgstr "" msgid "Source Code" msgstr "" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "" @@ -7037,6 +7034,10 @@ msgid "" "%(interface_list)s" msgstr "" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 msgid "Notifications" msgstr "" @@ -7068,15 +7069,15 @@ msgid "" "your router. You should forward the following ports for %(service_name)s:" msgstr "" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 msgid "Protocol" msgstr "" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, python-format msgid "To %(box_name)s Ports" msgstr "" diff --git a/plinth/locale/nb/LC_MESSAGES/django.po b/plinth/locale/nb/LC_MESSAGES/django.po index 11a5a1fb2..9c23007aa 100644 --- a/plinth/locale/nb/LC_MESSAGES/django.po +++ b/plinth/locale/nb/LC_MESSAGES/django.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: FreedomBox UI\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: 2020-11-18 05:35+0000\n" "Last-Translator: Petter Reinholdtsen \n" "Language-Team: Norwegian Bokmål Du får diaspora* pod på diaspora.%(domain_name)s" +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "Oppsett" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1808,16 +1815,16 @@ msgid "About" msgstr "Om" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 msgid "Status" msgstr "Status" @@ -1970,7 +1977,7 @@ msgstr "Port {name} ({details}) tilgjengelig på eksterne nettverk" msgid "Port {name} ({details}) unavailable for external networks" msgstr "Port {name} ({details}) er utilgjengelig for eksterne nettverk" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -1983,44 +1990,40 @@ msgstr "" "%(box_name)s), kan du kjøre den med kommandoen «service firewalld start», " "eller alternativt i et system med systemd, «systemctl start firewalld»." -#: plinth/modules/firewall/templates/firewall.html:28 -msgid "Show Ports" -msgstr "Vis porter" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "Tjeneste/Port" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "Aktivert" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "Deaktivert" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "Tillatt" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "Tillatt (kun internt)" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "Tillatt (kun eksternt)" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "Blokkert" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " @@ -2030,13 +2033,13 @@ msgstr "" "også tillatt i brannmuren, og når du deaktiverer en tjeneste, er den også " "deaktivert i brannmuren." -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "Avansert" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -2081,7 +2084,7 @@ msgstr "" "Du vil kanskje kontrollere network setup " "(nettverksoppsettet) og endre det om nødvendig." -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "Gå i gang med oppsett" @@ -2202,35 +2205,35 @@ msgstr "Gitweb biser dette som forvalgt forgrening." msgid "Git" msgstr "Git" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 msgid "Manage Repositories" msgstr "Håndter kodelagre" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 msgid "Create repository" msgstr "Opprett kodelager" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 #, fuzzy #| msgid "Tor relay port available" msgid "No repositories available." msgstr "Tor relay-port tilgjengelig" -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 #, python-format -msgid "Delete repository %(repo.name)s" -msgstr "Slett kodelageret %(repo.name)s" +msgid "Go to repository %(repo.name)s" +msgstr "Gå til kodelageret %(repo.name)s" -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 #, fuzzy msgid "Cloning…" msgstr "Kloner…" -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 #, python-format -msgid "Go to repository %(repo.name)s" -msgstr "Gå til kodelageret %(repo.name)s" +msgid "Delete repository %(repo.name)s" +msgstr "Slett kodelageret %(repo.name)s" #: plinth/modules/gitweb/templates/gitweb_delete.html:12 #, python-format @@ -2293,6 +2296,26 @@ msgid "Contribute" msgstr "Bidra" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, python-format +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "Du benytter %(os_release)s og %(box_name)s versjon %(version)s." + +#: plinth/modules/help/templates/help_about.html:23 +#, python-format +msgid "" +"There is a new %(box_name)s version available." +msgstr "" +"En ny %(box_name)s-versjon er tilgjengelig." + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, python-format +msgid "%(box_name)s is up to date." +msgstr "%(box_name)s er oppdatert." + +#: plinth/modules/help/templates/help_about.html:35 #, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2312,7 +2335,7 @@ msgstr "" "samlet på en enhet som kan erstatte din Wi-Fi-ruter, slik at dataene dine " "blir hos deg." -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2329,7 +2352,7 @@ msgstr "" "maskiner, er vi tilbake til Internettet sin tiltenkte like-til-like " "arkitektur." -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2340,7 +2363,7 @@ msgstr "" "distribuerte tjenester; %(box_name)s mål er å bringe dem sammen i en " "praktisk pakke." -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the %(box_name)s wiki." -#: plinth/modules/help/templates/help_about.html:60 -msgid "Learn more »" -msgstr "Lær mer »" - -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, python-format -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "Du benytter %(os_release)s og %(box_name)s versjon %(version)s." - -#: plinth/modules/help/templates/help_about.html:69 -#, python-format -msgid "" -"There is a new %(box_name)s version available." -msgstr "" -"En ny %(box_name)s-versjon er tilgjengelig." - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, python-format -msgid "%(box_name)s is up to date." -msgstr "%(box_name)s er oppdatert." +#: plinth/modules/help/templates/help_about.html:78 +#, fuzzy +#| msgid "Learn more..." +msgid "Learn more" +msgstr "Lær mer…" #: plinth/modules/help/templates/help_base.html:21 #: plinth/modules/help/templates/help_index.html:61 @@ -2455,7 +2460,7 @@ msgid "Thank you!" msgstr "Takk." #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 msgid "Help" msgstr "Hjelp" @@ -2503,7 +2508,7 @@ msgstr "" "net/?randomnick=1&channels=freedombox&prompt=1\"> #freedombox-kanalen " "ved å bruke IRC-nettbrukergrensesnittet." -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 msgid "Download as PDF" msgstr "Last ned som PDF" @@ -2726,16 +2731,16 @@ msgstr "Lage Wiki eller Blogg" msgid "No wikis or blogs available." msgstr "Ingen wikier eller blogger tilgjengelig." -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "Slett nettstedet %(site)s" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "Gå til siden %(site)s" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "Slett nettstedet %(site)s" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2835,8 +2840,8 @@ msgstr "JSXC" msgid "Chat Client" msgstr "Nettpratklient" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "JavaScript lisensinformasjon" @@ -2875,63 +2880,63 @@ msgstr "Let's Encrypt" msgid "Certificates" msgstr "Sertifikater" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 msgid "Domain" msgstr "Domene" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "Sertifikatsstatus" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "Nettstedssikkerhet" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 msgid "Actions" msgstr "Handlinger" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, python-format msgid "Valid, expires on %(expiry_date)s" msgstr "Gyldig, utløper %(expiry_date)s" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 msgid "Revoked" msgstr "Trukket tilbake" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, python-format msgid "Expired on %(expiry_date)s" msgstr "Utløpt %(expiry_date)s" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 msgid "Invalid test certificate" msgstr "Ugyldig testsertifikat" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "Ugyldig (%(reason)s)" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 msgid "No certificate" msgstr "Sertifikat mangler" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "Gjeninnhente" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "Inndra (tilbakekall)" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "Innhente" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, python-format msgid "" "No domains have been configured. Configure " @@ -3029,12 +3034,6 @@ msgstr "" msgid "Element" msgstr "Element" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "Oppsett" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -3149,11 +3148,11 @@ msgstr "MediaWiki" msgid "Wiki" msgstr "Wiki" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 msgid "Administrator Password" msgstr "Administratorpassord" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." @@ -3161,23 +3160,23 @@ msgstr "" "Sett et nytt passord for MediaWikis administratorkonto (admin). La dette " "feltet stå tomt for å beholde gjeldende passord." -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 #, fuzzy #| msgid "Server" msgid "Server URL" msgstr "Tjener" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." msgstr "" -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 msgid "Enable public registrations" msgstr "Aktiver offentlig registrering" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." @@ -3185,11 +3184,11 @@ msgstr "" "Hvis påskrudd, vil alle på Internett kunne opprette en konto på din " "MediaWiki-instans." -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 msgid "Enable private mode" msgstr "Skru på privat modus" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 msgid "" "If enabled, access will be restricted. Only people who have accounts can " "read/write to the wiki. Public registrations will also be disabled." @@ -3197,11 +3196,11 @@ msgstr "" "Hvis påskrudd, vil tilgang begrenses. Kun folk som har kontoer kan lese/" "skrive på wiki-en. Offentlige registreringer vil også bli avskrudd." -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 msgid "Default Skin" msgstr "Forvalgt drakt" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -3302,13 +3301,13 @@ msgid "When disabled, players cannot die or receive damage of any kind." msgstr "" "Når den ikke er aktiv, kan ikke spillere dø eller ta skade av noe slag." -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "Adresse" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "Port" @@ -3491,95 +3490,94 @@ msgstr "" msgid "Monkeysphere" msgstr "Monkeysphere" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "Publisering av nøkkel til nøkkeltjener…" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "Kanseller" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "Tjeneste" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 msgid "Domains" msgstr "Domener" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 msgid "OpenPGP Fingerprint" msgstr "OpenPGP Fingerprint (fingeravtrykk)" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 msgid "Secure Shell" msgstr "Secure Shell (SSH)" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 msgid "Other" msgstr "Annen" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "Se detaljer for nøkkel %(fingerprint)s" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 msgid "-" msgstr "-" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "Importer nøkkel" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "Legge ut nøkkel" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 msgid "Add Domains" msgstr "Legg til domener" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "OpenPGP User ID-er (bruker ID-er)" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "Dato for nøkkelimport" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 msgid "SSH Key Type" msgstr "SSH nøkkeltype" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 msgid "SSH Key Size" msgstr "SSH Nøkkelstørrelse" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 msgid "SSH Fingerprint" msgstr "SSH Fingeravtrykk" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "Nøkkelfil" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 msgid "Available Domains" msgstr "Tilgjengelige domener" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 msgid "Added Domains" msgstr "Domener lagt til" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" @@ -3587,15 +3585,15 @@ msgstr "" "Etter at denne nøkkelen er lagt ut til nøkkeltjenerrne, kan den signeres ved " "å bruke GnuPG med følgende kommandoer:" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 msgid "Download the key" msgstr "Last ned nøkkelen" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "Signer nøkkelen" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 msgid "Send the key back to the keyservers" msgstr "Send nøkkelen tilbake til nøkkeltjenerne" @@ -3705,7 +3703,7 @@ msgstr "Alle" msgid "All web apps" msgstr "Alle nettprogrammer" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 #, fuzzy #| msgid "Service" msgid "Services" @@ -3808,8 +3806,8 @@ msgstr "" "adressen, bli brukt." #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "Inngangsport" @@ -3895,7 +3893,7 @@ msgid "-- select --" msgstr "-- velg --" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 msgid "SSID" msgstr "SSID (Service Set Identifier)" @@ -3904,7 +3902,7 @@ msgid "The visible name of the network." msgstr "Det synlige navnet på nettverket." #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "Modus" @@ -3933,7 +3931,7 @@ msgid "B/G (2.4 GHz)" msgstr "B/G (2.4 GHz)" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 msgid "Channel" msgstr "Kanal" @@ -4106,158 +4104,158 @@ msgid "" "to be reminded later. Some of the other configuration steps may fail.

" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "Rediger tilkobling" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "Rediger" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "Deaktivere" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "Aktiver" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "Slett tilkobling" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "Tilkobling" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "Primærtilkobling" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "Ja" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "Enhet" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "Tilstand" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "Grunn til tilstand" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 msgid "MAC address" msgstr "MAC-adresse" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 msgid "Interface" msgstr "Grensesnitt" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "Beskrivelse" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "Fysisk link" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "Linkens tilstand" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "kabel er tilknyttet" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 msgid "please check cable" msgstr "vennligst sjekk kabelen" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "Hastighet" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "%(ethernet_speed)s Mbit/s" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "%(wireless_bitrate)s Mbit/s" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "Signalstyrke" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "IPv4" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "Metode" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "IP-adresse" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "DNS-tjener" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "Forvalg" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "IPv6" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "Denne forbindelsen er ikke aktiv." -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "Sikkerhet" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "Brannmursone" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 msgid "" "This interface should be connected to a local network/machine. If you " "connect this interface to a public network, services meant to be available " @@ -4268,8 +4266,8 @@ msgstr "" "bare være tilgjengelig internt, bli tilgjengelig eksternt. Dette er en " "sikkerhetsrisiko." -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 msgid "" "This interface should receive your Internet connection. If you connect it to " "a local network/machine, many services meant to available only internally " @@ -4279,13 +4277,13 @@ msgstr "" "til et lokalt nettverk/maskin, vil mange tjenester som er ment å være " "tilgjengelig internt ikke være tilgjengelige." -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "Eksternt" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -4306,40 +4304,40 @@ msgstr "Slett tilkobling" msgid "Delete connection %(name)s permanently?" msgstr "Slett forbindelsen %(name)s for godt?" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "Internett" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 msgid "Spacing" msgstr "Lage mellomrom" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "Ethernet" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "Wi-Fi" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "Vis forbindelse %(name)s" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "Intern" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "Datamaskin" @@ -4367,19 +4365,19 @@ msgstr "Wi-Fi-nettverk i nærheten" msgid "Add Connection" msgstr "Legg til tilkobling" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "Slett forbindelse %(name)s" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "Aktiv" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "Slått av (inaktiv)" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "Slett forbindelse %(name)s" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "Lage ..." @@ -4405,8 +4403,8 @@ msgstr "Hopp over dette steget" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "Neste" @@ -4502,7 +4500,7 @@ msgid "" "are no other devices on the network." msgstr "" -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -5049,11 +5047,11 @@ msgstr "Offentlig synlighet" msgid "PageKite Domain" msgstr "PageKite-domene" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 msgid "Server domain" msgstr "Tjenerdomene" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " "pagekite.net server." @@ -5061,31 +5059,31 @@ msgstr "" "Velg din PageKite-tjener. Sett «pagekite.net» for å bruke den forvalgte " "pagekite.net-tjeneren." -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "Tjenerport" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "Port for din PageKite-tjener (default: 80)" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "«Kite»-navn" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "Eksempel: mybox.pagekite.me" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "Ugyldig «kite»-navn" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "«Kite»-hemmelig" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." @@ -5093,27 +5091,27 @@ msgstr "" "En hemmelighet knyttet til «Kite»-en, eller den forvalgte hemmeligheten for " "din konto hvis ingen hemmelighet er satt for «Kite»-en." -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "protokoll" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "Ekstern (frontend) port" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "intern (FreedomBox) port" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "Tillat underdomener (Subdomains)" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 msgid "Deleted custom service" msgstr "Deaktivert selvvalgt (tilpasset) tjeneste" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 #, fuzzy #| msgid "" #| "This service is available as a standard service. Please use the " @@ -5123,31 +5121,31 @@ msgstr "" "Denne tjenesten er tilgjengelig som en standard tjeneste. Vennligst bruk " "«Standard Services»-siden for å aktivere den." -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 msgid "Added custom service" msgstr "Lagt til selvvalgt tjeneste" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "Denne tjenesten finnes allerede" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 msgid "Custom Services" msgstr "Tilpassede tjenester" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 #, fuzzy #| msgid "Custom Services" msgid "Add Custom Service" msgstr "Tilpassede tjenester" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "koblet til %(backend_host)s:%(backend_port)s" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "Slett denne tjenesten" @@ -5240,13 +5238,16 @@ msgstr "" "En annen installasjon eller oppgradering kjører allerede. Vent litt før du " "prøver igjen." -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" -msgstr "Omstart »" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +msgid "Restart" +msgstr "Omstart" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" -msgstr "Slå av »" +#, fuzzy +#| msgid "Shut down" +msgid "Shut Down" +msgstr "Slå av" #: plinth/modules/power/templates/power_restart.html:17 msgid "" @@ -5608,23 +5609,23 @@ msgstr "GNOME-kalender" msgid "Dolphin" msgstr "Dolphin" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 #, fuzzy #| msgid "Shared" msgid "Shares" msgstr "Delt" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 msgid "" "Note: Only specially created directories will be shared on selected disks, " "not the whole disk." msgstr "" -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 msgid "VFAT partitions are not supported" msgstr "VFAT-partisjoner støttes ikke" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the users module page." msgstr "" -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 #, fuzzy msgid "Users who can currently access group and home shares" msgstr "Brukere som for tiden har tilgang til gruppe- og hjemmedelinger" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 msgid "" "Users needing to re-enter their password on the password change page to " "access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 #, fuzzy #| msgid "Available Domains" msgid "Unavailable Shares" msgstr "Tilgjengelige domener" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." msgstr "" -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 #, fuzzy #| msgid "Share added." msgid "Share name" msgstr "Deling lagt til." -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 msgid "Action" msgstr "Handlinge" @@ -5792,27 +5793,27 @@ msgstr "" "angrepsforsøk mot SSH-tjeneren og andre aktive passordbeskyttede " "internettjenester." -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 #, fuzzy #| msgid "Show security vulnerabilities" msgid "Show security report" msgstr "Vis sikkerhetssårbarheter" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "Hyppige funksjonsoppdateringer er aktivert." -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5866,48 +5867,48 @@ msgid "" "running." msgstr "" -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 msgid "App Name" msgstr "Programnavn" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 #, fuzzy #| msgid "Show security vulnerabilities" msgid "Current Vulnerabilities" msgstr "Vis sikkerhetssårbarheter" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 #, fuzzy #| msgid "Show security vulnerabilities" msgid "Past Vulnerabilities" msgstr "Vis sikkerhetssårbarheter" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 #, fuzzy #| msgid "Block Sandbox" msgid "Sandboxed" msgstr "Block-sandkassen" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 #, fuzzy #| msgid "Block Sandbox" msgid "Sandbox Coverage" msgstr "Block-sandkassen" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 #, fuzzy msgid "N/A" msgstr "I/t" -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 msgid "Yes" msgstr "Ja" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 msgid "No" msgstr "Nei" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 msgid "Not running" msgstr "Kjører ikke" @@ -6071,28 +6072,28 @@ msgstr "En deling ved dette navnet finnes allerede." msgid "Shares should be either public or shared with at least one group" msgstr "Delte områder bør enten være offentlig eller delt med minst en gruppe" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 msgid "Add share" msgstr "Legg til deling" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "Ingen delte områder er satt opp foreløpig." -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "Disksti" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 msgid "Shared Over" msgstr "Delt over" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 msgid "With Groups" msgstr "Med Grupper" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "Offentlig tilgang" @@ -6237,42 +6238,42 @@ msgstr "" msgid "Delete the following snapshots permanently?" msgstr "Slett denne avbildningen for godt?" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "Nummer" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "Dato" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 msgid "Delete Snapshots" msgstr "Slett avbildninger" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 msgid "Create Snapshot" msgstr "Opprett øyeblikksbilde" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "Rull tilbake" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 #, fuzzy msgid "will be used at next boot" msgstr "vil bli brukt ved neste oppstart" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "i bruk" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "Rull tilbake til øyeblikksbilde #%(number)s" @@ -6305,7 +6306,7 @@ msgstr "" "automatisk. Du vil kunne gjøre om på en tilbakerulling ved å gå tilbake til " "det nyopprettede øyeblikksbildet." -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "Rull tilbake til øyeblikksbilde #%(number)s" @@ -6408,11 +6409,11 @@ msgstr "" "Når du kobler til tjeneren, forsikre deg om at fingeravtrykket vist av SSH-" "klienten samsvarer med ett av disse." -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "Algoritme" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 #, fuzzy #| msgid "SSH Fingerprint" msgid "Fingerprint" @@ -6602,27 +6603,27 @@ msgstr "Del" msgid "Other directory (specify below)" msgstr "Annen mappe (angi nedenfor)" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 msgid "The following storage devices are in use:" msgstr "Følgende lagringsenheter er i bruk:" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "Merkelapp" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "Monteringspunkt" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 msgid "Used" msgstr "Brukt" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "Partisjonsutvidelse" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -6633,13 +6634,13 @@ msgstr "" "root-partisjonen din. Root-partisjonen kan utvides til å bruke denne " "plassen. Det vil gi deg mer plass til å lagre filene dine." -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "Utvid root-partisjon" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -6776,25 +6777,25 @@ msgstr "" msgid "Local introducer" msgstr "Lokal introduserer" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 msgid "Pet Name" msgstr "Kjæledyrnavn" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "Legg til en ny introduserer" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 msgid "Add" msgstr "Legg til" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "Tilknyttede introduserere" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "Fjern" @@ -6965,19 +6966,19 @@ msgstr "Orbot: Mellomtjener med Tor" msgid "Tor configuration is being updated" msgstr "Tor-oppsettet oppdateres" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 msgid "Onion Service" msgstr "Løktjeneste" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 msgid "Ports" msgstr "Porter" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 msgid "Relay" msgstr "Videresending" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, python-format msgid "" "If your %(box_name)s is behind a router or firewall, you should make sure " @@ -7075,7 +7076,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 msgid "Update" @@ -7114,7 +7115,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "" @@ -7136,13 +7137,13 @@ msgid "" "cannot be deactivated." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 #, fuzzy #| msgid "Updating..." msgid "Updating, please wait..." msgstr "Oppdaterer…" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 #, fuzzy #| msgid "" @@ -7159,7 +7160,7 @@ msgstr "" "nettgrensesnittet være midlertidig utilgjengelig, og vise en feilmelding. " "Oppdater siden for å fortsette." -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, fuzzy, python-format #| msgid "%(box_name)s is up to date." msgid "" @@ -7188,32 +7189,32 @@ msgstr "" msgid "Dismiss" msgstr "Avslå" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "Oppdaterer…" -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, python-format msgid "There is a new %(box_name)s version available." msgstr "En ny %(box_name)s-versjon er tilgjengelig." -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 msgid "Your Freedombox needs an update!" msgstr "Din FreedomBox trenger oppdatering!" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -7221,17 +7222,17 @@ msgid "" "\"%(snapshot_url)s\">Storage Snapshots before continuing." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 #, fuzzy #| msgid "Manual update" msgid "Manual Update" msgstr "Manuell oppdatering" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 msgid "Update now" msgstr "Oppdater nå" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 #, fuzzy #| msgid "" #| "This may take a long time to complete. During an update, " @@ -7247,7 +7248,7 @@ msgstr "" "nettgrensesnittet være midlertidig utilgjengelig, og vise en feilmelding. " "Oppdater siden for å fortsette." -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 #, fuzzy #| msgid "Toggle recent update logs" msgid "Show recent update logs" @@ -7458,8 +7459,8 @@ msgstr "Lagre passord" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "Opprett bruker" @@ -7517,21 +7518,21 @@ msgid "" "step." msgstr "" -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "Brukere" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "Slett bruker %(username)s" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "Endre bruker %(username)s" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "Slett bruker %(username)s" + #: plinth/modules/users/templates/users_update.html:11 #, python-format msgid "Edit User %(username)s" @@ -7609,8 +7610,8 @@ msgstr "Ugyldig nøkkel." #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 msgid "Public Key" msgstr "Offentlig nøkkel" @@ -7715,7 +7716,7 @@ msgid "Allowed IPs" msgstr "Tillatte IP-er" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 #, fuzzy #| msgid "Create Connection" msgid "Last Connected Time" @@ -7726,55 +7727,55 @@ msgstr "Lage forbindelse" msgid "No peers configured to connect to this %(box_name)s yet." msgstr "Ingen likemenn er oppsett for tilkobling til denne %(box_name)s enda." -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, python-format msgid "Public key for this %(box_name)s:" msgstr "Offentlig nøkkel for denne %(box_name)s:" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 #, fuzzy #| msgid "No shares currently configured." msgid "Not configured yet." msgstr "Ingen delte områder er satt opp foreløpig." -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 #, fuzzy #| msgid "Add new introducer" msgid "Add a new peer" msgstr "Legg til en ny introduserer" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "Legg til tillatt klient" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 #, fuzzy #| msgid "Chat Client" msgid "As a Client" msgstr "Nettpratklient" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "Tjenere %(box_name)s kobler seg til:" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "Sluttpunkt" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 #, fuzzy #| msgid "Authentication to remote server failed." msgid "No connections to remote servers are configured yet." msgstr "Identitetsbekreftelse til fjerntjener mislyktes." -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 msgid "Add a new server" msgstr "Legg til ny tjener" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "Legg til tilkobling til tjener" @@ -7812,40 +7813,40 @@ msgstr "" "%(box_name)s lar denne klienten koble seg til. Forsikre at klienten er satt " "opp med følgende info." -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "Klientens offentlige nøkkel:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "IP-adresse å bruke for klienten:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "Forhåndsdelt nøkkel:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 msgid "Server endpoints:" msgstr "Tjenerendepunkt:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 msgid "Server public key:" msgstr "Offentlig tjener-nøkkel:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "Data sendt:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "Data mottatt:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "Siste håndtrykk:" @@ -7860,15 +7861,15 @@ msgstr "" "deg om at tjeneren er satt opp til å tillate %(box_name)s sin offentlige " "nøkkel og IP-adresse." -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 msgid "Server endpoint:" msgstr "Tjenerendepunkt:" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "Offentlig nøkkel tilhørende denne maskinen:" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "IP-adresse tilhørende denne maskinen:" @@ -8038,49 +8039,53 @@ msgstr "Installasjon" msgid "Service %(service_name)s is not running." msgstr "Tjenesten %(service_name)s kjører ikke." -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, python-format msgid "Core functionality and web interface for %(box_name)s" msgstr "Kjernefunksjonalitet og nettbrukergrensesnitt for %(box_name)s" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" -msgstr "Bytt (toggle) navigasjon" +#: plinth/templates/base.html:107 +msgid " Home" +msgstr " Hjem" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "Hjem" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +msgid " Apps" +msgstr " Programmer" + +#: plinth/templates/base.html:119 msgid "Apps" msgstr "Apps/Programmer" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +msgid " System" +msgstr " System" + +#: plinth/templates/base.html:128 msgid "System" msgstr "System" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "Endre passord" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -msgid "Restart" -msgstr "Omstart" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 msgid "Shut down" msgstr "Slå av" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "Logg ut" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 msgid "Select language" msgstr "Velg språk" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "Logg inn" @@ -8144,7 +8149,7 @@ msgstr "Hjemmelaget:" msgid "RPM:" msgstr "RPM:" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -8162,10 +8167,6 @@ msgstr "" "Aktiver noen programmer for å legge til " "snarveier på denne siden." -#: plinth/templates/index.html:46 -msgid "Configure »" -msgstr "Sette opp »" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -8197,7 +8198,7 @@ msgstr "Hjemmeside" msgid "Source Code" msgstr "Kildekode" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "Doner" @@ -8234,6 +8235,10 @@ msgid "" msgstr "" "Følgende nettverksgrensesnitt er nå satt opp som interne: %(interface_list)s" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 msgid "Notifications" msgstr "Merknader" @@ -8276,15 +8281,15 @@ msgstr "" "sette opp portvideresending på ruteren din. Du må sette opp videresending " "for følgende porter for %(service_name)s:" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 msgid "Protocol" msgstr "protokoll" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "Fra ruter/WAN-porter" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, python-format msgid "To %(box_name)s Ports" msgstr "Til portene for %(box_name)s" @@ -8339,6 +8344,24 @@ msgstr "%(percentage)s%% fullført" msgid "Gujarati" msgstr "Gujarati" +#~ msgid "Show Ports" +#~ msgstr "Vis porter" + +#~ msgid "Learn more »" +#~ msgstr "Lær mer »" + +#~ msgid "Restart »" +#~ msgstr "Omstart »" + +#~ msgid "Shut Down »" +#~ msgstr "Slå av »" + +#~ msgid "Toggle navigation" +#~ msgstr "Bytt (toggle) navigasjon" + +#~ msgid "Configure »" +#~ msgstr "Sette opp »" + #~ msgid "Show connection %(connection.name)s" #~ msgstr "Vis forbindelse %(connection.name)s" @@ -9068,15 +9091,6 @@ msgstr "Gujarati" #~ "Programvareavbildninger eldre enn dette vil bli slettet. Dette begrenser " #~ "ikke antallet." -#~ msgid " Home" -#~ msgstr " Hjem" - -#~ msgid " Apps" -#~ msgstr " Programmer" - -#~ msgid " System" -#~ msgstr " System" - #~ msgid "Archive name" #~ msgstr "Arkivnavn" diff --git a/plinth/locale/nl/LC_MESSAGES/django.po b/plinth/locale/nl/LC_MESSAGES/django.po index 1433cc229..ecd9c7921 100644 --- a/plinth/locale/nl/LC_MESSAGES/django.po +++ b/plinth/locale/nl/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: 2020-12-19 12:29+0000\n" "Last-Translator: ikmaak \n" "Language-Team: Dutch De diaspora* pod is bereikbaar op diaspora.%(domain_name)s " +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "Configuratie" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1784,16 +1791,16 @@ msgid "About" msgstr "Over ons" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 msgid "Status" msgstr "Status" @@ -1947,7 +1954,7 @@ msgstr "Poort {name} ({details})is beschikbaar voor externe netwerken" msgid "Port {name} ({details}) unavailable for external networks" msgstr "Poort {name} ({details}) is niet beschikbaar voor externe netwerken" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -1960,44 +1967,40 @@ msgstr "" "worden door middel van het commando 'service firewalld start' of in het " "geval van een systeem met systemd 'systemctl start firewalld'." -#: plinth/modules/firewall/templates/firewall.html:28 -msgid "Show Ports" -msgstr "Toon Poorten" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "Dienst/Poort" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "Ingeschakeld" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "Uitgeschakeld" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "Toegestaan" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "Toegestaan (alleen intern)" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "Toegestaan (alleen extern)" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "Geblokkeerd" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " @@ -2007,13 +2010,13 @@ msgstr "" "wordt deze ook toegevoegd aan de firewall, en als een dienst wordt " "uitgeschakeld, gebeurt dit ook in de firewall." -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "Gevorderd" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -2058,7 +2061,7 @@ msgstr "" "Het is een goed idee om de netwerk " "instellingen te controleren en wijzigen indien noodzakelijk." -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "Setup starten" @@ -2165,33 +2168,33 @@ msgstr "Gitweb geeft dit weer als een standaard branch." msgid "Git" msgstr "Git" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 msgid "Manage Repositories" msgstr "Beheer repositories" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 msgid "Create repository" msgstr "Maak repository" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 msgid "No repositories available." msgstr "Geen repositories beschikbaar." -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 -#, python-format -msgid "Delete repository %(repo.name)s" -msgstr "Verwijder repository %(repo.name)s" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 -msgid "Cloning…" -msgstr "Klonen…" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 #, python-format msgid "Go to repository %(repo.name)s" msgstr "Ga naar repository %(repo.name)s" +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 +msgid "Cloning…" +msgstr "Klonen…" + +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 +#, python-format +msgid "Delete repository %(repo.name)s" +msgstr "Verwijder repository %(repo.name)s" + #: plinth/modules/gitweb/templates/gitweb_delete.html:12 #, python-format msgid "Delete Git Repository %(name)s" @@ -2249,6 +2252,27 @@ msgid "Contribute" msgstr "Bijdragen" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, python-format +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "Dit is %(os_release)s, en %(box_name)s versie %(version)s." + +#: plinth/modules/help/templates/help_about.html:23 +#, python-format +msgid "" +"There is a new %(box_name)s version available." +msgstr "" +"Er is een nieuwe %(box_name)s versie beschikbaar." + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, python-format +msgid "%(box_name)s is up to date." +msgstr "De nieuwste versie van %(box_name)s is geïnstalleerd." + +#: plinth/modules/help/templates/help_about.html:35 #, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2268,7 +2292,7 @@ msgstr "" "op een apparaat dat je (WiFi) router kan vervangen of aanvullen, zodat jouw " "data bij jou blijft." -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2286,7 +2310,7 @@ msgstr "" "naar de decentrale / peer-to-peer architectuur zoals die oorspronkelijk is " "ontworpen en bedoeld." -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2297,7 +2321,7 @@ msgstr "" "gedecentraliseerde diensten; %(box_name)s probeert deze allemaal samen te " "brengen in een enkel pakket." -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the %(box_name)s Wiki." -#: plinth/modules/help/templates/help_about.html:60 -msgid "Learn more »" -msgstr "Lees meer»" - -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, python-format -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "Dit is %(os_release)s, en %(box_name)s versie %(version)s." - -#: plinth/modules/help/templates/help_about.html:69 -#, python-format -msgid "" -"There is a new %(box_name)s version available." -msgstr "" -"Er is een nieuwe %(box_name)s versie beschikbaar." - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, python-format -msgid "%(box_name)s is up to date." -msgstr "De nieuwste versie van %(box_name)s is geïnstalleerd." +#: plinth/modules/help/templates/help_about.html:78 +#, fuzzy +#| msgid "Learn more..." +msgid "Learn more" +msgstr "Lees meer..." #: plinth/modules/help/templates/help_base.html:21 #: plinth/modules/help/templates/help_index.html:61 @@ -2415,7 +2420,7 @@ msgid "Thank you!" msgstr "Bedankt!" #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 msgid "Help" msgstr "Hulp" @@ -2464,7 +2469,7 @@ msgstr "" "webchat.oftc.net/?randomnick=1&channels=freedombox&prompt=1\"> #freedombox kanaal via de webinterface van IRC." -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 msgid "Download as PDF" msgstr "Downloaden als PDF" @@ -2682,16 +2687,16 @@ msgstr "Maak Wiki of Blog" msgid "No wikis or blogs available." msgstr "Geen wiki's of blogs beschikbaar." -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "Verwijder site %(site)s" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "Ga naar site %(site)s" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "Verwijder site %(site)s" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2793,8 +2798,8 @@ msgstr "JSXC" msgid "Chat Client" msgstr "Chat Cliënt" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "JavaScript licentie-informatie" @@ -2835,63 +2840,63 @@ msgstr "Let's Encrypt" msgid "Certificates" msgstr "Certificaten" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 msgid "Domain" msgstr "Domein" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "Certificaatstatus" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "Websitebeveiliging" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 msgid "Actions" msgstr "Acties" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, python-format msgid "Valid, expires on %(expiry_date)s" msgstr "Geldig, verloopt op %(expiry_date)s" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 msgid "Revoked" msgstr "Ingetrokken" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, python-format msgid "Expired on %(expiry_date)s" msgstr "Verlopen op %(expiry_date)s" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 msgid "Invalid test certificate" msgstr "Ongeldig test certificaat" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "Ongeldig (%(reason)s)" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 msgid "No certificate" msgstr "Geen certificaat" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "Opnieuw verkrijgen" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "Intrekken" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "Verkrijgen" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, python-format msgid "" "No domains have been configured. Configure " @@ -2987,12 +2992,6 @@ msgstr "" msgid "Element" msgstr "Element" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "Configuratie" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -3110,11 +3109,11 @@ msgstr "MediaWiki" msgid "Wiki" msgstr "Wiki" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 msgid "Administrator Password" msgstr "Beheerderswachtwoord" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." @@ -3122,11 +3121,11 @@ msgstr "" "Stel een nieuw wachtwoord in voor MediaWiki's beheerdersaccount (admin). " "Laat dit veld leeg om het huidige wachtwoord te behouden." -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 msgid "Server URL" msgstr "Server-URL" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." @@ -3134,11 +3133,11 @@ msgstr "" "Wordt door MediaWiki gebruikt om URL's te genereren die naar de wiki " "verwijzen, zoals in de footer, feeds en e-mails." -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 msgid "Enable public registrations" msgstr "Openbare registraties inschakelen" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." @@ -3146,11 +3145,11 @@ msgstr "" "Als dit actief is, zal iedereen via het internet een gebruiker op uw " "MediaWiki applicatie kunnen registreren." -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 msgid "Enable private mode" msgstr "Privé-modus inschakelen" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 msgid "" "If enabled, access will be restricted. Only people who have accounts can " "read/write to the wiki. Public registrations will also be disabled." @@ -3159,11 +3158,11 @@ msgstr "" "gebruikers zullen de wiki kunnen lezen en bewerken. Registratie is niet open " "voor publiek." -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 msgid "Default Skin" msgstr "Standaard Uiterlijk" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -3263,13 +3262,13 @@ msgstr "Inschakelen Schade" msgid "When disabled, players cannot die or receive damage of any kind." msgstr "Indien uitgeschakeld, kunnen spelers niet sterven of schade oplopen." -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "Adres" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "Poort" @@ -3457,95 +3456,94 @@ msgstr "" msgid "Monkeysphere" msgstr "Monkeysphere" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "Sleutel naar keyserver publiceren..." -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "Annuleer" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "Dienst" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 msgid "Domains" msgstr "Domeinen" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 msgid "OpenPGP Fingerprint" msgstr "OpenPGP Vingerafdruk" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 msgid "Secure Shell" msgstr "Secure Shell" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 msgid "Other" msgstr "Overige" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "Toon details voor sleutel %(fingerprint)s" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 msgid "-" msgstr "-" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "Sleutel importeren" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "Sleutel Publiceren" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 msgid "Add Domains" msgstr "Domeinen toevoegen" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "OpenPGP Gebruiker ID's" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "Sleutel importdatum" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 msgid "SSH Key Type" msgstr "SSH Sleutel Type" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 msgid "SSH Key Size" msgstr "SSH Sleutel Lengte" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 msgid "SSH Fingerprint" msgstr "SSH Vingerafdruk" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "Sleutelbestand" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 msgid "Available Domains" msgstr "Beschikbare Domeinen" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 msgid "Added Domains" msgstr "Extra Domeinen" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" @@ -3554,15 +3552,15 @@ msgstr "" "ondertekend met GnuPG met de volgende " "opdrachten:" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 msgid "Download the key" msgstr "Sleutel Downloaden" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "Sleutel Signeren" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 msgid "Send the key back to the keyservers" msgstr "Stuur de sleutel terug naar de keyservers" @@ -3663,7 +3661,7 @@ msgstr "Alle" msgid "All web apps" msgstr "Alle webtoepassingen" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 msgid "Services" msgstr "Diensten" @@ -3762,8 +3760,8 @@ msgstr "" "adres worden gebruikt." #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "Gateway" @@ -3853,7 +3851,7 @@ msgid "-- select --" msgstr "-- selecteer --" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 msgid "SSID" msgstr "SSID" @@ -3862,7 +3860,7 @@ msgid "The visible name of the network." msgstr "De zichtbare netwerknaam." #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "Modus" @@ -3891,7 +3889,7 @@ msgid "B/G (2.4 GHz)" msgstr "B/G (2.4 GHz)" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 msgid "Channel" msgstr "Kanaal" @@ -4100,158 +4098,158 @@ msgstr "" "eraan herinnerd wilt worden. Sommige van de andere configuratiestappen " "kunnen mislukken.

" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "Wijzig verbinding" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "Wijzig" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "Deactiveer" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "Activeer" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "Verwijder verbinding" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "Verbinding" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "Primaire Verbinding" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "ja" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "Apparaat" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "Status" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "Reden van status" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 msgid "MAC address" msgstr "MAC adres" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 msgid "Interface" msgstr "Interface" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "Omschrijving" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "Fysieke Verbinding" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "Verbindingsstatus" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "kabel is verbonden" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 msgid "please check cable" msgstr "controleer kabel" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "Snelheid" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "%(ethernet_speed)s Mbit/s" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "%(wireless_bitrate)s Mbit/s" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "Signaalsterkte" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "IPv4" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "Methode" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "IP adres" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "DNS server" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "Standaard" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "IPv6" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "Deze verbinding is niet actief." -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "Security" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "Firewall zone" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 msgid "" "This interface should be connected to a local network/machine. If you " "connect this interface to a public network, services meant to be available " @@ -4262,8 +4260,8 @@ msgstr "" "bedoeld zijn om intern beschikbaar te zijn van buitenaf bereikbaar. Dit is " "een veiligheidsrisico." -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 msgid "" "This interface should receive your Internet connection. If you connect it to " "a local network/machine, many services meant to available only internally " @@ -4273,13 +4271,13 @@ msgstr "" "wordt met een lokaal netwerk/machine, zijn veel diensten die alleen lokaal " "beschikbaar zijn niet bereikbaar." -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "Extern" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -4302,40 +4300,40 @@ msgstr "Verwijder verbinding" msgid "Delete connection %(name)s permanently?" msgstr "Verbinding %(name)s permanent verwijderen?" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "Internet" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 msgid "Spacing" msgstr "Verbinding" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "Ethernet" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "Wi-Fi" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "Tonen verbinding %(name)s" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "Intern" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "Computer" @@ -4361,19 +4359,19 @@ msgstr "Wi-Fi Netwerken dichtbij" msgid "Add Connection" msgstr "Verbinding toevoegen" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "Verwijder verbinding %(name)s" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "Aktief" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "Inactief" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "Verwijder verbinding %(name)s" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "Maak..." @@ -4402,8 +4400,8 @@ msgstr "Deze stap overslaan" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "Volgende" @@ -4504,7 +4502,7 @@ msgstr "" "De internetverbinding is direct verbonden met %(box_name)s en er zijn geen " "andere apparaten in het netwerk." -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -5003,11 +5001,11 @@ msgstr "Openbare zichtbaarheid" msgid "PageKite Domain" msgstr "PageKite domein" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 msgid "Server domain" msgstr "Serverdomein" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " "pagekite.net server." @@ -5015,31 +5013,31 @@ msgstr "" "Selecteer een pagekite server. Gebruik \"pagekite.net\" om de standaard " "pagekite.net server te gebruiken." -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "Serverpoort" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "Poort voor de pagekite server (default: 80)" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "Kitenaam" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "Voorbeeld: mybox.pagekite.me" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "Foute kite-naam" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "Kite-geheim" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." @@ -5047,53 +5045,53 @@ msgstr "" "Het wachtwoord dat met deze kite is verbonden, en het standaard wachtwoord " "voor deze account als deze kite geen eigen wachtwoord heeft." -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "protocol" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "externe (frontend) poort" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "interne (freedombox) poort" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "Subdomeinen Inschakelen" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 msgid "Deleted custom service" msgstr "Verwijderde aangepaste dienst" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 msgid "This service is already available as a standard service." msgstr "Deze dienst is al beschikbaar als een standaarddienst." -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 msgid "Added custom service" msgstr "Aangepaste dienst toevoegen" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "Deze dienst bestaat al" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 msgid "Custom Services" msgstr "Aangepaste Diensten" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 msgid "Add Custom Service" msgstr "Aangepaste dienst toevoegen" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "verbonden met %(backend_host)s:%(backend_port)s" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "Verwijder deze dienst" @@ -5189,13 +5187,16 @@ msgstr "" "Er wordt nu een installatie of upgrade uitgevoerd. Wacht alstublieft tot dit " "voltooid is voordat u het apparaat herstart of uit zet." -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" -msgstr "Herstart »" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +msgid "Restart" +msgstr "Herstarten" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" -msgstr "Uitschakelen »" +#, fuzzy +#| msgid "Shut down" +msgid "Shut Down" +msgstr "Uitschakelen" #: plinth/modules/power/templates/power_restart.html:17 msgid "" @@ -5555,11 +5556,11 @@ msgstr "GNOME Bestanden" msgid "Dolphin" msgstr "Dolphin" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 msgid "Shares" msgstr "Gedeelde schijven" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 msgid "" "Note: Only specially created directories will be shared on selected disks, " "not the whole disk." @@ -5567,11 +5568,11 @@ msgstr "" "Opmerking: Niet de gehele schijf wordt gedeeld, maar alleen geselecteerde " "mappen." -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 msgid "VFAT partitions are not supported" msgstr "VFAT-partities worden niet ondersteund" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the -gebruikers." -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 msgid "Users who can currently access group and home shares" msgstr "Gebruikers die momenteel toegang hebben tot groeps- en thuisshares" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 msgid "" "Users needing to re-enter their password on the password change page to " "access group and home shares" @@ -5595,11 +5596,11 @@ msgstr "" "wachtwoordwijziging om toegang te krijgen tot groeps- en prive gedeelde " "mappen" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 msgid "Unavailable Shares" msgstr "Niet beschikbare gedeelde mappen" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." @@ -5608,11 +5609,11 @@ msgstr "" "beschikbaar is. Het delen wordt automatisch weer ingeschakeld zodra de " "schijf weer is aangesloten." -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 msgid "Share name" msgstr "Gedeelde map naam" -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 msgid "Action" msgstr "Actie" @@ -5732,25 +5733,25 @@ msgstr "" "Als dit actief is, zal Fail2Ban brute-kracht inbraakpogingen beperken op de " "SSH server en andere diensten die door wachtwoorden worden afgeschermd." -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 msgid "Show security report" msgstr "Beveiligingsrapport weergeven" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "Tussentijdse Software Updates" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "Tussentijdse Software Updates zijn geactiveerd." -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5812,39 +5813,39 @@ msgstr "" "van de rest van het systeem. Het wordt alleen weergegeven terwijl de service " "wordt uitgevoerd." -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 msgid "App Name" msgstr "Toepassingsnaam" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 msgid "Current Vulnerabilities" msgstr "Huidige kwetsbaarheden" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 msgid "Past Vulnerabilities" msgstr "Kwetsbaarheden in het verleden" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 msgid "Sandboxed" msgstr "Geïsoleerd" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 msgid "Sandbox Coverage" msgstr "Isolatie-bereik" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 msgid "N/A" msgstr "N.v.t." -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 msgid "Yes" msgstr "Ja" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 msgid "No" msgstr "Nee" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 msgid "Not running" msgstr "Inaktief" @@ -6005,28 +6006,28 @@ msgstr "Er bestaat reeds een gedeelde map met deze naam." msgid "Shares should be either public or shared with at least one group" msgstr "Shares moeten openbaar zijn of gedeeld worden met minimaal één groep" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 msgid "Add share" msgstr "Gedeelde map toevoegen" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "Er zijn momenteel geen bestandsdelingen geconfigureerd." -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "Schijf pad" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 msgid "Shared Over" msgstr "Gedeeld Via" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 msgid "With Groups" msgstr "Met Groepen" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "openbare toegang" @@ -6168,41 +6169,41 @@ msgstr "" msgid "Delete the following snapshots permanently?" msgstr "De volgende snapshots permanent verwijderen?" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "Nummer" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "Datum" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 msgid "Delete Snapshots" msgstr "Snapshots verwijderen" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 msgid "Create Snapshot" msgstr "Maak Snapshot" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "Terugdraaien" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 msgid "will be used at next boot" msgstr "zal worden gebruikt bij de volgende herstart" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "in gebruik" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "Terugdraaien tot snapshot #%(number)s" @@ -6231,7 +6232,7 @@ msgstr "" "automatisch gemaakt. Het is mogelijk om een rollback ongedaan te maken door " "terug te keren naar het zojuist gemaakte snapshot." -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "Terugdraaien tot Snapshot #%(number)s" @@ -6329,11 +6330,11 @@ msgstr "" "Zorg er bij verbinding met deze server voor dat een van deze vingerafdrukken " "overeenkomt met de door de SSH-client getoonde vingerafdruk." -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "Algoritme" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 msgid "Fingerprint" msgstr "Vingerafdruk" @@ -6516,27 +6517,27 @@ msgstr "Delen" msgid "Other directory (specify below)" msgstr "Andere map (hieronder aangeven)" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 msgid "The following storage devices are in use:" msgstr "De volgende opslagapparaten zijn in gebruik:" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "Label" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "Koppelpunt" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 msgid "Used" msgstr "Gebruikt" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "Partitie Vergroting" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -6548,13 +6549,13 @@ msgstr "" "worden gebruikt. Dit geeft u extra vrije ruimte voor het opslaan van " "bestanden." -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "Root-partitie uitbreiden" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -6690,25 +6691,25 @@ msgstr "" msgid "Local introducer" msgstr "Lokale introduceerder" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 msgid "Pet Name" msgstr "Naam Huisdier" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "Nieuwe introduceerder toevoegen" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 msgid "Add" msgstr "Toevoegen" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "Verbonden introduceerders" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "Verwijderen" @@ -6882,19 +6883,19 @@ msgstr "Orbot: Proxy met Tor" msgid "Tor configuration is being updated" msgstr "Tor configuratie wordt bijgewerkt" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 msgid "Onion Service" msgstr "Onion Service" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 msgid "Ports" msgstr "Poorten" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 msgid "Relay" msgstr "Relay" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, python-format msgid "" "If your %(box_name)s is behind a router or firewall, you should make sure " @@ -6994,7 +6995,7 @@ msgstr "" "uur, waardoor alle toepassingen even niet beschikbaar zijn." #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 msgid "Update" @@ -7031,7 +7032,7 @@ msgstr "" "nieuwe stabiele versie zodra deze beschikbaar is." #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "Activeer Tussentijdse Software Updates (aanbevolen)" @@ -7055,11 +7056,11 @@ msgstr "" "Opmerking: Zodra Tussentijdse Software Updates is " "geactiveerd, kan het niet worden gedeactiveerd." -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 msgid "Updating, please wait..." msgstr "Bezig met bijwerken, even geduld..." -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 msgid "" "This may take a long time to complete. During an update, " @@ -7070,7 +7071,7 @@ msgstr "" "webinterface tijdelijk niet beschikbaar zijn, en een foutmelding weergeven. " "Vernieuw in dat geval de pagina om door te gaan." -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, python-format msgid "" "\n" @@ -7101,28 +7102,28 @@ msgstr "" msgid "Dismiss" msgstr "Negeren" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "Bezig met bijwerken…" -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, python-format msgid "There is a new %(box_name)s version available." msgstr "Er is een nieuwe %(box_name)s versie beschikbaar." -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 msgid "Your Freedombox needs an update!" msgstr "Je FreedomBox heeft een update nodig!" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" "Het is mogelijk om Tussentijdse Software Updates te gebruiken. Dit wordt ook " "aangeraden." -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." @@ -7130,7 +7131,7 @@ msgstr "" "Tussentijdse Software Updates kunnen niet worden geactiveerd. Het kan zijn " "dat ze niet nodig zijn op uw distributie." -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -7141,15 +7142,15 @@ msgstr "" "ingeschakeld, kan dit niet ongedaan worden gemaakt. Maak eerst een Snapshot " "met behulp van Opslag Snapshots." -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 msgid "Manual Update" msgstr "Handmatige Update" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 msgid "Update now" msgstr "Nu bijwerken" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 msgid "" "This may take a long time to complete. During an update, " "you cannot install apps. Also, this web interface may be temporarily " @@ -7160,7 +7161,7 @@ msgstr "" "webinterface tijdelijk niet beschikbaar zijn, en een foutmelding weergeven. " "Vernieuw in dat geval de pagina om door te gaan." -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 msgid "Show recent update logs" msgstr "Recente updateverslagen weergeven" @@ -7351,8 +7352,8 @@ msgstr "Wachtwoord Opslaan" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "Nieuwe gebruiker registreren" @@ -7413,21 +7414,21 @@ msgstr "" "plinth/actions/users remove-user {username}' uit. Sla deze stap over als een " "account al bruikbaar is bij %(box_name)s." -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "Gebruikers" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "Verwijder gebruiker %(username)s" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "Gebruiker %(username)s wijzigen" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "Verwijder gebruiker %(username)s" + #: plinth/modules/users/templates/users_update.html:11 #, python-format msgid "Edit User %(username)s" @@ -7509,8 +7510,8 @@ msgstr "Ongeldige sleutel." #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 msgid "Public Key" msgstr "Openbare Sleutel" @@ -7614,7 +7615,7 @@ msgid "Allowed IPs" msgstr "Toegestane IP adressen" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 msgid "Last Connected Time" msgstr "Tijdstip vorige verbinding" @@ -7625,47 +7626,47 @@ msgstr "" "Er zijn nog geen peers ingesteld om verbinding te maken met deze " "%(box_name)s." -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, python-format msgid "Public key for this %(box_name)s:" msgstr "Openbare sleutel voor deze %(box_name)s:" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 msgid "Not configured yet." msgstr "Nog niet geconfigureerd." -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 msgid "Add a new peer" msgstr "Nieuwe partner toevoegen" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "Geef toestemming voor client" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 msgid "As a Client" msgstr "Als Cliënt" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "Servers waar %(box_name)s verbinding mee zal maken:" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "Eindpunt" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 msgid "No connections to remote servers are configured yet." msgstr "Er zijn nog geen verbindingen met externe servers ingesteld." -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 msgid "Add a new server" msgstr "Nieuwe server toevoegen" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "Verbinding toevoegen aan server" @@ -7699,40 +7700,40 @@ msgstr "" "%(box_name)s zal deze cliënt in staat stellen om er verbinding mee te maken. " "Zorg ervoor dat de client is geconfigureerd met de volgende informatie." -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "Openbare sleutel van de client:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "IP-adres dat moet worden gebruikt voor client:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "Vooraf gedeelde sleutel:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 msgid "Server endpoints:" msgstr "Server eindpunten:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 msgid "Server public key:" msgstr "Openbare sleutel van de server:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "Verzonden gegevens:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "Ontvangen gegevens:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "Laatste handshake:" @@ -7747,15 +7748,15 @@ msgstr "" "informatie. Zorg ervoor dat deze server is geconfigureerd om de openbare " "sleutel en het IP-adres van %(box_name)s toe te staan." -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 msgid "Server endpoint:" msgstr "Server eindpunt:" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "Openbare sleutel van deze machine:" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "IP-adres van deze machine:" @@ -7901,49 +7902,53 @@ msgstr "Installatie" msgid "Service %(service_name)s is not running." msgstr "Service %(service_name)s is niet actief." -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, python-format msgid "Core functionality and web interface for %(box_name)s" msgstr "Basisfunctionaliteit en webinterface voor %(box_name)s" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" -msgstr "Navigatie in/uitschakelen" +#: plinth/templates/base.html:107 +msgid " Home" +msgstr " Startpagina" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "Startpagina" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +msgid " Apps" +msgstr " Apps" + +#: plinth/templates/base.html:119 msgid "Apps" msgstr "Toepassingen" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +msgid " System" +msgstr " Systeem" + +#: plinth/templates/base.html:128 msgid "System" msgstr "Systeem" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "Wijzig wachtwoord" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -msgid "Restart" -msgstr "Herstarten" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 msgid "Shut down" msgstr "Uitschakelen" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "Afmelden" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 msgid "Select language" msgstr "Selecteer taal" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "Aanmelden" @@ -8007,7 +8012,7 @@ msgstr "Homebrew:" msgid "RPM:" msgstr "RPM:" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -8025,10 +8030,6 @@ msgstr "" "Schakel toepassingen in om snelkoppelingen toe " "te voegen aan deze pagina." -#: plinth/templates/index.html:46 -msgid "Configure »" -msgstr "Configureer »" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -8060,7 +8061,7 @@ msgstr "Startpagina" msgid "Source Code" msgstr "Broncode" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "Doneren" @@ -8098,6 +8099,10 @@ msgstr "" "Momenteel zijn de volgende netwerkinterfaces geconfigureerd als intern: " "%(interface_list)s" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 msgid "Notifications" msgstr "Notificaties" @@ -8138,15 +8143,15 @@ msgstr "" "router worden ingesteld. De volgende poorten moeten worden doorgestuurd voor " "%(service_name)s:" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 msgid "Protocol" msgstr "Protocol" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "Van router/WAN-poorten" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, python-format msgid "To %(box_name)s Ports" msgstr "Naar %(box_name)s poorten" @@ -8201,6 +8206,24 @@ msgstr "%(percentage)s%% voltooid" msgid "Gujarati" msgstr "Gujarati" +#~ msgid "Show Ports" +#~ msgstr "Toon Poorten" + +#~ msgid "Learn more »" +#~ msgstr "Lees meer»" + +#~ msgid "Restart »" +#~ msgstr "Herstart »" + +#~ msgid "Shut Down »" +#~ msgstr "Uitschakelen »" + +#~ msgid "Toggle navigation" +#~ msgstr "Navigatie in/uitschakelen" + +#~ msgid "Configure »" +#~ msgstr "Configureer »" + #~ msgid "Show connection %(connection.name)s" #~ msgstr "Toon verbinding %(connection.name)s" @@ -8982,15 +9005,6 @@ msgstr "Gujarati" #~ "Software snapshots die ouder zijn dan deze worden verwijderd. Dit beperkt " #~ "het aantal software snapshots niet." -#~ msgid " Home" -#~ msgstr " Startpagina" - -#~ msgid " Apps" -#~ msgstr " Apps" - -#~ msgid " System" -#~ msgstr " Systeem" - #~ msgid "Archive name" #~ msgstr "Archiefnaam" diff --git a/plinth/locale/pl/LC_MESSAGES/django.po b/plinth/locale/pl/LC_MESSAGES/django.po index 87e604db0..6b7343389 100644 --- a/plinth/locale/pl/LC_MESSAGES/django.po +++ b/plinth/locale/pl/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: 2020-12-29 01:10+0000\n" "Last-Translator: n0nie4HP \n" "Language-Team: Polish Pod diaspora* jest dostępny pod adresem diaspora.%(domain_name)s" +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "Konfiguracja" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1769,16 +1776,16 @@ msgid "About" msgstr "Informacje" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 msgid "Status" msgstr "Stan" @@ -1929,7 +1936,7 @@ msgstr "Usługa %(service_name)s nie jest uruchomiona." msgid "Port {name} ({details}) unavailable for external networks" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -1942,44 +1949,40 @@ msgstr "" "(jak %(box_name)s) możesz go włączyć używając komendy 'service firewalld " "start' lub, w przypadku systemu z systemd 'systemctl start firewalld'." -#: plinth/modules/firewall/templates/firewall.html:28 -msgid "Show Ports" -msgstr "Pokaż porty" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "Usługa/Port" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "Włączony" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "Wyłączony" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "Zezwolono" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "Zezwolono (tylko wewnętrzne)" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "Zezwolono (tylko zewnętrzne)" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "Zablokowano" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " @@ -1989,13 +1992,13 @@ msgstr "" "automatycznie przepuszczana przez firewall a gdy jest wyłączona, jest " "również blokowana przez firewall." -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -2035,7 +2038,7 @@ msgstr "" "Możesz również sprawdzić ustawienia sieci i " "zmodyfikować je, jeśli to potrzebne." -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "Rozpocznij" @@ -2148,38 +2151,38 @@ msgstr "" msgid "Git" msgstr "Git" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 #, fuzzy #| msgid "Create Repository" msgid "Manage Repositories" msgstr "Utwórz repozytorium" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 #, fuzzy #| msgid "Create Repository" msgid "Create repository" msgstr "Utwórz repozytorium" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 msgid "No repositories available." msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 +#, python-format +msgid "Go to repository %(repo.name)s" +msgstr "" + +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 +msgid "Cloning…" +msgstr "" + +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 #, fuzzy, python-format #| msgid "Delete Archive %(name)s" msgid "Delete repository %(repo.name)s" msgstr "Usuń archiwum %(name)s" -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 -msgid "Cloning…" -msgstr "" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 -#, python-format -msgid "Go to repository %(repo.name)s" -msgstr "" - #: plinth/modules/gitweb/templates/gitweb_delete.html:12 #, fuzzy, python-format #| msgid "Delete Wiki or Blog %(name)s" @@ -2248,6 +2251,26 @@ msgid "Contribute" msgstr "" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, python-format +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "Używasz %(os_release)s i %(box_name)s w wersji %(version)s." + +#: plinth/modules/help/templates/help_about.html:23 +#, fuzzy, python-format +#| msgid "There is a new Plinth version available." +msgid "" +"There is a new %(box_name)s version available." +msgstr "Nowsza wersja %(box_name)s jest dostępna." + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, python-format +msgid "%(box_name)s is up to date." +msgstr "%(box_name)s jest aktualny." + +#: plinth/modules/help/templates/help_about.html:35 #, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2267,7 +2290,7 @@ msgstr "" "email, proxy, przekaźnik Tor na urządzeniu które może zastąpić twój router " "Wi-Fi aby twoje dane zawsze zostały z tobą." -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2277,7 +2300,7 @@ msgid "" "returning the Internet to its intended peer-to-peer architecture." msgstr "" -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2285,36 +2308,18 @@ msgid "" "package." msgstr "" -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the %(box_name)s Wiki." msgstr "" -#: plinth/modules/help/templates/help_about.html:60 -msgid "Learn more »" -msgstr "Dowiedz się więcej »" - -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, python-format -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "Używasz %(os_release)s i %(box_name)s w wersji %(version)s." - -#: plinth/modules/help/templates/help_about.html:69 -#, fuzzy, python-format -#| msgid "There is a new Plinth version available." -msgid "" -"There is a new %(box_name)s version available." -msgstr "Nowsza wersja %(box_name)s jest dostępna." - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, python-format -msgid "%(box_name)s is up to date." -msgstr "%(box_name)s jest aktualny." +#: plinth/modules/help/templates/help_about.html:78 +#, fuzzy +#| msgid "Learn more..." +msgid "Learn more" +msgstr "Dowiedz się więcej..." #: plinth/modules/help/templates/help_base.html:21 #: plinth/modules/help/templates/help_index.html:61 @@ -2379,7 +2384,7 @@ msgid "Thank you!" msgstr "" #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 msgid "Help" msgstr "Pomoc" @@ -2419,7 +2424,7 @@ msgid "" "channel using the IRC web interface." msgstr "" -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 #, fuzzy #| msgid "{box_name} Manual" msgid "Download as PDF" @@ -2616,16 +2621,16 @@ msgstr "" msgid "No wikis or blogs available." msgstr "" -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2720,8 +2725,8 @@ msgstr "JSXC" msgid "Chat Client" msgstr "Klient czatu" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "Informacje o licencji JavaScript" @@ -2751,65 +2756,65 @@ msgstr "Let's Encrypt" msgid "Certificates" msgstr "Certyfikaty" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 msgid "Domain" msgstr "Domena" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "Status certyfikatu" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 msgid "Actions" msgstr "Akcje" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, python-format msgid "Valid, expires on %(expiry_date)s" msgstr "Prawidłowy, wygasa w %(expiry_date)s" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 msgid "Revoked" msgstr "Unieważniony" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, python-format msgid "Expired on %(expiry_date)s" msgstr "Wygasły w %(expiry_date)s" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 #, fuzzy #| msgid "Invalid server name" msgid "Invalid test certificate" msgstr "Niewłaściwa nazwa użytkownika" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "Nieprawidłowy (%(reason)s)" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 msgid "No certificate" msgstr "Brak certyfikatu" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "Unieważnij" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "Uzyskaj" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, python-format msgid "" "No domains have been configured. Configure " @@ -2888,12 +2893,6 @@ msgstr "" msgid "Element" msgstr "Element" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "Konfiguracja" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -2980,59 +2979,59 @@ msgstr "MediaWiki" msgid "Wiki" msgstr "" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 #, fuzzy #| msgid "Administrator Account" msgid "Administrator Password" msgstr "Konto Administratora" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." msgstr "" -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 #, fuzzy #| msgid "Chat Server" msgid "Server URL" msgstr "Serwer czatu" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." msgstr "" -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 #, fuzzy #| msgid "Enable application" msgid "Enable public registrations" msgstr "Aktywuj aplikację" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." msgstr "" -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 #, fuzzy #| msgid "Enable creative mode" msgid "Enable private mode" msgstr "Włącz tryb kreatywny" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 msgid "" "If enabled, access will be restricted. Only people who have accounts can " "read/write to the wiki. Public registrations will also be disabled." msgstr "" -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 msgid "Default Skin" msgstr "" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -3136,13 +3135,13 @@ msgstr "Włącz zniszczenia" msgid "When disabled, players cannot die or receive damage of any kind." msgstr "" -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "" @@ -3290,109 +3289,108 @@ msgstr "" msgid "Monkeysphere" msgstr "Monkeysphere" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "Anuluj" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 msgid "Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 msgid "OpenPGP Fingerprint" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 msgid "Secure Shell" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 msgid "Other" msgstr "Inne" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 msgid "-" msgstr "-" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 msgid "Add Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 msgid "SSH Key Type" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 msgid "SSH Key Size" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 msgid "SSH Fingerprint" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 msgid "Available Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 msgid "Added Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 msgid "Download the key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 msgid "Send the key back to the keyservers" msgstr "" @@ -3482,7 +3480,7 @@ msgstr "" msgid "All web apps" msgstr "" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 #, fuzzy #| msgid "Device" msgid "Services" @@ -3573,8 +3571,8 @@ msgid "" msgstr "" #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "" @@ -3650,7 +3648,7 @@ msgid "-- select --" msgstr "" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 msgid "SSID" msgstr "SSID" @@ -3659,7 +3657,7 @@ msgid "The visible name of the network." msgstr "" #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "" @@ -3688,7 +3686,7 @@ msgid "B/G (2.4 GHz)" msgstr "" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 msgid "Channel" msgstr "" @@ -3839,179 +3837,179 @@ msgid "" "to be reminded later. Some of the other configuration steps may fail.

" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "tak" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "Urządzenie" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 msgid "MAC address" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 msgid "Interface" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 msgid "please check cable" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "IPv4" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "IPv6" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 msgid "" "This interface should be connected to a local network/machine. If you " "connect this interface to a public network, services meant to be available " "only internally will become available externally. This is a security risk." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 msgid "" "This interface should receive your Internet connection. If you connect it to " "a local network/machine, many services meant to available only internally " "will not be available." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -4032,40 +4030,40 @@ msgstr "" msgid "Delete connection %(name)s permanently?" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 msgid "Spacing" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "" @@ -4093,19 +4091,19 @@ msgstr "" msgid "Add Connection" msgstr "" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "" @@ -4131,8 +4129,8 @@ msgstr "" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "" @@ -4219,7 +4217,7 @@ msgid "" "are no other devices on the network." msgstr "" -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -4682,93 +4680,93 @@ msgstr "" msgid "PageKite Domain" msgstr "" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 msgid "Server domain" msgstr "" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " "pagekite.net server." msgstr "" -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." msgstr "" -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 msgid "Deleted custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 msgid "This service is already available as a standard service." msgstr "" -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 msgid "Added custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 msgid "Custom Services" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 msgid "Add Custom Service" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "" @@ -4850,13 +4848,16 @@ msgstr "" "Obecnie uruchomiona jest instalacja lub aktualizacja. Poczekaj aż się " "skończy przed ponownym uruchomieniem lub wyłączeniem." -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" -msgstr "Uruchom ponownie »" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +msgid "Restart" +msgstr "Uruchom ponownie" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" -msgstr "Wyłącz »" +#, fuzzy +#| msgid "Shut down" +msgid "Shut Down" +msgstr "Wyłącz" #: plinth/modules/power/templates/power_restart.html:17 msgid "" @@ -5152,21 +5153,21 @@ msgstr "" msgid "Dolphin" msgstr "Dolphin" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 msgid "Shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 msgid "" "Note: Only specially created directories will be shared on selected disks, " "not the whole disk." msgstr "" -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 msgid "VFAT partitions are not supported" msgstr "" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the users module page." msgstr "" -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 msgid "Users who can currently access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 msgid "" "Users needing to re-enter their password on the password change page to " "access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 msgid "Unavailable Shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." msgstr "" -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 msgid "Share name" msgstr "" -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 #, fuzzy #| msgid "Actions" msgid "Action" @@ -5316,25 +5317,25 @@ msgid "" "services." msgstr "" -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 msgid "Show security report" msgstr "" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "" -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5378,45 +5379,45 @@ msgid "" "running." msgstr "" -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 #, fuzzy #| msgid "Name" msgid "App Name" msgstr "Nazwa" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 msgid "Current Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 msgid "Past Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 #, fuzzy #| msgid "Blocked" msgid "Sandboxed" msgstr "Zablokowano" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 #, fuzzy #| msgid "Blocked" msgid "Sandbox Coverage" msgstr "Zablokowano" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 msgid "N/A" msgstr "" -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 msgid "Yes" msgstr "Tak" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 msgid "No" msgstr "Nie" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 #, fuzzy #| msgid "deluge-web is not running" msgid "Not running" @@ -5561,28 +5562,28 @@ msgstr "" msgid "Shares should be either public or shared with at least one group" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 msgid "Add share" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "" -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 msgid "Shared Over" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 msgid "With Groups" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "" @@ -5714,43 +5715,43 @@ msgstr "" msgid "Delete the following snapshots permanently?" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 #, fuzzy #| msgid "Delete %(name)s" msgid "Delete Snapshots" msgstr "Usuń %(name)s" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 msgid "Create Snapshot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 msgid "will be used at next boot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "" @@ -5773,7 +5774,7 @@ msgid "" "the newly created snapshot." msgstr "" -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "" @@ -5873,11 +5874,11 @@ msgid "" "client matches one of these fingerprints." msgstr "" -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 msgid "Fingerprint" msgstr "" @@ -6057,29 +6058,29 @@ msgstr "" msgid "Other directory (specify below)" msgstr "" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 #, fuzzy #| msgid "The following disks are in use:" msgid "The following storage devices are in use:" msgstr "Używane są następujące dyski:" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "Punkt montowania" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 msgid "Used" msgstr "W użyciu" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -6091,13 +6092,13 @@ msgstr "" "przestrzeń. W ten sposób można uzyskać dodatkową przestrzeń na przechowanie " "plików." -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "Rozszerz główną partycję" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -6206,25 +6207,25 @@ msgstr "" msgid "Local introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 msgid "Pet Name" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 msgid "Add" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "" @@ -6370,21 +6371,21 @@ msgstr "" msgid "Tor configuration is being updated" msgstr "" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 #, fuzzy #| msgid "Dynamic DNS Service" msgid "Onion Service" msgstr "Usługa dynamicznego DNS" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 msgid "Ports" msgstr "" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 msgid "Relay" msgstr "" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, python-format msgid "" "If your %(box_name)s is behind a router or firewall, you should make sure " @@ -6472,7 +6473,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 msgid "Update" @@ -6513,7 +6514,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "" @@ -6533,11 +6534,11 @@ msgid "" "cannot be deactivated." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 msgid "Updating, please wait..." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 msgid "" "This may take a long time to complete. During an update, " @@ -6545,7 +6546,7 @@ msgid "" "case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, fuzzy, python-format #| msgid "Plinth is up to date." msgid "" @@ -6575,34 +6576,34 @@ msgstr "" msgid "Dismiss" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, python-format msgid "There is a new %(box_name)s version available." msgstr "Nowsza wersja %(box_name)s jest dostępna." -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 #, fuzzy #| msgid "FreedomBox Foundation" msgid "Your Freedombox needs an update!" msgstr "Fundacja FreedomBox" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -6610,26 +6611,26 @@ msgid "" "\"%(snapshot_url)s\">Storage Snapshots before continuing." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 #, fuzzy #| msgid "Last update" msgid "Manual Update" msgstr "Ostatnie uaktualnienie" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 #, fuzzy #| msgid "Update URL" msgid "Update now" msgstr "Uaktualnij URL" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 msgid "" "This may take a long time to complete. During an update, " "you cannot install apps. Also, this web interface may be temporarily " "unavailable and show an error. In that case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 msgid "Show recent update logs" msgstr "" @@ -6814,8 +6815,8 @@ msgstr "" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "" @@ -6873,21 +6874,21 @@ msgid "" "step." msgstr "" -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "" + #: plinth/modules/users/templates/users_update.html:11 #, fuzzy, python-format #| msgid "Delete Wiki or Blog %(name)s" @@ -6964,8 +6965,8 @@ msgstr "Niewłaściwa nazwa hosta" #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 msgid "Public Key" msgstr "" @@ -7054,7 +7055,7 @@ msgid "Allowed IPs" msgstr "" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 msgid "Last Connected Time" msgstr "" @@ -7063,51 +7064,51 @@ msgstr "" msgid "No peers configured to connect to this %(box_name)s yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, python-format msgid "Public key for this %(box_name)s:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 msgid "Not configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 msgid "Add a new peer" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 #, fuzzy #| msgid "Chat Client" msgid "As a Client" msgstr "Klient czatu" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 #, fuzzy #| msgid "Authentication to remote server failed." msgid "No connections to remote servers are configured yet." msgstr "Nie powiodła się autoryzacja na zdalnym serwerze." -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 #, fuzzy #| msgid "Connection refused" @@ -7151,44 +7152,44 @@ msgid "" "is configured with the following information." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 #, fuzzy #| msgid "Administrator Account" msgid "Server endpoints:" msgstr "Konto Administratora" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 #, fuzzy #| msgid "Select verified SSH public key" msgid "Server public key:" msgstr "Wybierz zweryfikowany klucz publiczny SSH" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "" @@ -7200,17 +7201,17 @@ msgid "" "public key and IP address." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 #, fuzzy #| msgid "Administrator Account" msgid "Server endpoint:" msgstr "Konto Administratora" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "" @@ -7388,52 +7389,60 @@ msgstr "" msgid "Service %(service_name)s is not running." msgstr "Usługa %(service_name)s nie jest uruchomiona." -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, fuzzy, python-format #| msgid "Plinth administrative interface for the %(box_name)s" msgid "Core functionality and web interface for %(box_name)s" msgstr "Interfejs administracyjny Plinth dla %(box_name)s" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" -msgstr "Przełącz nawigację" +#: plinth/templates/base.html:107 +#, fuzzy +#| msgid "Home" +msgid " Home" +msgstr "Dom" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "Dom" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +#, fuzzy +#| msgid "Apps" +msgid " Apps" +msgstr "Aplikacje" + +#: plinth/templates/base.html:119 msgid "Apps" msgstr "Aplikacje" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +msgid " System" +msgstr "" + +#: plinth/templates/base.html:128 msgid "System" msgstr "" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "Zmień hasło" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -msgid "Restart" -msgstr "Uruchom ponownie" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 msgid "Shut down" msgstr "Wyłącz" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "Wyloguj się" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 #, fuzzy #| msgid "Language" msgid "Select language" msgstr "Język" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "Zaloguj się" @@ -7503,7 +7512,7 @@ msgstr "Homebrew:" msgid "RPM:" msgstr "RPM:" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -7518,10 +7527,6 @@ msgid "" msgstr "" "Włącz aplikacje aby dodać skróty do tej strony." -#: plinth/templates/index.html:46 -msgid "Configure »" -msgstr "Konfiguruj »" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -7557,7 +7562,7 @@ msgstr "" msgid "Source Code" msgstr "" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "" @@ -7592,6 +7597,10 @@ msgid "" "%(interface_list)s" msgstr "" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 #, fuzzy #| msgid "No certificate" @@ -7632,15 +7641,15 @@ msgid "" "your router. You should forward the following ports for %(service_name)s:" msgstr "" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 msgid "Protocol" msgstr "" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, fuzzy, python-format #| msgid "%(box_name)s Setup" msgid "To %(box_name)s Ports" @@ -7694,6 +7703,24 @@ msgstr "" msgid "Gujarati" msgstr "Gujarati" +#~ msgid "Show Ports" +#~ msgstr "Pokaż porty" + +#~ msgid "Learn more »" +#~ msgstr "Dowiedz się więcej »" + +#~ msgid "Restart »" +#~ msgstr "Uruchom ponownie »" + +#~ msgid "Shut Down »" +#~ msgstr "Wyłącz »" + +#~ msgid "Toggle navigation" +#~ msgstr "Przełącz nawigację" + +#~ msgid "Configure »" +#~ msgstr "Konfiguruj »" + #, fuzzy #~| msgid "Domain Name" #~ msgid "Disk Name" @@ -7983,16 +8010,6 @@ msgstr "Gujarati" #~ msgid "chrony client in contact with servers" #~ msgstr "Klient NTP podłączony do serwerów" -#, fuzzy -#~| msgid "Home" -#~ msgid " Home" -#~ msgstr "Dom" - -#, fuzzy -#~| msgid "Apps" -#~ msgid " Apps" -#~ msgstr "Aplikacje" - #, fuzzy #~| msgid "Invalid server name" #~ msgid "Invalid archive name" diff --git a/plinth/locale/pt/LC_MESSAGES/django.po b/plinth/locale/pt/LC_MESSAGES/django.po index 702337501..9aa414e72 100644 --- a/plinth/locale/pt/LC_MESSAGES/django.po +++ b/plinth/locale/pt/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: 2020-12-06 19:29+0000\n" "Last-Translator: ssantos \n" "Language-Team: Portuguese diaspora.%(domain_name)s " msgstr "" +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "Configuração" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1684,16 +1691,16 @@ msgid "About" msgstr "" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 msgid "Status" msgstr "Estado" @@ -1827,7 +1834,7 @@ msgstr "O Servidor da descoberta do serviço não está a correr" msgid "Port {name} ({details}) unavailable for external networks" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -1836,57 +1843,53 @@ msgid "" "system with systemd 'systemctl start firewalld'." msgstr "" -#: plinth/modules/firewall/templates/firewall.html:28 -msgid "Show Ports" -msgstr "" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " "disabled in the firewall." msgstr "" -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -1924,7 +1927,7 @@ msgid "" "modify it if necessary." msgstr "" -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "" @@ -2029,38 +2032,38 @@ msgstr "" msgid "Git" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 #, fuzzy #| msgid "Create new repository" msgid "Manage Repositories" msgstr "Criar novo repositório" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 #, fuzzy #| msgid "Create new repository" msgid "Create repository" msgstr "Criar novo repositório" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 msgid "No repositories available." msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 +#, python-format +msgid "Go to repository %(repo.name)s" +msgstr "" + +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 +msgid "Cloning…" +msgstr "" + +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 #, fuzzy, python-format #| msgid "Delete Archive %(name)s" msgid "Delete repository %(repo.name)s" msgstr "Apagar ficheiro %(name)s" -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 -msgid "Cloning…" -msgstr "" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 -#, python-format -msgid "Go to repository %(repo.name)s" -msgstr "" - #: plinth/modules/gitweb/templates/gitweb_delete.html:12 #, python-format msgid "Delete Git Repository %(name)s" @@ -2128,6 +2131,25 @@ msgid "Contribute" msgstr "" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, python-format +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:23 +#, python-format +msgid "" +"There is a new %(box_name)s version available." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, python-format +msgid "%(box_name)s is up to date." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:35 #, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2139,7 +2161,7 @@ msgid "" "your data stays with you." msgstr "" -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2149,7 +2171,7 @@ msgid "" "returning the Internet to its intended peer-to-peer architecture." msgstr "" -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2157,34 +2179,15 @@ msgid "" "package." msgstr "" -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the %(box_name)s Wiki." msgstr "" -#: plinth/modules/help/templates/help_about.html:60 -msgid "Learn more »" -msgstr "" - -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, python-format -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "" - -#: plinth/modules/help/templates/help_about.html:69 -#, python-format -msgid "" -"There is a new %(box_name)s version available." -msgstr "" - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, python-format -msgid "%(box_name)s is up to date." +#: plinth/modules/help/templates/help_about.html:78 +msgid "Learn more" msgstr "" #: plinth/modules/help/templates/help_base.html:21 @@ -2250,7 +2253,7 @@ msgid "Thank you!" msgstr "" #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 msgid "Help" msgstr "" @@ -2286,7 +2289,7 @@ msgid "" "channel using the IRC web interface." msgstr "" -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 #, fuzzy #| msgid "Download" msgid "Download as PDF" @@ -2479,16 +2482,16 @@ msgstr "" msgid "No wikis or blogs available." msgstr "" -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2580,8 +2583,8 @@ msgstr "" msgid "Chat Client" msgstr "" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "" @@ -2611,67 +2614,67 @@ msgstr "" msgid "Certificates" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 #, fuzzy #| msgid "Domain Name" msgid "Domain" msgstr "Nome de Domínio" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 #, fuzzy #| msgid "Applications" msgid "Actions" msgstr "Aplicações" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, python-format msgid "Valid, expires on %(expiry_date)s" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 msgid "Revoked" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, python-format msgid "Expired on %(expiry_date)s" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 msgid "Invalid test certificate" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 msgid "No certificate" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, python-format msgid "" "No domains have been configured. Configure " @@ -2750,12 +2753,6 @@ msgstr "" msgid "Element" msgstr "" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "Configuração" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -2845,57 +2842,57 @@ msgstr "" msgid "Wiki" msgstr "" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 msgid "Administrator Password" msgstr "" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." msgstr "" -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 #, fuzzy #| msgid "Web Server" msgid "Server URL" msgstr "Servidor Web" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." msgstr "" -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 #, fuzzy #| msgid "Enable application" msgid "Enable public registrations" msgstr "Ativar aplicação" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." msgstr "" -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 #, fuzzy #| msgid "Applications" msgid "Enable private mode" msgstr "Aplicações" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 msgid "" "If enabled, access will be restricted. Only people who have accounts can " "read/write to the wiki. Public registrations will also be disabled." msgstr "" -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 msgid "Default Skin" msgstr "" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -2997,13 +2994,13 @@ msgstr "" msgid "When disabled, players cannot die or receive damage of any kind." msgstr "" -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "" @@ -3159,115 +3156,114 @@ msgstr "" msgid "Monkeysphere" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 #, fuzzy #| msgid "Domain Name" msgid "Domains" msgstr "Nome de Domínio" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 msgid "OpenPGP Fingerprint" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 msgid "Secure Shell" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 msgid "Other" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 msgid "-" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 #, fuzzy #| msgid "Domain Name" msgid "Add Domains" msgstr "Nome de Domínio" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 msgid "SSH Key Type" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 msgid "SSH Key Size" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 msgid "SSH Fingerprint" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 msgid "Available Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 #, fuzzy #| msgid "Domain Name" msgid "Added Domains" msgstr "Nome de Domínio" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 msgid "Download the key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 msgid "Send the key back to the keyservers" msgstr "" @@ -3357,7 +3353,7 @@ msgstr "" msgid "All web apps" msgstr "" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 #, fuzzy #| msgid "Service Discovery" msgid "Services" @@ -3450,8 +3446,8 @@ msgid "" msgstr "" #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "" @@ -3527,7 +3523,7 @@ msgid "-- select --" msgstr "" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 msgid "SSID" msgstr "" @@ -3536,7 +3532,7 @@ msgid "The visible name of the network." msgstr "" #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "" @@ -3565,7 +3561,7 @@ msgid "B/G (2.4 GHz)" msgstr "" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 msgid "Channel" msgstr "" @@ -3715,179 +3711,179 @@ msgid "" "to be reminded later. Some of the other configuration steps may fail.

" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 msgid "MAC address" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 msgid "Interface" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 msgid "please check cable" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 msgid "" "This interface should be connected to a local network/machine. If you " "connect this interface to a public network, services meant to be available " "only internally will become available externally. This is a security risk." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 msgid "" "This interface should receive your Internet connection. If you connect it to " "a local network/machine, many services meant to available only internally " "will not be available." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -3908,40 +3904,40 @@ msgstr "" msgid "Delete connection %(name)s permanently?" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 msgid "Spacing" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "" @@ -3969,19 +3965,19 @@ msgstr "" msgid "Add Connection" msgstr "" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "" @@ -4007,8 +4003,8 @@ msgstr "" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "" @@ -4094,7 +4090,7 @@ msgid "" "are no other devices on the network." msgstr "" -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -4560,93 +4556,93 @@ msgstr "" msgid "PageKite Domain" msgstr "" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 msgid "Server domain" msgstr "" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " "pagekite.net server." msgstr "" -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." msgstr "" -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 msgid "Deleted custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 msgid "This service is already available as a standard service." msgstr "" -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 msgid "Added custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 msgid "Custom Services" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 msgid "Add Custom Service" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "" @@ -4726,12 +4722,13 @@ msgid "" "finished before shutting down or restarting." msgstr "" -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +msgid "Restart" msgstr "" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" +msgid "Shut Down" msgstr "" #: plinth/modules/power/templates/power_restart.html:17 @@ -5023,23 +5020,23 @@ msgstr "" msgid "Dolphin" msgstr "" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 #, fuzzy #| msgid "Archive name" msgid "Shares" msgstr "Nome do arquivo" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 msgid "" "Note: Only specially created directories will be shared on selected disks, " "not the whole disk." msgstr "" -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 msgid "VFAT partitions are not supported" msgstr "" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the users module page." msgstr "" -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 msgid "Users who can currently access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 msgid "" "Users needing to re-enter their password on the password change page to " "access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 msgid "Unavailable Shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." msgstr "" -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 #, fuzzy #| msgid "Archive name" msgid "Share name" msgstr "Nome do arquivo" -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 #, fuzzy #| msgid "Applications" msgid "Action" @@ -5189,25 +5186,25 @@ msgid "" "services." msgstr "" -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 msgid "Show security report" msgstr "" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "" -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5251,41 +5248,41 @@ msgid "" "running." msgstr "" -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 #, fuzzy #| msgid "Name" msgid "App Name" msgstr "Nome" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 msgid "Current Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 msgid "Past Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 msgid "Sandboxed" msgstr "" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 msgid "Sandbox Coverage" msgstr "" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 msgid "N/A" msgstr "" -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 msgid "Yes" msgstr "" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 msgid "No" msgstr "" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 #, fuzzy #| msgid "Service discovery server is not running" msgid "Not running" @@ -5431,28 +5428,28 @@ msgstr "" msgid "Shares should be either public or shared with at least one group" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 msgid "Add share" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "" -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 msgid "Shared Over" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 msgid "With Groups" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "" @@ -5576,41 +5573,41 @@ msgstr "" msgid "Delete the following snapshots permanently?" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 msgid "Delete Snapshots" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 msgid "Create Snapshot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 msgid "will be used at next boot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "" @@ -5633,7 +5630,7 @@ msgid "" "the newly created snapshot." msgstr "" -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "" @@ -5727,11 +5724,11 @@ msgid "" "client matches one of these fingerprints." msgstr "" -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 msgid "Fingerprint" msgstr "" @@ -5910,27 +5907,27 @@ msgstr "Nome do arquivo" msgid "Other directory (specify below)" msgstr "" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 msgid "The following storage devices are in use:" msgstr "" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 msgid "Used" msgstr "" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -5938,13 +5935,13 @@ msgid "" "will provide you additional free space to store your files." msgstr "" -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -6052,25 +6049,25 @@ msgstr "" msgid "Local introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 msgid "Pet Name" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 msgid "Add" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "" @@ -6220,19 +6217,19 @@ msgstr "" msgid "Tor configuration is being updated" msgstr "Configuração atualizada" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 msgid "Onion Service" msgstr "" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 msgid "Ports" msgstr "" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 msgid "Relay" msgstr "" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, python-format msgid "" "If your %(box_name)s is behind a router or firewall, you should make sure " @@ -6313,7 +6310,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 msgid "Update" @@ -6354,7 +6351,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "" @@ -6374,11 +6371,11 @@ msgid "" "cannot be deactivated." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 msgid "Updating, please wait..." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 msgid "" "This may take a long time to complete. During an update, " @@ -6386,7 +6383,7 @@ msgid "" "case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, python-format msgid "" "\n" @@ -6411,34 +6408,34 @@ msgstr "" msgid "Dismiss" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, python-format msgid "There is a new %(box_name)s version available." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 #, fuzzy #| msgid "FreedomBox" msgid "Your Freedombox needs an update!" msgstr "Freedombox" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -6446,26 +6443,26 @@ msgid "" "\"%(snapshot_url)s\">Storage Snapshots before continuing." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 #, fuzzy #| msgid "Manual" msgid "Manual Update" msgstr "Manual" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 #, fuzzy #| msgid "General Configuration" msgid "Update now" msgstr "Configuração Geral" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 msgid "" "This may take a long time to complete. During an update, " "you cannot install apps. Also, this web interface may be temporarily " "unavailable and show an error. In that case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 msgid "Show recent update logs" msgstr "" @@ -6644,8 +6641,8 @@ msgstr "" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "" @@ -6698,21 +6695,21 @@ msgid "" "step." msgstr "" -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "" + #: plinth/modules/users/templates/users_update.html:11 #, fuzzy, python-format #| msgid "Service discovery server is running" @@ -6789,8 +6786,8 @@ msgstr "Nome de domínio inválido" #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 msgid "Public Key" msgstr "" @@ -6877,7 +6874,7 @@ msgid "Allowed IPs" msgstr "" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 msgid "Last Connected Time" msgstr "" @@ -6886,47 +6883,47 @@ msgstr "" msgid "No peers configured to connect to this %(box_name)s yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, python-format msgid "Public key for this %(box_name)s:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 msgid "Not configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 msgid "Add a new peer" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 msgid "As a Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 #, fuzzy #| msgid "Connection refused" @@ -6968,44 +6965,44 @@ msgid "" "is configured with the following information." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 #, fuzzy #| msgid "Server Administration" msgid "Server endpoints:" msgstr "Administração do servidor" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 #, fuzzy #| msgid "Select verified SSH public key" msgid "Server public key:" msgstr "Seleccione a chave pública de SSH verificada" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "" @@ -7017,17 +7014,17 @@ msgid "" "public key and IP address." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 #, fuzzy #| msgid "Server Administration" msgid "Server endpoint:" msgstr "Administração do servidor" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "" @@ -7183,51 +7180,55 @@ msgstr "" msgid "Service %(service_name)s is not running." msgstr "O Servidor da descoberta do serviço não está a correr" -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, python-format msgid "Core functionality and web interface for %(box_name)s" msgstr "" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" +#: plinth/templates/base.html:107 +msgid " Home" msgstr "" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +msgid " Apps" +msgstr "" + +#: plinth/templates/base.html:119 msgid "Apps" msgstr "" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +msgid " System" +msgstr "" + +#: plinth/templates/base.html:128 msgid "System" msgstr "" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -msgid "Restart" -msgstr "" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 msgid "Shut down" msgstr "" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 #, fuzzy #| msgid "Language" msgid "Select language" msgstr "Língua" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "" @@ -7291,7 +7292,7 @@ msgstr "" msgid "RPM:" msgstr "" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -7305,12 +7306,6 @@ msgid "" "this page." msgstr "" -#: plinth/templates/index.html:46 -#, fuzzy -#| msgid "Configure" -msgid "Configure »" -msgstr "Configurar" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -7335,7 +7330,7 @@ msgstr "" msgid "Source Code" msgstr "" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "" @@ -7370,6 +7365,10 @@ msgid "" "%(interface_list)s" msgstr "" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 msgid "Notifications" msgstr "Notificações" @@ -7401,15 +7400,15 @@ msgid "" "your router. You should forward the following ports for %(service_name)s:" msgstr "" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 msgid "Protocol" msgstr "" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, python-format msgid "To %(box_name)s Ports" msgstr "" @@ -7464,6 +7463,11 @@ msgstr "%(percentage)s%% concluída" msgid "Gujarati" msgstr "Gujarati" +#, fuzzy +#~| msgid "Configure" +#~ msgid "Configure »" +#~ msgstr "Configurar" + #, fuzzy #~| msgid "Domain Name" #~ msgid "Disk Name" diff --git a/plinth/locale/ru/LC_MESSAGES/django.po b/plinth/locale/ru/LC_MESSAGES/django.po index 8bfd0f338..036588d5e 100644 --- a/plinth/locale/ru/LC_MESSAGES/django.po +++ b/plinth/locale/ru/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: 2020-12-29 01:10+0000\n" "Last-Translator: Nikita Epifanov \n" "Language-Team: Russian diaspora.%(domain_name)s" +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "Конфигурация" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1783,16 +1790,16 @@ msgid "About" msgstr "О проекте" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 msgid "Status" msgstr "Статус" @@ -1945,7 +1952,7 @@ msgstr "Порт {name} ({details}) доступен для внешних се msgid "Port {name} ({details}) unavailable for external networks" msgstr "Порт {name} ({details}) недоступен для внешних сетей" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -1959,44 +1966,40 @@ msgstr "" "команды 'service firewalld start' или в случае системы с systemd 'systemctl " "start firewalld'." -#: plinth/modules/firewall/templates/firewall.html:28 -msgid "Show Ports" -msgstr "Показать порты" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "Служба/Порт" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "Включено" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "Выключено" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "Разрешено" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "Разрешено (только внутренние)" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "Разрешено (только внешние)" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "Заблокировано" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " @@ -2006,13 +2009,13 @@ msgstr "" "разрешается в брандмауэре и при отключении службы она также запрещается в " "брандмауэре." -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "Дополнительные" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -2058,7 +2061,7 @@ msgstr "" "Вы можете проверить настройки сетии " "изменить их, если необходимо." -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "Запуск программы установки" @@ -2163,33 +2166,33 @@ msgstr "Gitweb отображает это как ветку по умолчан msgid "Git" msgstr "Git" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 msgid "Manage Repositories" msgstr "Управление репозиториями" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 msgid "Create repository" msgstr "Создать репозиторий" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 msgid "No repositories available." msgstr "Нет доступных репозиториев." -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 -#, python-format -msgid "Delete repository %(repo.name)s" -msgstr "Удалить репозиторий %(repo.name)s" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 -msgid "Cloning…" -msgstr "Клонирование…" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 #, python-format msgid "Go to repository %(repo.name)s" msgstr "Перейти в репозиторий %(repo.name)s" +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 +msgid "Cloning…" +msgstr "Клонирование…" + +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 +#, python-format +msgid "Delete repository %(repo.name)s" +msgstr "Удалить репозиторий %(repo.name)s" + #: plinth/modules/gitweb/templates/gitweb_delete.html:12 #, python-format msgid "Delete Git Repository %(name)s" @@ -2247,6 +2250,25 @@ msgid "Contribute" msgstr "Помощь проекту" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, python-format +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "Вы используете %(os_release)s и %(box_name)s версии %(version)s." + +#: plinth/modules/help/templates/help_about.html:23 +#, python-format +msgid "" +"There is a new %(box_name)s version available." +msgstr "Доступна новая версия %(box_name)s." + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, python-format +msgid "%(box_name)s is up to date." +msgstr "%(box_name)s в актуальном состоянии." + +#: plinth/modules/help/templates/help_about.html:35 #, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2266,7 +2288,7 @@ msgstr "" "прокси и сервер Tor, на устройстве, которое может заменить ваш маршрутизатор " "Wi-Fi, так что ваши данные остаются с вами." -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2282,7 +2304,7 @@ msgstr "" "ними. Давая обратно власть пользователям в их сети и машины, мы возвращаемся " "к его предполагаемую архитектуру Интернета peer-to-peer." -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2292,7 +2314,7 @@ msgstr "" "Существует ряд проектов, которые работают в сторону реализации будущего " "распределенных служб, %(box_name)s стремится объединить их в удобном пакете." -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the Wiki ." -#: plinth/modules/help/templates/help_about.html:60 -msgid "Learn more »" -msgstr "Подробнее »" - -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, python-format -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "Вы используете %(os_release)s и %(box_name)s версии %(version)s." - -#: plinth/modules/help/templates/help_about.html:69 -#, python-format -msgid "" -"There is a new %(box_name)s version available." -msgstr "Доступна новая версия %(box_name)s." - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, python-format -msgid "%(box_name)s is up to date." -msgstr "%(box_name)s в актуальном состоянии." +#: plinth/modules/help/templates/help_about.html:78 +#, fuzzy +#| msgid "Learn more..." +msgid "Learn more" +msgstr "Подробнее..." #: plinth/modules/help/templates/help_base.html:21 #: plinth/modules/help/templates/help_index.html:61 @@ -2408,7 +2413,7 @@ msgid "Thank you!" msgstr "Спасибо!" #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 msgid "Help" msgstr "Справка" @@ -2456,7 +2461,7 @@ msgstr "" "\"https://webchat.oftc.net/?randomnick=1&channels=freedombox&prompt=1\"> " "#freedombox используя веб-интерфейс." -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 msgid "Download as PDF" msgstr "Скачать как PDF" @@ -2673,16 +2678,16 @@ msgstr "Создать Блог или Вики" msgid "No wikis or blogs available." msgstr "Нет доступных вики или блогов." -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "Удаление узла %(site)s" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "Перейти к %(site)s" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "Удаление узла %(site)s" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2782,8 +2787,8 @@ msgstr "JSXC" msgid "Chat Client" msgstr "Чат-клиент" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "Информация о лицензии JavaScript" @@ -2822,63 +2827,63 @@ msgstr "Let's Encrypt" msgid "Certificates" msgstr "Сертификаты" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 msgid "Domain" msgstr "Домен" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "Статус сертификата" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "Безопасность Веб-сайта" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 msgid "Actions" msgstr "Действия" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, python-format msgid "Valid, expires on %(expiry_date)s" msgstr "Действительно, истекает %(expiry_date)s" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 msgid "Revoked" msgstr "Отменено" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, python-format msgid "Expired on %(expiry_date)s" msgstr "Истекло %(expiry_date)s" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 msgid "Invalid test certificate" msgstr "Недопустимый сертификат" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "Неверный %(reason)s" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 msgid "No certificate" msgstr "Не сертификата" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "Получить повторно" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "Отменить" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "Получить" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, python-format msgid "" "No domains have been configured. Configure " @@ -2972,12 +2977,6 @@ msgstr "" msgid "Element" msgstr "Element" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "Конфигурация" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -3095,11 +3094,11 @@ msgstr "MediaWiki" msgid "Wiki" msgstr "Wiki" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 msgid "Administrator Password" msgstr "Пароль администратора" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." @@ -3107,11 +3106,11 @@ msgstr "" "Установить новый пароль для учетной записи администратора MediaWiki (admin). " "Оставьте это поле пустым, чтобы сохранить текущий пароль." -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 msgid "Server URL" msgstr "URL сервера" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." @@ -3119,11 +3118,11 @@ msgstr "" "Использовалось MediaWiki для создания ссылок на wiki страницы, например " "внизу веб-страниц, в RSS-потоках или в электронных письмах." -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 msgid "Enable public registrations" msgstr "Включить публичную регистрацию" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." @@ -3131,11 +3130,11 @@ msgstr "" "Если включено, кто угодно в интернете сможет создать учётную запись в вашем " "экземпляре MediaWiki." -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 msgid "Enable private mode" msgstr "Включить режим приватности" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 msgid "" "If enabled, access will be restricted. Only people who have accounts can " "read/write to the wiki. Public registrations will also be disabled." @@ -3144,11 +3143,11 @@ msgstr "" "записи, смогут читать или писать в вики. Публичные регистрации также будут " "отключены." -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 msgid "Default Skin" msgstr "Скин по умолчанию" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -3249,13 +3248,13 @@ msgid "When disabled, players cannot die or receive damage of any kind." msgstr "" "Когда выключено, игроки не могут умереть или получить урон любого рода." -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "Адрес" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "Порт" @@ -3439,95 +3438,94 @@ msgstr "" msgid "Monkeysphere" msgstr "MonkeySphere" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "Публикация ключа на сервер ключей..." -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "Отмена" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "Служба" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 msgid "Domains" msgstr "Домены" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 msgid "OpenPGP Fingerprint" msgstr "OpenPGP отпечаток" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 msgid "Secure Shell" msgstr "Sеcure Shell" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 msgid "Other" msgstr "Другое" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "Показать детали для ключа %(fingerprint)s" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 msgid "-" msgstr "-" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "Импортировать ключ" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "Опубликовать ключ" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 msgid "Add Domains" msgstr "Добавить домен" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "Идентификаторы пользователя OpenPGP" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "Дата импорта ключа" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 msgid "SSH Key Type" msgstr "Тип ключа SSH" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 msgid "SSH Key Size" msgstr "Размер ключа SSH" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 msgid "SSH Fingerprint" msgstr "SSH отпечаток" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "Файл ключа" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 msgid "Available Domains" msgstr "Доступные Домены" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 msgid "Added Domains" msgstr "Добавленные домены" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" @@ -3535,15 +3533,15 @@ msgstr "" "После публикации ключа на сервер, он может быть подписан с помощью GnuPG следующими командами:" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 msgid "Download the key" msgstr "Скачать ключ" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "Подписать ключ" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 msgid "Send the key back to the keyservers" msgstr "Отправить ключ на сервер ключей" @@ -3642,7 +3640,7 @@ msgstr "Все" msgid "All web apps" msgstr "Все веб-приложения" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 msgid "Services" msgstr "Службы" @@ -3740,8 +3738,8 @@ msgstr "" "подсети по умолчанию, основанная на адресе." #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "Шлюз" @@ -3829,7 +3827,7 @@ msgid "-- select --" msgstr "-- Выберите --" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 msgid "SSID" msgstr "SSID" @@ -3838,7 +3836,7 @@ msgid "The visible name of the network." msgstr "Отображаемое имя сети." #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "Режим" @@ -3867,7 +3865,7 @@ msgid "B/G (2.4 GHz)" msgstr "B/G (2,4 ГГц)" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 msgid "Channel" msgstr "Канал" @@ -4076,158 +4074,158 @@ msgstr "" "в настоящее время и хотите получить напоминание позже. Некоторые другие шаги " "настройки могут завершиться ошибкой.

" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "Редактирование подключения" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "Редактировать" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "Отключить" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "Включить" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "Удаление подключения" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "Подключение" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "Основное соединение" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "Да" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "Устройство" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "Состояние" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "Определение состояния" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 msgid "MAC address" msgstr "MAC-адрес" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 msgid "Interface" msgstr "Интерфейс" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "Описание" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "Физическая связь" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "Состояния связи" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "кабель подключен" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 msgid "please check cable" msgstr "Проверьте кабель" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "Скорость" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "%(ethernet_speed)s Мбит/сек" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "%(wireless_bitrate)s Мбит/сек" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "Сила сигнала" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "IРv4" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "Метод" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "IP-адрес" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "DNS-сервер" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "По умолчанию" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "IРv6" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "Это подключение не активно." -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "Безопасность" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "Зона Брандмауэра" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 msgid "" "This interface should be connected to a local network/machine. If you " "connect this interface to a public network, services meant to be available " @@ -4237,8 +4235,8 @@ msgstr "" "интерфейс подключен к публичной сети, внутренние службы будут доступны " "извне. Это представляет риск для безопасности." -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 msgid "" "This interface should receive your Internet connection. If you connect it to " "a local network/machine, many services meant to available only internally " @@ -4247,13 +4245,13 @@ msgstr "" "Этот интерфейс должен получить подключение к Интернету. Если вы подключите " "его к локальной сети/машине, многие внутренние службы будут не доступны." -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "Внешний" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -4276,40 +4274,40 @@ msgstr "Удаление подключения" msgid "Delete connection %(name)s permanently?" msgstr "Окончательно удалить подключение %(name)s?" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "Интернет" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 msgid "Spacing" msgstr "Интервал" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "Ethernet" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "Wi-Fi" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "Показать подключение %(name)s" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "Внутренний" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "Компьютер" @@ -4335,19 +4333,19 @@ msgstr "Соседние сети Wi-Fi" msgid "Add Connection" msgstr "Добавить подключение" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "Удалить подключение %(name)s" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "Активные" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "Неактивен" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "Удалить подключение %(name)s" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "Создать..." @@ -4375,8 +4373,8 @@ msgstr "Пропустить этот шаг" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "Следующий" @@ -4479,7 +4477,7 @@ msgstr "" "Ваше Интернет-соединение напрямую подключено к вашему %(box_name)s, и в сети " "нет других устройств." -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -5030,11 +5028,11 @@ msgstr "Публичная видимость" msgid "PageKite Domain" msgstr "PageKite Домен" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 msgid "Server domain" msgstr "Домен сервера" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " "pagekite.net server." @@ -5042,31 +5040,31 @@ msgstr "" "Выберите свой сервер pagekite. Выберите \"pagekite.net\", чтобы использовать " "сервер по умолчанию - pagekite.net." -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "Порт сервера" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "Порт сервера pagekite (по умолчанию: 80)" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "Имя Kite" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "Пример: mybox.pagekite.me" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "Недопустимое имя kite" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "Kite secrеt" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." @@ -5074,53 +5072,53 @@ msgstr "" "Секрет, связанный с kite или секрет по умолчанию для вашей учетной записи, " "если не секрет устанавливается на kite." -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "протокол" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "внешний (frontend) порт" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "Внутренний (freedombox) порт" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "Включить поддомены" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 msgid "Deleted custom service" msgstr "Удалить пользовательские службы" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 msgid "This service is already available as a standard service." msgstr "Эта служба уже доступна как стандартная." -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 msgid "Added custom service" msgstr "Добавить пользовательскую службу" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "Эта служба уже существует" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 msgid "Custom Services" msgstr "Пользовательские службы" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 msgid "Add Custom Service" msgstr "Добавить пользовательскую службу" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "Подключен к %(backend_host)s:%(backend_port)s" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "Удалить эту службу" @@ -5213,13 +5211,16 @@ msgstr "" "Другая установка или обновление уже запущенны. Пожалуйста, подождите " "несколько минут перед выключением или перезагрузкой." -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" -msgstr "Рестарт »" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +msgid "Restart" +msgstr "Перезапустить" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" -msgstr "Выключить »" +#, fuzzy +#| msgid "Shut down" +msgid "Shut Down" +msgstr "Завершить работу" #: plinth/modules/power/templates/power_restart.html:17 msgid "" @@ -5579,11 +5580,11 @@ msgstr "Файлы GNOME" msgid "Dolphin" msgstr "Dolphin" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 msgid "Shares" msgstr "Поделиться" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 msgid "" "Note: Only specially created directories will be shared on selected disks, " "not the whole disk." @@ -5591,11 +5592,11 @@ msgstr "" "Примечание. На выбранных дисках будут использоваться только специально " "созданные каталоги, а не весь диск." -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 msgid "VFAT partitions are not supported" msgstr "Разделы VFAT не поддерживаются" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the хранилище и настроить доступ к общим ресурсам " "на странице модуля пользователи." -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 msgid "Users who can currently access group and home shares" msgstr "" "Пользователи, которые в настоящее время могут получить доступ к групповым и " "домашним ресурсам" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 msgid "" "Users needing to re-enter their password on the password change page to " "access group and home shares" @@ -5620,11 +5621,11 @@ msgstr "" "Пользователи, которым необходимо повторно ввести свой пароль на странице " "изменения пароля для доступа к групповым и домашним ресурсам" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 msgid "Unavailable Shares" msgstr "Недоступный общий доступ" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." @@ -5632,11 +5633,11 @@ msgstr "" "Общие ресурсы настроены, но диск недоступен. Если диск снова подключить, " "общий доступ будет включен автоматически." -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 msgid "Share name" msgstr "Имя общего ресурса" -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 msgid "Action" msgstr "Действие" @@ -5758,25 +5759,25 @@ msgstr "" "Когда эта опция включена, Fail2Ban ограничит попытки взлома перебором SSH-" "сервера и других защищенных паролем интернет услуг, которые включены." -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 msgid "Show security report" msgstr "Показать отчёт о безопасности" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "Частые обновления функций" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "Активированы частые обновления функций." -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5838,39 +5839,39 @@ msgstr "" "изолирована от остальной системы. Он отображается только во время работы " "службы." -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 msgid "App Name" msgstr "Имя приложения" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 msgid "Current Vulnerabilities" msgstr "Текущие уязвимости" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 msgid "Past Vulnerabilities" msgstr "Прошлые уязвимости" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 msgid "Sandboxed" msgstr "Песочница" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 msgid "Sandbox Coverage" msgstr "Покрытие песочницы" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 msgid "N/A" msgstr "Н/Д" -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 msgid "Yes" msgstr "Да" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 msgid "No" msgstr "Нет" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 msgid "Not running" msgstr "Не запущен" @@ -6029,28 +6030,28 @@ msgstr "" "Общий доступ должны быть публично доступным или доступными хотя бы для одной " "группы" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 msgid "Add share" msgstr "Добавить общий ресурс" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "Нет настроенных общих ресурсов." -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "Путь на диске" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 msgid "Shared Over" msgstr "Общий ресурс через" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 msgid "With Groups" msgstr "С группами" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "публичный доступ" @@ -6192,41 +6193,41 @@ msgstr "" msgid "Delete the following snapshots permanently?" msgstr "Окончательно удалить этот снапшот?" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "Номер" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "Дата" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 msgid "Delete Snapshots" msgstr "Удалить снапшот" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 msgid "Create Snapshot" msgstr "Создать снимок" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "Откат" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 msgid "will be used at next boot" msgstr "будет использоваться при следующей загрузке" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "в использовании" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "Откат к снимку #%(number)s" @@ -6253,7 +6254,7 @@ msgstr "" "Будет автоматически создан новый снимок текущего состояния файловой системы. " "Вы сможете отменить откат, возвращаясь к вновь созданному снимку." -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "Откат к снимку %(number)s" @@ -6352,11 +6353,11 @@ msgstr "" "При подключении к серверу убедитесь, что отпечаток, показанный клиентом SSH, " "совпадает с одним из этих отпечатков." -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "Алгоритм" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 msgid "Fingerprint" msgstr "Отпечаток" @@ -6538,27 +6539,27 @@ msgstr "Поделиться" msgid "Other directory (specify below)" msgstr "Другой каталог (укажите ниже)" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 msgid "The following storage devices are in use:" msgstr "Используются следующие устройства хранения:" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "Метка" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "Точка монтирования" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 msgid "Used" msgstr "Используется" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "Расширение Раздела" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -6570,13 +6571,13 @@ msgstr "" "пространства. Это даст вам дополнительное свободное место для хранения ваших " "файлов." -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "Расширить корневой раздел" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -6711,25 +6712,25 @@ msgstr "" msgid "Local introducer" msgstr "Локальный посредник" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 msgid "Pet Name" msgstr "Имя питомца" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "Добавить нового посредника" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 msgid "Add" msgstr "Добавить" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "Подключенные посредники" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "Удалить" @@ -6898,19 +6899,19 @@ msgstr "Orbot: Прокси с Tor" msgid "Tor configuration is being updated" msgstr "В настоящее время обновляется конфигурация Tor" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 msgid "Onion Service" msgstr "Onion сервис" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 msgid "Ports" msgstr "Порты" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 msgid "Relay" msgstr "Ретранслятор" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, python-format msgid "" "If your %(box_name)s is behind a router or firewall, you should make sure " @@ -7010,7 +7011,7 @@ msgstr "" "короткое время становятся недоступными." #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 msgid "Update" @@ -7048,7 +7049,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "Активировать частые обновления функций (рекомендуется)" @@ -7074,13 +7075,13 @@ msgstr "" "Примечание: После активации частых обновлений функций их " "нельзя деактивировать." -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 #, fuzzy #| msgid "Updating..." msgid "Updating, please wait..." msgstr "Обновляется..." -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 #, fuzzy #| msgid "" @@ -7097,7 +7098,7 @@ msgstr "" "временно недоступен и показывать ошибку. В таком случае, чтобы продолжить, " "обновите страницу." -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, fuzzy, python-format #| msgid "%(box_name)s is up to date." msgid "" @@ -7125,27 +7126,27 @@ msgstr "" msgid "Dismiss" msgstr "Отклонить" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "Обновляется..." -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, python-format msgid "There is a new %(box_name)s version available." msgstr "Доступна новая версия %(box_name)s." -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 msgid "Your Freedombox needs an update!" msgstr "Ваш Freedombox нуждается в обновлении!" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" "Можно активировать частые обновления функций. Их рекомендуется активировать." -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." @@ -7153,7 +7154,7 @@ msgstr "" "Частые обновления функций не могут быть активированы. Они могут не " "понадобиться в вашем дистрибутиве." -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -7164,15 +7165,15 @@ msgstr "" "их нельзя деактивировать. Перед продолжением вы можете сделать снимок с " "помощью снимки хранилища." -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 msgid "Manual Update" msgstr "Ручное обновление" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 msgid "Update now" msgstr "Обновить сейчас" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 msgid "" "This may take a long time to complete. During an update, " "you cannot install apps. Also, this web interface may be temporarily " @@ -7183,7 +7184,7 @@ msgstr "" "временно недоступен и показывать ошибку. В таком случае, чтобы продолжить, " "обновите страницу." -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 msgid "Show recent update logs" msgstr "Показать журналы последних обновлений" @@ -7380,8 +7381,8 @@ msgstr "Сохранить пароль" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "Создать пользователя" @@ -7442,21 +7443,21 @@ msgstr "" "actions/users remove-user {username}'. Если учетная запись уже используется " "с %(box_name)s, пропустите этот шаг." -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "Пользователи" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "Удалить пользователя %(username)s" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "Редактирование пользователя %(username)s" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "Удалить пользователя %(username)s" + #: plinth/modules/users/templates/users_update.html:11 #, python-format msgid "Edit User %(username)s" @@ -7538,8 +7539,8 @@ msgstr "Недействительный ключ." #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 msgid "Public Key" msgstr "Открытый ключ" @@ -7640,7 +7641,7 @@ msgid "Allowed IPs" msgstr "Разрешенные IP-адреса" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 msgid "Last Connected Time" msgstr "Время последнего подключения" @@ -7650,47 +7651,47 @@ msgid "No peers configured to connect to this %(box_name)s yet." msgstr "" "Нет одноранговых узлов, настроенных для подключения к этому %(box_name)s." -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, python-format msgid "Public key for this %(box_name)s:" msgstr "Открытый ключ для этого %(box_name)s:" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 msgid "Not configured yet." msgstr "Еще не настроен." -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 msgid "Add a new peer" msgstr "Добавление нового однорангового узла" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "Добавить разрешенный клиент" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 msgid "As a Client" msgstr "Как клиент" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "Серверы, к которым %(box_name)s будет подключаться:" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "Конечная точка" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 msgid "No connections to remote servers are configured yet." msgstr "Подключения к удаленным серверам пока не настроены." -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 msgid "Add a new server" msgstr "Добавить новый сервер" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "Добавить подключение к серверу" @@ -7724,40 +7725,40 @@ msgstr "" "%(box_name)s позволит этому клиенту подключиться к нему. Убедитесь, что " "клиент настроен со следующей информацией." -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "Открытый ключ клиента:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "IP-адрес для использования клиентом:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "Общий ключ:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 msgid "Server endpoints:" msgstr "Конечные точки сервера:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 msgid "Server public key:" msgstr "Открытый ключ сервера:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "Передаваемые данные:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "Полученные данные:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "Последнее рукопожатие:" @@ -7772,15 +7773,15 @@ msgstr "" "информацией. Убедитесь, что сервер настроен на разрешение открытого ключа и " "IP-адреса %(box_name)s." -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 msgid "Server endpoint:" msgstr "Конечная точка сервера:" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "Открытый ключ этой машины:" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "IP-адрес этой машины:" @@ -7925,49 +7926,53 @@ msgstr "Установка" msgid "Service %(service_name)s is not running." msgstr "Служба %(service_name)s не запущена." -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, python-format msgid "Core functionality and web interface for %(box_name)s" msgstr "Базовая функциональность и веб-интерфейс %(box_name)s" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" -msgstr "Отображение навигации" +#: plinth/templates/base.html:107 +msgid " Home" +msgstr " Домой" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "Домой" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +msgid " Apps" +msgstr " Приложения" + +#: plinth/templates/base.html:119 msgid "Apps" msgstr "Приложения" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +msgid " System" +msgstr " Система" + +#: plinth/templates/base.html:128 msgid "System" msgstr "Система" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "Изменить пароль" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -msgid "Restart" -msgstr "Перезапустить" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 msgid "Shut down" msgstr "Завершить работу" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "Выход" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 msgid "Select language" msgstr "Выберите язык" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "Войти" @@ -8031,7 +8036,7 @@ msgstr "Homebrew:" msgid "RPM:" msgstr "RPM:" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -8049,10 +8054,6 @@ msgstr "" "Включите приложения чтобы добавить ярлыки на " "эту страницу." -#: plinth/templates/index.html:46 -msgid "Configure »" -msgstr "Настроить »" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -8084,7 +8085,7 @@ msgstr "Домашняя страница" msgid "Source Code" msgstr "Исходный код" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "Пожертвовать" @@ -8123,6 +8124,10 @@ msgstr "" "В настоящее время следующие сетевые интерфейсы сконфигурированы как " "внутренние: %(interface_list)s" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 msgid "Notifications" msgstr "Уведомления" @@ -8163,15 +8168,15 @@ msgstr "" "портов на вашем маршрутизаторе. Вы должны перенаправить следующие порты для " "%(service_name)s:" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 msgid "Protocol" msgstr "Протокол" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "С Роутера/WAN портов" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, python-format msgid "To %(box_name)s Ports" msgstr "В %(box_name)s Порты" @@ -8226,6 +8231,24 @@ msgstr "%(percentage)s%% завершено" msgid "Gujarati" msgstr "Гуджарати" +#~ msgid "Show Ports" +#~ msgstr "Показать порты" + +#~ msgid "Learn more »" +#~ msgstr "Подробнее »" + +#~ msgid "Restart »" +#~ msgstr "Рестарт »" + +#~ msgid "Shut Down »" +#~ msgstr "Выключить »" + +#~ msgid "Toggle navigation" +#~ msgstr "Отображение навигации" + +#~ msgid "Configure »" +#~ msgstr "Настроить »" + #~ msgid "Show connection %(connection.name)s" #~ msgstr "Показать подключение %(connection.name)s" @@ -8908,15 +8931,6 @@ msgstr "Гуджарати" #~ "Снимки программного обеспечения старше будут удаляться. Это не " #~ "ограничивает количество создаваемых снимков программного обеспечения." -#~ msgid " Home" -#~ msgstr " Домой" - -#~ msgid " Apps" -#~ msgstr " Приложения" - -#~ msgid " System" -#~ msgstr " Система" - #~ msgid "Archive name" #~ msgstr "Имя архива" diff --git a/plinth/locale/sl/LC_MESSAGES/django.po b/plinth/locale/sl/LC_MESSAGES/django.po index e0bb4f8e1..7e1ff6f0a 100644 --- a/plinth/locale/sl/LC_MESSAGES/django.po +++ b/plinth/locale/sl/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: 2020-10-08 23:26+0000\n" "Last-Translator: Allan Nordhøy \n" "Language-Team: Slovenian diaspora.%(domain_name)s " msgstr "" +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1736,16 +1743,16 @@ msgid "About" msgstr "" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 msgid "Status" msgstr "" @@ -1875,7 +1882,7 @@ msgstr "" msgid "Port {name} ({details}) unavailable for external networks" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -1884,57 +1891,53 @@ msgid "" "system with systemd 'systemctl start firewalld'." msgstr "" -#: plinth/modules/firewall/templates/firewall.html:28 -msgid "Show Ports" -msgstr "" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " "disabled in the firewall." msgstr "" -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -1972,7 +1975,7 @@ msgid "" "modify it if necessary." msgstr "" -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "" @@ -2077,38 +2080,38 @@ msgstr "" msgid "Git" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 #, fuzzy #| msgid "Create new repository" msgid "Manage Repositories" msgstr "Ustvari novo skladišče" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 #, fuzzy #| msgid "Create new repository" msgid "Create repository" msgstr "Ustvari novo skladišče" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 msgid "No repositories available." msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 +#, python-format +msgid "Go to repository %(repo.name)s" +msgstr "" + +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 +msgid "Cloning…" +msgstr "" + +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 #, fuzzy, python-format #| msgid "Delete Archive %(name)s" msgid "Delete repository %(repo.name)s" msgstr "Brisanje arhiva %(name)s" -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 -msgid "Cloning…" -msgstr "" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 -#, python-format -msgid "Go to repository %(repo.name)s" -msgstr "" - #: plinth/modules/gitweb/templates/gitweb_delete.html:12 #, python-format msgid "Delete Git Repository %(name)s" @@ -2174,6 +2177,25 @@ msgid "Contribute" msgstr "" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, python-format +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:23 +#, python-format +msgid "" +"There is a new %(box_name)s version available." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, python-format +msgid "%(box_name)s is up to date." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:35 #, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2185,7 +2207,7 @@ msgid "" "your data stays with you." msgstr "" -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2195,7 +2217,7 @@ msgid "" "returning the Internet to its intended peer-to-peer architecture." msgstr "" -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2203,34 +2225,15 @@ msgid "" "package." msgstr "" -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the %(box_name)s Wiki." msgstr "" -#: plinth/modules/help/templates/help_about.html:60 -msgid "Learn more »" -msgstr "" - -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, python-format -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "" - -#: plinth/modules/help/templates/help_about.html:69 -#, python-format -msgid "" -"There is a new %(box_name)s version available." -msgstr "" - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, python-format -msgid "%(box_name)s is up to date." +#: plinth/modules/help/templates/help_about.html:78 +msgid "Learn more" msgstr "" #: plinth/modules/help/templates/help_base.html:21 @@ -2296,7 +2299,7 @@ msgid "Thank you!" msgstr "" #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 msgid "Help" msgstr "" @@ -2332,7 +2335,7 @@ msgid "" "channel using the IRC web interface." msgstr "" -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 msgid "Download as PDF" msgstr "" @@ -2510,16 +2513,16 @@ msgstr "" msgid "No wikis or blogs available." msgstr "" -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2611,8 +2614,8 @@ msgstr "" msgid "Chat Client" msgstr "" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "" @@ -2642,63 +2645,63 @@ msgstr "" msgid "Certificates" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 msgid "Domain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 msgid "Actions" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, python-format msgid "Valid, expires on %(expiry_date)s" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 msgid "Revoked" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, python-format msgid "Expired on %(expiry_date)s" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 msgid "Invalid test certificate" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 msgid "No certificate" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, python-format msgid "" "No domains have been configured. Configure " @@ -2775,12 +2778,6 @@ msgstr "" msgid "Element" msgstr "" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -2865,51 +2862,51 @@ msgstr "" msgid "Wiki" msgstr "" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 msgid "Administrator Password" msgstr "" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." msgstr "" -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 msgid "Server URL" msgstr "" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." msgstr "" -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 msgid "Enable public registrations" msgstr "" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." msgstr "" -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 msgid "Enable private mode" msgstr "" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 msgid "" "If enabled, access will be restricted. Only people who have accounts can " "read/write to the wiki. Public registrations will also be disabled." msgstr "" -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 msgid "Default Skin" msgstr "" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -2999,13 +2996,13 @@ msgstr "" msgid "When disabled, players cannot die or receive damage of any kind." msgstr "" -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "" @@ -3153,109 +3150,108 @@ msgstr "" msgid "Monkeysphere" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "Prekliči" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 msgid "Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 msgid "OpenPGP Fingerprint" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 msgid "Secure Shell" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 msgid "Other" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 msgid "-" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 msgid "Add Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 msgid "SSH Key Type" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 msgid "SSH Key Size" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 msgid "SSH Fingerprint" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 msgid "Available Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 msgid "Added Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 msgid "Download the key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 msgid "Send the key back to the keyservers" msgstr "" @@ -3345,7 +3341,7 @@ msgstr "" msgid "All web apps" msgstr "" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 #, fuzzy #| msgid "Service Discovery" msgid "Services" @@ -3434,8 +3430,8 @@ msgid "" msgstr "" #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "" @@ -3511,7 +3507,7 @@ msgid "-- select --" msgstr "" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 msgid "SSID" msgstr "" @@ -3520,7 +3516,7 @@ msgid "The visible name of the network." msgstr "" #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "" @@ -3549,7 +3545,7 @@ msgid "B/G (2.4 GHz)" msgstr "" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 msgid "Channel" msgstr "" @@ -3697,179 +3693,179 @@ msgid "" "to be reminded later. Some of the other configuration steps may fail.

" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 msgid "MAC address" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 msgid "Interface" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 msgid "please check cable" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 msgid "" "This interface should be connected to a local network/machine. If you " "connect this interface to a public network, services meant to be available " "only internally will become available externally. This is a security risk." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 msgid "" "This interface should receive your Internet connection. If you connect it to " "a local network/machine, many services meant to available only internally " "will not be available." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -3890,40 +3886,40 @@ msgstr "" msgid "Delete connection %(name)s permanently?" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 msgid "Spacing" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "" @@ -3951,19 +3947,19 @@ msgstr "" msgid "Add Connection" msgstr "" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "" @@ -3989,8 +3985,8 @@ msgstr "" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "" @@ -4074,7 +4070,7 @@ msgid "" "are no other devices on the network." msgstr "" -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -4526,93 +4522,93 @@ msgstr "" msgid "PageKite Domain" msgstr "" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 msgid "Server domain" msgstr "" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " "pagekite.net server." msgstr "" -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." msgstr "" -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 msgid "Deleted custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 msgid "This service is already available as a standard service." msgstr "" -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 msgid "Added custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 msgid "Custom Services" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 msgid "Add Custom Service" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "" @@ -4692,12 +4688,13 @@ msgid "" "finished before shutting down or restarting." msgstr "" -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +msgid "Restart" msgstr "" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" +msgid "Shut Down" msgstr "" #: plinth/modules/power/templates/power_restart.html:17 @@ -4983,21 +4980,21 @@ msgstr "" msgid "Dolphin" msgstr "" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 msgid "Shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 msgid "" "Note: Only specially created directories will be shared on selected disks, " "not the whole disk." msgstr "" -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 msgid "VFAT partitions are not supported" msgstr "" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the users module page." msgstr "" -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 msgid "Users who can currently access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 msgid "" "Users needing to re-enter their password on the password change page to " "access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 msgid "Unavailable Shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." msgstr "" -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 msgid "Share name" msgstr "" -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 #, fuzzy #| msgid "Encryption" msgid "Action" @@ -5143,25 +5140,25 @@ msgid "" "services." msgstr "" -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 msgid "Show security report" msgstr "" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "" -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5205,41 +5202,41 @@ msgid "" "running." msgstr "" -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 #, fuzzy #| msgid "Name" msgid "App Name" msgstr "Ime" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 msgid "Current Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 msgid "Past Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 msgid "Sandboxed" msgstr "" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 msgid "Sandbox Coverage" msgstr "" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 msgid "N/A" msgstr "" -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 msgid "Yes" msgstr "" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 msgid "No" msgstr "" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 msgid "Not running" msgstr "" @@ -5380,28 +5377,28 @@ msgstr "" msgid "Shares should be either public or shared with at least one group" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 msgid "Add share" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "" -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 msgid "Shared Over" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 msgid "With Groups" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "" @@ -5525,41 +5522,41 @@ msgstr "" msgid "Delete the following snapshots permanently?" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 msgid "Delete Snapshots" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 msgid "Create Snapshot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 msgid "will be used at next boot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "" @@ -5582,7 +5579,7 @@ msgid "" "the newly created snapshot." msgstr "" -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "" @@ -5674,11 +5671,11 @@ msgid "" "client matches one of these fingerprints." msgstr "" -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 msgid "Fingerprint" msgstr "" @@ -5853,27 +5850,27 @@ msgstr "" msgid "Other directory (specify below)" msgstr "" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 msgid "The following storage devices are in use:" msgstr "" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 msgid "Used" msgstr "" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -5881,13 +5878,13 @@ msgid "" "will provide you additional free space to store your files." msgstr "" -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -5994,25 +5991,25 @@ msgstr "" msgid "Local introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 msgid "Pet Name" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 msgid "Add" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "" @@ -6156,19 +6153,19 @@ msgstr "" msgid "Tor configuration is being updated" msgstr "" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 msgid "Onion Service" msgstr "" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 msgid "Ports" msgstr "" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 msgid "Relay" msgstr "" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, python-format msgid "" "If your %(box_name)s is behind a router or firewall, you should make sure " @@ -6257,7 +6254,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 msgid "Update" @@ -6292,7 +6289,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "" @@ -6312,11 +6309,11 @@ msgid "" "cannot be deactivated." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 msgid "Updating, please wait..." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 msgid "" "This may take a long time to complete. During an update, " @@ -6324,7 +6321,7 @@ msgid "" "case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, python-format msgid "" "\n" @@ -6349,34 +6346,34 @@ msgstr "" msgid "Dismiss" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, python-format msgid "There is a new %(box_name)s version available." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 #, fuzzy #| msgid "FreedomBox" msgid "Your Freedombox needs an update!" msgstr "FreedomBox" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -6384,22 +6381,22 @@ msgid "" "\"%(snapshot_url)s\">Storage Snapshots before continuing." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 msgid "Manual Update" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 msgid "Update now" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 msgid "" "This may take a long time to complete. During an update, " "you cannot install apps. Also, this web interface may be temporarily " "unavailable and show an error. In that case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 msgid "Show recent update logs" msgstr "" @@ -6576,8 +6573,8 @@ msgstr "" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "" @@ -6630,21 +6627,21 @@ msgid "" "step." msgstr "" -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "" + #: plinth/modules/users/templates/users_update.html:11 #, python-format msgid "Edit User %(username)s" @@ -6720,8 +6717,8 @@ msgstr "Neveljavno ime gostitelja" #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 msgid "Public Key" msgstr "" @@ -6808,7 +6805,7 @@ msgid "Allowed IPs" msgstr "" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 msgid "Last Connected Time" msgstr "" @@ -6817,47 +6814,47 @@ msgstr "" msgid "No peers configured to connect to this %(box_name)s yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, python-format msgid "Public key for this %(box_name)s:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 msgid "Not configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 msgid "Add a new peer" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 msgid "As a Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 #, fuzzy #| msgid "Connection refused" @@ -6897,42 +6894,42 @@ msgid "" "is configured with the following information." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 #, fuzzy #| msgid "Server Administration" msgid "Server endpoints:" msgstr "Skrbništvo strežnika" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 msgid "Server public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "" @@ -6944,17 +6941,17 @@ msgid "" "public key and IP address." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 #, fuzzy #| msgid "Server Administration" msgid "Server endpoint:" msgstr "Skrbništvo strežnika" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "" @@ -7106,49 +7103,53 @@ msgstr "" msgid "Service %(service_name)s is not running." msgstr "" -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, python-format msgid "Core functionality and web interface for %(box_name)s" msgstr "" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" +#: plinth/templates/base.html:107 +msgid " Home" msgstr "" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +msgid " Apps" +msgstr "" + +#: plinth/templates/base.html:119 msgid "Apps" msgstr "" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +msgid " System" +msgstr "" + +#: plinth/templates/base.html:128 msgid "System" msgstr "" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -msgid "Restart" -msgstr "" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 msgid "Shut down" msgstr "" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 msgid "Select language" msgstr "" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "" @@ -7212,7 +7213,7 @@ msgstr "" msgid "RPM:" msgstr "" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -7226,10 +7227,6 @@ msgid "" "this page." msgstr "" -#: plinth/templates/index.html:46 -msgid "Configure »" -msgstr "" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -7254,7 +7251,7 @@ msgstr "" msgid "Source Code" msgstr "" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "" @@ -7288,6 +7285,10 @@ msgid "" "%(interface_list)s" msgstr "" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 msgid "Notifications" msgstr "" @@ -7319,15 +7320,15 @@ msgid "" "your router. You should forward the following ports for %(service_name)s:" msgstr "" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 msgid "Protocol" msgstr "" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, python-format msgid "To %(box_name)s Ports" msgstr "" diff --git a/plinth/locale/sr/LC_MESSAGES/django.po b/plinth/locale/sr/LC_MESSAGES/django.po index c8882123d..f312f8d62 100644 --- a/plinth/locale/sr/LC_MESSAGES/django.po +++ b/plinth/locale/sr/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: 2020-04-13 05:34+0000\n" "Last-Translator: vihor \n" "Language-Team: Serbian diaspora.%(domain_name)s " msgstr "" +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1661,16 +1668,16 @@ msgid "About" msgstr "" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 msgid "Status" msgstr "" @@ -1800,7 +1807,7 @@ msgstr "" msgid "Port {name} ({details}) unavailable for external networks" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -1809,57 +1816,53 @@ msgid "" "system with systemd 'systemctl start firewalld'." msgstr "" -#: plinth/modules/firewall/templates/firewall.html:28 -msgid "Show Ports" -msgstr "" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " "disabled in the firewall." msgstr "" -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -1897,7 +1900,7 @@ msgid "" "modify it if necessary." msgstr "" -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "" @@ -1990,31 +1993,31 @@ msgstr "" msgid "Git" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 msgid "Manage Repositories" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 msgid "Create repository" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 msgid "No repositories available." msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 #, python-format -msgid "Delete repository %(repo.name)s" +msgid "Go to repository %(repo.name)s" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 msgid "Cloning…" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 #, python-format -msgid "Go to repository %(repo.name)s" +msgid "Delete repository %(repo.name)s" msgstr "" #: plinth/modules/gitweb/templates/gitweb_delete.html:12 @@ -2074,6 +2077,25 @@ msgid "Contribute" msgstr "" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, python-format +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:23 +#, python-format +msgid "" +"There is a new %(box_name)s version available." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, python-format +msgid "%(box_name)s is up to date." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:35 #, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2085,7 +2107,7 @@ msgid "" "your data stays with you." msgstr "" -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2095,7 +2117,7 @@ msgid "" "returning the Internet to its intended peer-to-peer architecture." msgstr "" -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2103,34 +2125,15 @@ msgid "" "package." msgstr "" -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the %(box_name)s Wiki." msgstr "" -#: plinth/modules/help/templates/help_about.html:60 -msgid "Learn more »" -msgstr "" - -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, python-format -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "" - -#: plinth/modules/help/templates/help_about.html:69 -#, python-format -msgid "" -"There is a new %(box_name)s version available." -msgstr "" - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, python-format -msgid "%(box_name)s is up to date." +#: plinth/modules/help/templates/help_about.html:78 +msgid "Learn more" msgstr "" #: plinth/modules/help/templates/help_base.html:21 @@ -2196,7 +2199,7 @@ msgid "Thank you!" msgstr "" #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 msgid "Help" msgstr "" @@ -2232,7 +2235,7 @@ msgid "" "channel using the IRC web interface." msgstr "" -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 msgid "Download as PDF" msgstr "" @@ -2410,16 +2413,16 @@ msgstr "" msgid "No wikis or blogs available." msgstr "" -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2510,8 +2513,8 @@ msgstr "" msgid "Chat Client" msgstr "" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "" @@ -2541,63 +2544,63 @@ msgstr "" msgid "Certificates" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 msgid "Domain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 msgid "Actions" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, python-format msgid "Valid, expires on %(expiry_date)s" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 msgid "Revoked" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, python-format msgid "Expired on %(expiry_date)s" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 msgid "Invalid test certificate" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 msgid "No certificate" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, python-format msgid "" "No domains have been configured. Configure " @@ -2674,12 +2677,6 @@ msgstr "" msgid "Element" msgstr "" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -2764,53 +2761,53 @@ msgstr "" msgid "Wiki" msgstr "" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 msgid "Administrator Password" msgstr "" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." msgstr "" -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 #, fuzzy #| msgid "Web Server" msgid "Server URL" msgstr "Web Server" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." msgstr "" -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 msgid "Enable public registrations" msgstr "" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." msgstr "" -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 msgid "Enable private mode" msgstr "" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 msgid "" "If enabled, access will be restricted. Only people who have accounts can " "read/write to the wiki. Public registrations will also be disabled." msgstr "" -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 msgid "Default Skin" msgstr "" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -2898,13 +2895,13 @@ msgstr "" msgid "When disabled, players cannot die or receive damage of any kind." msgstr "" -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "" @@ -3052,109 +3049,108 @@ msgstr "" msgid "Monkeysphere" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 msgid "Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 msgid "OpenPGP Fingerprint" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 msgid "Secure Shell" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 msgid "Other" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 msgid "-" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 msgid "Add Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 msgid "SSH Key Type" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 msgid "SSH Key Size" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 msgid "SSH Fingerprint" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 msgid "Available Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 msgid "Added Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 msgid "Download the key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 msgid "Send the key back to the keyservers" msgstr "" @@ -3242,7 +3238,7 @@ msgstr "" msgid "All web apps" msgstr "" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 #, fuzzy #| msgid "Serving" msgid "Services" @@ -3331,8 +3327,8 @@ msgid "" msgstr "" #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "" @@ -3408,7 +3404,7 @@ msgid "-- select --" msgstr "" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 msgid "SSID" msgstr "" @@ -3417,7 +3413,7 @@ msgid "The visible name of the network." msgstr "" #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "" @@ -3446,7 +3442,7 @@ msgid "B/G (2.4 GHz)" msgstr "" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 msgid "Channel" msgstr "" @@ -3594,179 +3590,179 @@ msgid "" "to be reminded later. Some of the other configuration steps may fail.

" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 msgid "MAC address" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 msgid "Interface" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 msgid "please check cable" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 msgid "" "This interface should be connected to a local network/machine. If you " "connect this interface to a public network, services meant to be available " "only internally will become available externally. This is a security risk." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 msgid "" "This interface should receive your Internet connection. If you connect it to " "a local network/machine, many services meant to available only internally " "will not be available." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -3787,40 +3783,40 @@ msgstr "" msgid "Delete connection %(name)s permanently?" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 msgid "Spacing" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "" @@ -3846,19 +3842,19 @@ msgstr "" msgid "Add Connection" msgstr "" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "" @@ -3884,8 +3880,8 @@ msgstr "" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "" @@ -3969,7 +3965,7 @@ msgid "" "are no other devices on the network." msgstr "" -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -4417,93 +4413,93 @@ msgstr "" msgid "PageKite Domain" msgstr "" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 msgid "Server domain" msgstr "" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " "pagekite.net server." msgstr "" -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." msgstr "" -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 msgid "Deleted custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 msgid "This service is already available as a standard service." msgstr "" -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 msgid "Added custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 msgid "Custom Services" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 msgid "Add Custom Service" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "" @@ -4583,12 +4579,13 @@ msgid "" "finished before shutting down or restarting." msgstr "" -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +msgid "Restart" msgstr "" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" +msgid "Shut Down" msgstr "" #: plinth/modules/power/templates/power_restart.html:17 @@ -4876,21 +4873,21 @@ msgstr "" msgid "Dolphin" msgstr "" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 msgid "Shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 msgid "" "Note: Only specially created directories will be shared on selected disks, " "not the whole disk." msgstr "" -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 msgid "VFAT partitions are not supported" msgstr "" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the users module page." msgstr "" -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 msgid "Users who can currently access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 msgid "" "Users needing to re-enter their password on the password change page to " "access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 msgid "Unavailable Shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." msgstr "" -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 msgid "Share name" msgstr "" -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 msgid "Action" msgstr "" @@ -5032,25 +5029,25 @@ msgid "" "services." msgstr "" -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 msgid "Show security report" msgstr "" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "" -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5094,39 +5091,39 @@ msgid "" "running." msgstr "" -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 msgid "App Name" msgstr "" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 msgid "Current Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 msgid "Past Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 msgid "Sandboxed" msgstr "" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 msgid "Sandbox Coverage" msgstr "" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 msgid "N/A" msgstr "" -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 msgid "Yes" msgstr "" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 msgid "No" msgstr "" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 msgid "Not running" msgstr "" @@ -5267,28 +5264,28 @@ msgstr "" msgid "Shares should be either public or shared with at least one group" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 msgid "Add share" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "" -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 msgid "Shared Over" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 msgid "With Groups" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "" @@ -5412,41 +5409,41 @@ msgstr "" msgid "Delete the following snapshots permanently?" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 msgid "Delete Snapshots" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 msgid "Create Snapshot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 msgid "will be used at next boot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "" @@ -5469,7 +5466,7 @@ msgid "" "the newly created snapshot." msgstr "" -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "" @@ -5559,11 +5556,11 @@ msgid "" "client matches one of these fingerprints." msgstr "" -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 msgid "Fingerprint" msgstr "" @@ -5736,27 +5733,27 @@ msgstr "" msgid "Other directory (specify below)" msgstr "" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 msgid "The following storage devices are in use:" msgstr "" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 msgid "Used" msgstr "" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -5764,13 +5761,13 @@ msgid "" "will provide you additional free space to store your files." msgstr "" -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -5877,25 +5874,25 @@ msgstr "" msgid "Local introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 msgid "Pet Name" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 msgid "Add" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "" @@ -6039,19 +6036,19 @@ msgstr "" msgid "Tor configuration is being updated" msgstr "" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 msgid "Onion Service" msgstr "" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 msgid "Ports" msgstr "" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 msgid "Relay" msgstr "" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, python-format msgid "" "If your %(box_name)s is behind a router or firewall, you should make sure " @@ -6132,7 +6129,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 msgid "Update" @@ -6165,7 +6162,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "" @@ -6185,11 +6182,11 @@ msgid "" "cannot be deactivated." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 msgid "Updating, please wait..." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 msgid "" "This may take a long time to complete. During an update, " @@ -6197,7 +6194,7 @@ msgid "" "case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, python-format msgid "" "\n" @@ -6222,32 +6219,32 @@ msgstr "" msgid "Dismiss" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, python-format msgid "There is a new %(box_name)s version available." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 msgid "Your Freedombox needs an update!" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -6255,22 +6252,22 @@ msgid "" "\"%(snapshot_url)s\">Storage Snapshots before continuing." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 msgid "Manual Update" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 msgid "Update now" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 msgid "" "This may take a long time to complete. During an update, " "you cannot install apps. Also, this web interface may be temporarily " "unavailable and show an error. In that case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 msgid "Show recent update logs" msgstr "" @@ -6443,8 +6440,8 @@ msgstr "" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "" @@ -6497,21 +6494,21 @@ msgid "" "step." msgstr "" -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "" + #: plinth/modules/users/templates/users_update.html:11 #, python-format msgid "Edit User %(username)s" @@ -6585,8 +6582,8 @@ msgstr "" #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 msgid "Public Key" msgstr "" @@ -6671,7 +6668,7 @@ msgid "Allowed IPs" msgstr "" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 msgid "Last Connected Time" msgstr "" @@ -6680,47 +6677,47 @@ msgstr "" msgid "No peers configured to connect to this %(box_name)s yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, python-format msgid "Public key for this %(box_name)s:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 msgid "Not configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 msgid "Add a new peer" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 msgid "As a Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "" @@ -6752,40 +6749,40 @@ msgid "" "is configured with the following information." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 msgid "Server endpoints:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 msgid "Server public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "" @@ -6797,15 +6794,15 @@ msgid "" "public key and IP address." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 msgid "Server endpoint:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "" @@ -6941,49 +6938,53 @@ msgstr "" msgid "Service %(service_name)s is not running." msgstr "" -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, python-format msgid "Core functionality and web interface for %(box_name)s" msgstr "" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" +#: plinth/templates/base.html:107 +msgid " Home" msgstr "" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +msgid " Apps" +msgstr "" + +#: plinth/templates/base.html:119 msgid "Apps" msgstr "" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +msgid " System" +msgstr "" + +#: plinth/templates/base.html:128 msgid "System" msgstr "" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -msgid "Restart" -msgstr "" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 msgid "Shut down" msgstr "" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 msgid "Select language" msgstr "" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "" @@ -7047,7 +7048,7 @@ msgstr "" msgid "RPM:" msgstr "" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -7061,10 +7062,6 @@ msgid "" "this page." msgstr "" -#: plinth/templates/index.html:46 -msgid "Configure »" -msgstr "" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -7089,7 +7086,7 @@ msgstr "" msgid "Source Code" msgstr "" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "" @@ -7123,6 +7120,10 @@ msgid "" "%(interface_list)s" msgstr "" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 msgid "Notifications" msgstr "" @@ -7154,15 +7155,15 @@ msgid "" "your router. You should forward the following ports for %(service_name)s:" msgstr "" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 msgid "Protocol" msgstr "" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, python-format msgid "To %(box_name)s Ports" msgstr "" diff --git a/plinth/locale/sv/LC_MESSAGES/django.po b/plinth/locale/sv/LC_MESSAGES/django.po index 0bfaab08f..bdb93e02b 100644 --- a/plinth/locale/sv/LC_MESSAGES/django.po +++ b/plinth/locale/sv/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: 2020-12-24 17:29+0000\n" "Last-Translator: Michael Breidenbach \n" "Language-Team: Swedish " "diaspora.%(domain_name)s " +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "Konfiguration" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1776,16 +1783,16 @@ msgid "About" msgstr "Om" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 msgid "Status" msgstr "Status" @@ -1938,7 +1945,7 @@ msgstr "Port {name} ({details}) tillgängligt för externa nätverk" msgid "Port {name} ({details}) unavailable for external networks" msgstr "Port {name} ({details}) är inte tillgängligt för externa nätverk" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -1951,44 +1958,40 @@ msgstr "" "%(box_name)s) Du kan starta den med kommandot \"service firewalld start\", " "alternativt, vid ett system med systemd \"systemctl start firewalld\"." -#: plinth/modules/firewall/templates/firewall.html:28 -msgid "Show Ports" -msgstr "Visa Ports" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "Service/Port" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "Aktiverad" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "Inaktiverad" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "Tillåtna" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "Tillåtna (endast interna)" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "Tillåtna (endast externa)" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "Blockerade" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " @@ -1998,13 +2001,13 @@ msgstr "" "automatiskt i brandväggen och om du inaktiverar en tjänst, så inaktiveras " "den även automatiskt i brandväggen." -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "Avancerat" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -2049,7 +2052,7 @@ msgstr "" "Du kanske vill kontrollera nätverksinställningar och ändra den vid behov." -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "Starta installationsprogrammet" @@ -2152,33 +2155,33 @@ msgstr "Gitweb visar detta som en standardgren." msgid "Git" msgstr "Git" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 msgid "Manage Repositories" msgstr "Hantera respositories" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 msgid "Create repository" msgstr "Skapa respository" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 msgid "No repositories available." msgstr "Inga förvar finns tillgängliga." -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 -#, python-format -msgid "Delete repository %(repo.name)s" -msgstr "Ta bort respository %(repo.name)s" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 -msgid "Cloning…" -msgstr "Kloning…" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 #, python-format msgid "Go to repository %(repo.name)s" msgstr "Gå till respository %(repo.name)s" +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 +msgid "Cloning…" +msgstr "Kloning…" + +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 +#, python-format +msgid "Delete repository %(repo.name)s" +msgstr "Ta bort respository %(repo.name)s" + #: plinth/modules/gitweb/templates/gitweb_delete.html:12 #, python-format msgid "Delete Git Repository %(name)s" @@ -2236,6 +2239,27 @@ msgid "Contribute" msgstr "Bidrar" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, python-format +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "Du använder %(os_release)s och %(box_name)s version %(version)s." + +#: plinth/modules/help/templates/help_about.html:23 +#, python-format +msgid "" +"There is a new %(box_name)s version available." +msgstr "" +"Det finns en ny %(box_name)s version tillgänglig." + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, python-format +msgid "%(box_name)s is up to date." +msgstr "%(box_name)s är uppdaterad." + +#: plinth/modules/help/templates/help_about.html:35 #, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2254,7 +2278,7 @@ msgstr "" "proxy och en Tor-server, på en enhet som kan ersätta din Wi-Fi-router, så " "att din personliga data alltid stannar hos dig och under din kontroll." -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2271,7 +2295,7 @@ msgstr "" "användare, återställer vi Internet till sin avsedda icke-hierarkiska peer-to-" "peer-arkitektur." -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2282,7 +2306,7 @@ msgstr "" "distribuerade tjänster. %(box_name)s avser att samla dem alla tillsammans i " "ett enda praktiskt paket." -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the %(box_name)s wiki." -#: plinth/modules/help/templates/help_about.html:60 -msgid "Learn more »" -msgstr "Läs mer »" - -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, python-format -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "Du använder %(os_release)s och %(box_name)s version %(version)s." - -#: plinth/modules/help/templates/help_about.html:69 -#, python-format -msgid "" -"There is a new %(box_name)s version available." -msgstr "" -"Det finns en ny %(box_name)s version tillgänglig." - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, python-format -msgid "%(box_name)s is up to date." -msgstr "%(box_name)s är uppdaterad." +#: plinth/modules/help/templates/help_about.html:78 +#, fuzzy +#| msgid "Learn more..." +msgid "Learn more" +msgstr "Läs mer..." #: plinth/modules/help/templates/help_base.html:21 #: plinth/modules/help/templates/help_index.html:61 @@ -2399,7 +2404,7 @@ msgid "Thank you!" msgstr "Tack så mycket!" #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 msgid "Help" msgstr "Hjälp" @@ -2447,7 +2452,7 @@ msgstr "" "\"https://webchat.oftc.net/?randomnick=1&channels=freedombox&prompt=1\"> " "#freedombox kanal via webbchatten." -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 msgid "Download as PDF" msgstr "Ladda ner som PDF fil" @@ -2663,16 +2668,16 @@ msgstr "Skapa en Wiki eller Blogg" msgid "No wikis or blogs available." msgstr "Ingen wiki eller blogg tillgänglig." -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "Ta bort webbsida %(site)s" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "Gå till webbsidan %(site)s" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "Ta bort webbsida %(site)s" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2772,8 +2777,8 @@ msgstr "JSXC" msgid "Chat Client" msgstr "Chat klient" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "JavaScript-licensinformation" @@ -2812,63 +2817,63 @@ msgstr "Låt oss kryptera" msgid "Certificates" msgstr "Certifikaterna" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 msgid "Domain" msgstr "Domän" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "Certifikatets status" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "Säkerhet för webbsida" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 msgid "Actions" msgstr "Åtgärder" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, python-format msgid "Valid, expires on %(expiry_date)s" msgstr "Giltigt, löper ut %(expiry_date)s" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 msgid "Revoked" msgstr "Återkallats" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, python-format msgid "Expired on %(expiry_date)s" msgstr "Gick ut den %(expiry_date)s" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 msgid "Invalid test certificate" msgstr "Ogiltigt testcertifikat" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "Ogiltig %(reason)s" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 msgid "No certificate" msgstr "Inget certifikat" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "Återfå" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "Återkalla" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "Skaffa" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, python-format msgid "" "No domains have been configured. Configure " @@ -2962,12 +2967,6 @@ msgstr "" msgid "Element" msgstr "Element" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "Konfiguration" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -3081,11 +3080,11 @@ msgstr "MediaWiki" msgid "Wiki" msgstr "Wiki" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 msgid "Administrator Password" msgstr "Administratörs lösenord" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." @@ -3093,11 +3092,11 @@ msgstr "" "Ställ in ett nytt lösenord för MediaWikis administratörskonto (admin). Lämna " "det här fältet tomt för att behålla det aktuella lösenordet." -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 msgid "Server URL" msgstr "Server URL" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." @@ -3105,11 +3104,11 @@ msgstr "" "Används av MediaWiki för att generera webbadresser som pekar på wiki som i " "sidfot, flöden och e-postmeddelanden." -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 msgid "Enable public registrations" msgstr "Aktivera offentliga registreringar" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." @@ -3117,11 +3116,11 @@ msgstr "" "Om aktiverad, kommer alla på Internet att kunna skapa ett konto på din " "MediaWiki instans." -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 msgid "Enable private mode" msgstr "Aktivera privat läge" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 msgid "" "If enabled, access will be restricted. Only people who have accounts can " "read/write to the wiki. Public registrations will also be disabled." @@ -3130,11 +3129,11 @@ msgstr "" "läsa/skriva till wiki. Offentliga registreringar kommer också att " "inaktiveras." -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 msgid "Default Skin" msgstr "Standardskal" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -3233,13 +3232,13 @@ msgstr "Aktivera skador" msgid "When disabled, players cannot die or receive damage of any kind." msgstr "Om inaktiverat kan spelare inte dö eller få skador av något slag." -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "Adress" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "Port" @@ -3421,95 +3420,94 @@ msgstr "" msgid "Monkeysphere" msgstr "Monkeysphere" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "Publicerar nyckeln till nyckelserver..." -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "Avbryt" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "Tjänst" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 msgid "Domains" msgstr "Domäner" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 msgid "OpenPGP Fingerprint" msgstr "OpenGPG Fingeravtryck" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 msgid "Secure Shell" msgstr "Secure Shell" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 msgid "Other" msgstr "Andra" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "Visa Detaljer för nyckel %(fingerprint)s" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 msgid "-" msgstr "-" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "Importera nyckel" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "Publicera nyckel" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 msgid "Add Domains" msgstr "Lägg till domäner" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "OpenPGP användare-ID" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "Datum för nyckel import" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 msgid "SSH Key Type" msgstr "SSH-nyckeltyp" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 msgid "SSH Key Size" msgstr "SSH-nyckelstorlek" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 msgid "SSH Fingerprint" msgstr "SSH Fingeravtryck" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "Key fil" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 msgid "Available Domains" msgstr "Tillgängliga domäner" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 msgid "Added Domains" msgstr "Tillagda domäner" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" @@ -3517,15 +3515,15 @@ msgstr "" "När nyckeln har publicerats på nyckel servrarna kan den signeras med hjälp " "av GnuPG med följande kommandon:" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 msgid "Download the key" msgstr "Lada ner nyckeln" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "Signera nyckeln" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 msgid "Send the key back to the keyservers" msgstr "Skicka nyckeln till nyckelservrar" @@ -3625,7 +3623,7 @@ msgstr "Alla" msgid "All web apps" msgstr "Alla webbappar" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 msgid "Services" msgstr "Tjänster" @@ -3724,8 +3722,8 @@ msgstr "" "adressen användas." #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "Gateway" @@ -3813,7 +3811,7 @@ msgid "-- select --" msgstr "--Välj--" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 msgid "SSID" msgstr "SSID" @@ -3822,7 +3820,7 @@ msgid "The visible name of the network." msgstr "Synligt namn för nätverket." #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "Läge" @@ -3851,7 +3849,7 @@ msgid "B/G (2.4 GHz)" msgstr "B/G (2,4 GHz)" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 msgid "Channel" msgstr "Kanal" @@ -4058,158 +4056,158 @@ msgstr "" "för tillfället och vill bli påmind senare. Vissa andra konfigurationssteg " "kan misslyckas.

" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "Redigera anslutning" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "Redigera" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "Avaktivera" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "Aktivera" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "Ta bort anslutning" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "Anslutning" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "Primär anslutning" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "Ja" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "Enhet" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "Tillstånd" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "Anledning tillstånd" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 msgid "MAC address" msgstr "MAC-adress" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 msgid "Interface" msgstr "Gränssnitt" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "Beskrivning" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "Fysisk länk" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "Länktillstånd" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "kabeln är ansluten" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 msgid "please check cable" msgstr "vänligen kontrollera kabel" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "Hastighet" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "%(ethernet_speed)s Mbit/s" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "%(wireless_bitrate)s Mbit/s" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "Signalstyrka" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "IPv4" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "Metod" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "IP-adress" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "DNS-Server" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "Standard" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "IPv6" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "Den här anslutningen är inte aktiv." -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "Säkerhet" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "Brandväggs zon" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 msgid "" "This interface should be connected to a local network/machine. If you " "connect this interface to a public network, services meant to be available " @@ -4220,8 +4218,8 @@ msgstr "" "som är avsedda att vara tillgängliga endast internt att bli tillgängliga " "externt. Detta är en säkerhetsrisk." -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 msgid "" "This interface should receive your Internet connection. If you connect it to " "a local network/machine, many services meant to available only internally " @@ -4231,13 +4229,13 @@ msgstr "" "till ett lokalt nätverk/en maskin, kommer många tjänster som är avsedda att " "endast vara tillgängliga internt inte att vara tillgängliga." -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "Externa" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -4260,40 +4258,40 @@ msgstr "Ta Bort Anslutning" msgid "Delete connection %(name)s permanently?" msgstr "Ta bort anslutning %(name)s permanent?" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "Internet" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 msgid "Spacing" msgstr "Avstånd" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "Ethernet" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "Wi-Fi" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "Visa anslutning %(name)s" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "Interna" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "Dator" @@ -4319,19 +4317,19 @@ msgstr "Wi-Fi-nätverk i närheten" msgid "Add Connection" msgstr "Lägg till Anslutning" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "Ta bort anslutning %(name)s" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "Aktiva" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "Inaktiva" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "Ta bort anslutning %(name)s" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "Skaffa..." @@ -4359,8 +4357,8 @@ msgstr "Hoppa över det här steget" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "Nästa" @@ -4461,7 +4459,7 @@ msgstr "" "Din Internetanslutning är direkt kopplad till dina %(box_name)s och det " "finns inga andra enheter i nätverket." -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -4959,11 +4957,11 @@ msgstr "Offentlig Synlighet" msgid "PageKite Domain" msgstr "PageKite domän" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 msgid "Server domain" msgstr "Server-domän" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " "pagekite.net server." @@ -4971,31 +4969,31 @@ msgstr "" "Välj din pagekite-Server. Ange \"pagekite.net\" om du vill använda " "standardservern pagekite.net." -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "Server Port" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "Port på din pagekite Server (standard: 80)" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "Kite namn" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "Exempel: mybox.pagekite.me" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "Ogiltigt kite-namn" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "Kite hemlighet" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." @@ -5003,53 +5001,53 @@ msgstr "" "En hemlighet som är associerad med draken eller standard hemligheten för " "ditt konto om ingen hemlighet är inställd på draken." -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "Protokollet" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "extern port (frontend)" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "intern port (freedombox)" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "Aktivera underdomäner" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 msgid "Deleted custom service" msgstr "Borttagen anpassad tjänst" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 msgid "This service is already available as a standard service." msgstr "Denna tjänst är tillgänglig som standardtjänst." -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 msgid "Added custom service" msgstr "Lade till anpassad service" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "Den här tjänsten finns redan" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 msgid "Custom Services" msgstr "Anpassade tjänster" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 msgid "Add Custom Service" msgstr "Lägg till anpassad tjänst" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "ansluten till %(backend_host)s:%(backend_port)s" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "Ta bort den här tjänsten" @@ -5146,13 +5144,16 @@ msgstr "" "För närvarande körs en installation eller uppgradering. Överväg att vänta " "tills den är klar innan du stänger av eller startar om." -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" -msgstr "Starta om »" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +msgid "Restart" +msgstr "Starta om" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" -msgstr "Stäng av »" +#, fuzzy +#| msgid "Shut down" +msgid "Shut Down" +msgstr "Stänga ner" #: plinth/modules/power/templates/power_restart.html:17 msgid "" @@ -5510,22 +5511,22 @@ msgstr "GNOME Filer" msgid "Dolphin" msgstr "Dolphin" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 msgid "Shares" msgstr "Shares" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 msgid "" "Note: Only specially created directories will be shared on selected disks, " "not the whole disk." msgstr "" "Endast specialskapade kataloger delas på valda diskar, inte hela disken." -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 msgid "VFAT partitions are not supported" msgstr "VFAT-partitioner stöds inte" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the storage module och konfigurera åtkomsten till " "resurserna på sidan usersmodule." -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 msgid "Users who can currently access group and home shares" msgstr "Användare som för närvarande kan komma åt grupp-och hem resurser" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 msgid "" "Users needing to re-enter their password on the password change page to " "access group and home shares" @@ -5548,11 +5549,11 @@ msgstr "" "Användare behöver ange sitt lösenord en gång till på sidan för ändring av " "lösenord för att komma åt grupp- och hemresurser" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 msgid "Unavailable Shares" msgstr "Ej tillgängliga Shares" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." @@ -5560,11 +5561,11 @@ msgstr "" "Resurser som är konfigurerade men disken är inte tillgänglig. Om disken " "ansluts igen aktiveras delning automatiskt." -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 msgid "Share name" msgstr "Resursnamn" -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 msgid "Action" msgstr "Åtgärder" @@ -5682,25 +5683,25 @@ msgstr "" "inbrott försök till SSH-servern och andra aktiverade lösenordsskyddade " "Internet-tjänster." -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 msgid "Show security report" msgstr "Visa säkerhetsrapport" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "Frekventa funktionsuppdateringar" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "Frekventa funktionsuppdateringar är aktiverade." -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5760,39 +5761,39 @@ msgstr "" "\"Sandbox Coverage\" är en poäng av hur effektivt tjänsten isoleras från " "resten av systemet. Den visas bara när tjänsten körs." -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 msgid "App Name" msgstr "Appens namn" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 msgid "Current Vulnerabilities" msgstr "Aktuella sårbarheter" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 msgid "Past Vulnerabilities" msgstr "Tidigare sårbarheter" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 msgid "Sandboxed" msgstr "Sandboxed" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 msgid "Sandbox Coverage" msgstr "Sandbox Täckning" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 msgid "N/A" msgstr "N/A" -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 msgid "Yes" msgstr "Ja" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 msgid "No" msgstr "Nej" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 msgid "Not running" msgstr "Körs inte" @@ -5951,28 +5952,28 @@ msgstr "Det finns redan en share med det här namnet." msgid "Shares should be either public or shared with at least one group" msgstr "Shares ska antingen vara offentliga eller delas med minst en grupp" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 msgid "Add share" msgstr "Lägg till share" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "Inga shares har konfigurerats." -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "Disk Sök väg" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 msgid "Shared Over" msgstr "Delas över" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 msgid "With Groups" msgstr "Med grupper" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "Publik tillgång" @@ -6115,41 +6116,41 @@ msgstr "" msgid "Delete the following snapshots permanently?" msgstr "Vill du ta bort följande ögonblicksbilder permanent?" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "Nummer" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "Datum" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 msgid "Delete Snapshots" msgstr "Ta bort ögonblicksbilder" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 msgid "Create Snapshot" msgstr "Skapa ögonblicksbild" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "Återställning" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 msgid "will be used at next boot" msgstr "kommer att användas vid nästa uppstart" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "används" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "Återställning till ögonblicksbild #%(number)s" @@ -6178,7 +6179,7 @@ msgstr "" "skapas automatiskt. Du kommer att kunna ångra en återställning genom att " "återgå till den nyligen skapade ögonblicksbilden." -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "Återställning till ögonblicksbild #%(number)s" @@ -6275,11 +6276,11 @@ msgstr "" "När du ansluter till servern, se till att fingeravtryck som visas av SSH-" "klienten matchar en av dessa fingeravtryck." -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "Algoritm" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 msgid "Fingerprint" msgstr "Fingeravtryck" @@ -6459,27 +6460,27 @@ msgstr "Share" msgid "Other directory (specify below)" msgstr "Annan katalog (specificera nedan)" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 msgid "The following storage devices are in use:" msgstr "Följande lagringsenheter används:" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "Etikett" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "Monteringspunkt" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 msgid "Used" msgstr "Används" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "Partition expansion" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -6490,13 +6491,13 @@ msgstr "" "rotpartitionen. Rotpartitionen kan utökas för att använda det här " "utrymmet. Detta ger dig ytterligare ledigt utrymme för att lagra dina filer." -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "Utöka root-partitionen" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -6630,25 +6631,25 @@ msgstr "" msgid "Local introducer" msgstr "Lokal introducerare" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 msgid "Pet Name" msgstr "Namn på husdjur" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "Lägg till ny introduktören" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 msgid "Add" msgstr "Lägg till" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "Anslutna introducerare" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "Ta bort" @@ -6819,19 +6820,19 @@ msgstr "Orbot: proxy med Tor" msgid "Tor configuration is being updated" msgstr "Konfigurationen av Tor uppdateras" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 msgid "Onion Service" msgstr "Onion tjänst" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 msgid "Ports" msgstr "Portar" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 msgid "Relay" msgstr "Relay" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, python-format msgid "" "If your %(box_name)s is behind a router or firewall, you should make sure " @@ -6929,7 +6930,7 @@ msgstr "" "apps för att vara tillgängligt en kort stund." #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 msgid "Update" @@ -6965,7 +6966,7 @@ msgstr "" "distributionsutgåva när den är tillgänglig." #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "Aktivera frekventa uppdateringar (rekommenderas)" @@ -6989,11 +6990,11 @@ msgstr "" "Obs: När frekventa funktionsuppdateringar har aktiverats " "kan de inte avaktiveras." -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 msgid "Updating, please wait..." msgstr "Uppdaterar, vänta ..." -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 msgid "" "This may take a long time to complete. During an update, " @@ -7004,7 +7005,7 @@ msgstr "" "kan det här webbgränssnittet vara tillfälligt otillgängligt och ett fel " "visas. I så fall uppdaterar du sidan för att fortsätta." -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, python-format msgid "" "\n" @@ -7034,27 +7035,27 @@ msgstr "" msgid "Dismiss" msgstr "Avfärda" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "Uppdatera..." -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, python-format msgid "There is a new %(box_name)s version available." msgstr "Det finns en ny %(box_name)s version tillgänglig." -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 msgid "Your Freedombox needs an update!" msgstr "Din Freedombox behöver en uppdatering!" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" "Frekventa funktionsuppdateringar kan aktiveras. Aktivera dem rekommenderas." -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." @@ -7062,7 +7063,7 @@ msgstr "" "Frekventa funktionsuppdateringar kan inte aktiveras. De kanske inte är " "nödvändiga för din distribution." -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -7073,15 +7074,15 @@ msgstr "" "stängas av. Du kanske vill ta en snapshot med hjälp av Ögonblicksbilder av lagring innan du fortsätter." -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 msgid "Manual Update" msgstr "Manuell Uppdatering" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 msgid "Update now" msgstr "Uppdatera nu" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 msgid "" "This may take a long time to complete. During an update, " "you cannot install apps. Also, this web interface may be temporarily " @@ -7092,7 +7093,7 @@ msgstr "" "otillgängligt och visa ett fel. I så fall uppdaterar du sidan för att " "fortsätta." -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 msgid "Show recent update logs" msgstr "Visa senaste uppdatering av loggar" @@ -7283,8 +7284,8 @@ msgstr "Spara lösenord" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "Skapa användare" @@ -7345,21 +7346,21 @@ msgstr "" "{username}'. Om ett konto redan är användbart med %(box_name)s, hoppa över " "detta steg." -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "Användare" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "Ta bort användare %(username)s" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "Redigera användare %(username)s" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "Ta bort användare %(username)s" + #: plinth/modules/users/templates/users_update.html:11 #, python-format msgid "Edit User %(username)s" @@ -7440,8 +7441,8 @@ msgstr "Ogiltig nyckel." #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 msgid "Public Key" msgstr "Offentlig nyckel" @@ -7542,7 +7543,7 @@ msgid "Allowed IPs" msgstr "Tillåtna IPs" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 msgid "Last Connected Time" msgstr "Senast ansluten tid" @@ -7553,47 +7554,47 @@ msgstr "" "Inga peer-datorer har konfigurerats för att ansluta till dessa %(box_name)s " "ännu." -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, python-format msgid "Public key for this %(box_name)s:" msgstr "Offentlig nyckel för dessa %(box_name)s:" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 msgid "Not configured yet." msgstr "Inte konfigurerad än." -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 msgid "Add a new peer" msgstr "Lägga till en ny peer" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "Lägga till tillåten klient" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 msgid "As a Client" msgstr "Som klient" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "Servrar som %(box_name)s kommer att ansluta till:" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "Slutpunkt" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 msgid "No connections to remote servers are configured yet." msgstr "Inga anslutningar till fjärrservrar har konfigurerats ännu." -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 msgid "Add a new server" msgstr "Lägga till en ny server" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "Lägga till anslutning till server" @@ -7627,40 +7628,40 @@ msgstr "" "%(box_name)s gör det möjligt för den här klienten att ansluta till den. " "Kontrollera att klienten är konfigurerad med följande information." -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "Offentlig klientnyckel:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "IP-adress som ska användas för klienten:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "I förväg delad nyckel:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 msgid "Server endpoints:" msgstr "Serverändpunkter:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 msgid "Server public key:" msgstr "Serverns offentliga nyckel:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "Överförda uppgifter:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "Mottagna uppgifter:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "Senaste handskakningen:" @@ -7675,15 +7676,15 @@ msgstr "" "Kontrollera att servern är konfigurerad för att tillåta %(box_name)s " "offentliga nyckel- och IP-adress." -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 msgid "Server endpoint:" msgstr "Serverändpunkt:" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "Offentlig nyckel för denna maskin:" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "IP-adressen för denna maskin:" @@ -7827,49 +7828,59 @@ msgstr "Installation" msgid "Service %(service_name)s is not running." msgstr "Tjänsten %(service_name)s körs inte." -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, python-format msgid "Core functionality and web interface for %(box_name)s" msgstr "Kärnfunktioner och webbgränssnitt för %(box_name)s" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" -msgstr "Växla navigation" +#: plinth/templates/base.html:107 +#, fuzzy +#| msgid "Home" +msgid " Home" +msgstr "Hem" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "Hem" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +#, fuzzy +#| msgid "Apps" +msgid " Apps" +msgstr "Appar" + +#: plinth/templates/base.html:119 msgid "Apps" msgstr "Appar" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +#, fuzzy +#| msgid "System" +msgid " System" +msgstr "System" + +#: plinth/templates/base.html:128 msgid "System" msgstr "System" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "Ändra lösenord" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -msgid "Restart" -msgstr "Starta om" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 msgid "Shut down" msgstr "Stänga ner" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "Logga ut" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 msgid "Select language" msgstr "Välj språk" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "Logga in" @@ -7933,7 +7944,7 @@ msgstr "Homebrew:" msgid "RPM:" msgstr "Rpm:" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -7951,10 +7962,6 @@ msgstr "" "Aktivera vissa applicationer för att lägga till " "genvägar till den här sidan." -#: plinth/templates/index.html:46 -msgid "Configure »" -msgstr "Konfigurera »" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -7986,7 +7993,7 @@ msgstr "Hemsida" msgid "Source Code" msgstr "Källkod" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "Donera" @@ -8026,6 +8033,10 @@ msgstr "" "För närvarande konfigureras följande nätverksgränssnitt som interna: " "%(interface_list)s" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 msgid "Notifications" msgstr "Aviseringar" @@ -8066,15 +8077,15 @@ msgstr "" "forwarding på din router. Du bör vidarebefordra följande portar för " "%(service_name)s:" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 msgid "Protocol" msgstr "Protokoll" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "Från Router/WAN-portar" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, python-format msgid "To %(box_name)s Ports" msgstr "Till %(box_name)s Portar" @@ -8129,6 +8140,24 @@ msgstr "%(percentage)s %% färdigt" msgid "Gujarati" msgstr "Gujarati" +#~ msgid "Show Ports" +#~ msgstr "Visa Ports" + +#~ msgid "Learn more »" +#~ msgstr "Läs mer »" + +#~ msgid "Restart »" +#~ msgstr "Starta om »" + +#~ msgid "Shut Down »" +#~ msgstr "Stäng av »" + +#~ msgid "Toggle navigation" +#~ msgstr "Växla navigation" + +#~ msgid "Configure »" +#~ msgstr "Konfigurera »" + #~ msgid "Show connection %(connection.name)s" #~ msgstr "Visa anslutning %(connection.name)s" @@ -8662,11 +8691,6 @@ msgstr "Gujarati" #~ msgid "chrony client in contact with servers" #~ msgstr "NTP-klient i kontakt med servrar" -#, fuzzy -#~| msgid "Apps" -#~ msgid " Apps" -#~ msgstr "Appar" - #, fuzzy #~| msgid "Invalid server name" #~ msgid "Invalid archive name" diff --git a/plinth/locale/ta/LC_MESSAGES/django.po b/plinth/locale/ta/LC_MESSAGES/django.po index 0fd4206a0..71d5cce1e 100644 --- a/plinth/locale/ta/LC_MESSAGES/django.po +++ b/plinth/locale/ta/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -92,8 +92,8 @@ msgid "Apache HTTP Server" msgstr "" #: plinth/modules/apache/__init__.py:44 -#: plinth/modules/monkeysphere/templates/monkeysphere.html:67 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:45 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:49 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:46 msgid "Web Server" msgstr "" @@ -149,11 +149,11 @@ msgid "Repository" msgstr "" #: plinth/modules/backups/forms.py:52 -#: plinth/modules/backups/templates/backups_delete.html:18 +#: plinth/modules/backups/templates/backups_delete.html:17 #: plinth/modules/ikiwiki/forms.py:15 -#: plinth/modules/networks/templates/connection_show.html:63 -#: plinth/modules/samba/templates/samba.html:77 -#: plinth/modules/sharing/templates/sharing.html:37 +#: plinth/modules/networks/templates/connection_show.html:58 +#: plinth/modules/samba/templates/samba.html:66 +#: plinth/modules/sharing/templates/sharing.html:33 msgid "Name" msgstr "" @@ -317,40 +317,40 @@ msgstr "" msgid "{box_name} storage" msgstr "" -#: plinth/modules/backups/templates/backups.html:30 +#: plinth/modules/backups/templates/backups.html:17 #: plinth/modules/backups/views.py:61 msgid "Create a new backup" msgstr "" -#: plinth/modules/backups/templates/backups.html:34 +#: plinth/modules/backups/templates/backups.html:21 msgid "Create Backup" msgstr "" -#: plinth/modules/backups/templates/backups.html:37 +#: plinth/modules/backups/templates/backups.html:24 msgid "Upload and restore a backup archive" msgstr "" -#: plinth/modules/backups/templates/backups.html:41 +#: plinth/modules/backups/templates/backups.html:28 msgid "Upload and Restore" msgstr "" -#: plinth/modules/backups/templates/backups.html:44 +#: plinth/modules/backups/templates/backups.html:31 msgid "Add a backup location" msgstr "" -#: plinth/modules/backups/templates/backups.html:48 +#: plinth/modules/backups/templates/backups.html:35 msgid "Add Backup Location" msgstr "" -#: plinth/modules/backups/templates/backups.html:51 +#: plinth/modules/backups/templates/backups.html:38 msgid "Add a remote backup location" msgstr "" -#: plinth/modules/backups/templates/backups.html:55 +#: plinth/modules/backups/templates/backups.html:42 msgid "Add Remote Backup Location" msgstr "" -#: plinth/modules/backups/templates/backups.html:58 +#: plinth/modules/backups/templates/backups.html:46 msgid "Existing Backups" msgstr "" @@ -375,11 +375,11 @@ msgstr "" msgid "Delete this archive permanently?" msgstr "" -#: plinth/modules/backups/templates/backups_delete.html:19 +#: plinth/modules/backups/templates/backups_delete.html:18 msgid "Time" msgstr "" -#: plinth/modules/backups/templates/backups_delete.html:36 +#: plinth/modules/backups/templates/backups_delete.html:34 #, python-format msgid "Delete Archive %(name)s" msgstr "" @@ -721,13 +721,13 @@ msgid "List" msgstr "" #: plinth/modules/bepasty/views.py:53 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:91 -#: plinth/modules/networks/templates/connection_show.html:48 -#: plinth/modules/samba/templates/samba.html:163 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:86 +#: plinth/modules/networks/templates/connection_show.html:43 +#: plinth/modules/samba/templates/samba.html:154 #: plinth/modules/wireguard/templates/wireguard_delete_client.html:24 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:33 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:73 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:74 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:77 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:78 msgid "Delete" msgstr "" @@ -802,35 +802,35 @@ msgstr "" msgid "Serving Domains" msgstr "" -#: plinth/modules/bind/templates/bind.html:16 +#: plinth/modules/bind/templates/bind.html:17 #: plinth/modules/ikiwiki/forms.py:12 -#: plinth/modules/names/templates/names.html:14 -#: plinth/modules/networks/templates/connection_show.html:83 -#: plinth/modules/samba/templates/samba.html:76 -#: plinth/modules/storage/templates/storage.html:28 +#: plinth/modules/names/templates/names.html:15 +#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/samba/templates/samba.html:65 +#: plinth/modules/storage/templates/storage.html:26 msgid "Type" msgstr "" -#: plinth/modules/bind/templates/bind.html:17 +#: plinth/modules/bind/templates/bind.html:18 msgid "Domain Names" msgstr "" -#: plinth/modules/bind/templates/bind.html:18 +#: plinth/modules/bind/templates/bind.html:19 msgid "Serving" msgstr "" -#: plinth/modules/bind/templates/bind.html:19 +#: plinth/modules/bind/templates/bind.html:20 msgid "IP addresses" msgstr "" -#: plinth/modules/bind/templates/bind.html:35 #: plinth/modules/bind/templates/bind.html:37 +#: plinth/modules/bind/templates/bind.html:39 msgid "Refresh IP address and domains" msgstr "" #: plinth/modules/bind/views.py:71 plinth/modules/coturn/views.py:39 #: plinth/modules/deluge/views.py:42 plinth/modules/dynamicdns/views.py:154 -#: plinth/modules/mumble/views.py:28 plinth/modules/pagekite/forms.py:90 +#: plinth/modules/mumble/views.py:28 plinth/modules/pagekite/forms.py:76 #: plinth/modules/quassel/views.py:29 plinth/modules/shadowsocks/views.py:59 #: plinth/modules/transmission/views.py:47 msgid "Configuration updated" @@ -898,29 +898,29 @@ msgstr "" msgid "Delete %(name)s" msgstr "" -#: plinth/modules/calibre/templates/calibre.html:23 +#: plinth/modules/calibre/templates/calibre.html:11 msgid "Manage Libraries" msgstr "" -#: plinth/modules/calibre/templates/calibre.html:27 -#: plinth/modules/calibre/templates/calibre.html:29 +#: plinth/modules/calibre/templates/calibre.html:15 +#: plinth/modules/calibre/templates/calibre.html:17 msgid "Create Library" msgstr "" -#: plinth/modules/calibre/templates/calibre.html:36 +#: plinth/modules/calibre/templates/calibre.html:24 msgid "No libraries available." msgstr "" -#: plinth/modules/calibre/templates/calibre.html:43 -#, python-format -msgid "Delete library %(library)s" -msgstr "" - -#: plinth/modules/calibre/templates/calibre.html:49 +#: plinth/modules/calibre/templates/calibre.html:31 #, python-format msgid "Go to library %(library)s" msgstr "" +#: plinth/modules/calibre/templates/calibre.html:37 +#, python-format +msgid "Delete library %(library)s" +msgstr "" + #: plinth/modules/calibre/views.py:39 msgid "Library created." msgstr "" @@ -997,16 +997,17 @@ msgid "General Configuration" msgstr "" #: plinth/modules/config/__init__.py:59 plinth/modules/dynamicdns/views.py:29 -#: plinth/modules/names/templates/names.html:29 -#: plinth/modules/names/templates/names.html:43 +#: plinth/modules/names/templates/names.html:30 +#: plinth/modules/names/templates/names.html:44 #: plinth/modules/snapshot/views.py:37 #: plinth/modules/tahoe/templates/tahoe-pre-setup.html:24 +#: plinth/templates/index.html:46 msgid "Configure" msgstr "" #: plinth/modules/config/__init__.py:63 plinth/modules/config/forms.py:68 #: plinth/modules/dynamicdns/forms.py:97 -#: plinth/modules/names/templates/names.html:15 +#: plinth/modules/names/templates/names.html:16 msgid "Domain Name" msgstr "" @@ -1285,8 +1286,7 @@ msgid "Low Memory" msgstr "" #: plinth/modules/diagnostics/templates/diagnostics.html:17 -#: plinth/modules/diagnostics/templates/diagnostics_button.html:13 -#: plinth/modules/diagnostics/templates/diagnostics_button.html:16 +#: plinth/modules/diagnostics/templates/diagnostics_button.html:11 msgid "Run Diagnostics" msgstr "" @@ -1319,11 +1319,11 @@ msgstr "" msgid "This app does not support diagnostics" msgstr "" -#: plinth/modules/diagnostics/templates/diagnostics_results.html:10 +#: plinth/modules/diagnostics/templates/diagnostics_results.html:11 msgid "Test" msgstr "" -#: plinth/modules/diagnostics/templates/diagnostics_results.html:11 +#: plinth/modules/diagnostics/templates/diagnostics_results.html:12 msgid "Result" msgstr "" @@ -1370,6 +1370,13 @@ msgid "" "href=\"https://diaspora.%(domain_name)s\"> diaspora.%(domain_name)s " msgstr "" +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1592,16 +1599,16 @@ msgid "About" msgstr "" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 msgid "Status" msgstr "" @@ -1731,7 +1738,7 @@ msgstr "" msgid "Port {name} ({details}) unavailable for external networks" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -1740,57 +1747,53 @@ msgid "" "system with systemd 'systemctl start firewalld'." msgstr "" -#: plinth/modules/firewall/templates/firewall.html:28 -msgid "Show Ports" -msgstr "" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " "disabled in the firewall." msgstr "" -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -1828,7 +1831,7 @@ msgid "" "modify it if necessary." msgstr "" -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "" @@ -1921,31 +1924,31 @@ msgstr "" msgid "Git" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 msgid "Manage Repositories" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 msgid "Create repository" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 msgid "No repositories available." msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 #, python-format -msgid "Delete repository %(repo.name)s" +msgid "Go to repository %(repo.name)s" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 msgid "Cloning…" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 #, python-format -msgid "Go to repository %(repo.name)s" +msgid "Delete repository %(repo.name)s" msgstr "" #: plinth/modules/gitweb/templates/gitweb_delete.html:12 @@ -2005,6 +2008,25 @@ msgid "Contribute" msgstr "" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, python-format +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:23 +#, python-format +msgid "" +"There is a new %(box_name)s version available." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, python-format +msgid "%(box_name)s is up to date." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:35 #, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2016,7 +2038,7 @@ msgid "" "your data stays with you." msgstr "" -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2026,7 +2048,7 @@ msgid "" "returning the Internet to its intended peer-to-peer architecture." msgstr "" -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2034,34 +2056,15 @@ msgid "" "package." msgstr "" -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the %(box_name)s Wiki." msgstr "" -#: plinth/modules/help/templates/help_about.html:60 -msgid "Learn more »" -msgstr "" - -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, python-format -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "" - -#: plinth/modules/help/templates/help_about.html:69 -#, python-format -msgid "" -"There is a new %(box_name)s version available." -msgstr "" - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, python-format -msgid "%(box_name)s is up to date." +#: plinth/modules/help/templates/help_about.html:78 +msgid "Learn more" msgstr "" #: plinth/modules/help/templates/help_base.html:21 @@ -2127,7 +2130,7 @@ msgid "Thank you!" msgstr "" #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 msgid "Help" msgstr "" @@ -2163,7 +2166,7 @@ msgid "" "channel using the IRC web interface." msgstr "" -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 msgid "Download as PDF" msgstr "" @@ -2341,16 +2344,16 @@ msgstr "" msgid "No wikis or blogs available." msgstr "" -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2441,8 +2444,8 @@ msgstr "" msgid "Chat Client" msgstr "" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "" @@ -2472,63 +2475,63 @@ msgstr "" msgid "Certificates" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 msgid "Domain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 msgid "Actions" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, python-format msgid "Valid, expires on %(expiry_date)s" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 msgid "Revoked" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, python-format msgid "Expired on %(expiry_date)s" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 msgid "Invalid test certificate" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 msgid "No certificate" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, python-format msgid "" "No domains have been configured. Configure " @@ -2605,12 +2608,6 @@ msgstr "" msgid "Element" msgstr "" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -2695,51 +2692,51 @@ msgstr "" msgid "Wiki" msgstr "" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 msgid "Administrator Password" msgstr "" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." msgstr "" -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 msgid "Server URL" msgstr "" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." msgstr "" -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 msgid "Enable public registrations" msgstr "" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." msgstr "" -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 msgid "Enable private mode" msgstr "" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 msgid "" "If enabled, access will be restricted. Only people who have accounts can " "read/write to the wiki. Public registrations will also be disabled." msgstr "" -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 msgid "Default Skin" msgstr "" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -2827,13 +2824,13 @@ msgstr "" msgid "When disabled, players cannot die or receive damage of any kind." msgstr "" -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "" @@ -2981,109 +2978,108 @@ msgstr "" msgid "Monkeysphere" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 msgid "Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 msgid "OpenPGP Fingerprint" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 msgid "Secure Shell" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 msgid "Other" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 msgid "-" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 msgid "Add Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 msgid "SSH Key Type" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 msgid "SSH Key Size" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 msgid "SSH Fingerprint" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 msgid "Available Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 msgid "Added Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 msgid "Download the key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 msgid "Send the key back to the keyservers" msgstr "" @@ -3171,7 +3167,7 @@ msgstr "" msgid "All web apps" msgstr "" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 msgid "Services" msgstr "" @@ -3258,8 +3254,8 @@ msgid "" msgstr "" #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "" @@ -3335,7 +3331,7 @@ msgid "-- select --" msgstr "" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 msgid "SSID" msgstr "" @@ -3344,7 +3340,7 @@ msgid "The visible name of the network." msgstr "" #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "" @@ -3373,7 +3369,7 @@ msgid "B/G (2.4 GHz)" msgstr "" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 msgid "Channel" msgstr "" @@ -3521,179 +3517,179 @@ msgid "" "to be reminded later. Some of the other configuration steps may fail.

" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 msgid "MAC address" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 msgid "Interface" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 msgid "please check cable" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 msgid "" "This interface should be connected to a local network/machine. If you " "connect this interface to a public network, services meant to be available " "only internally will become available externally. This is a security risk." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 msgid "" "This interface should receive your Internet connection. If you connect it to " "a local network/machine, many services meant to available only internally " "will not be available." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -3714,40 +3710,40 @@ msgstr "" msgid "Delete connection %(name)s permanently?" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 msgid "Spacing" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "" @@ -3773,19 +3769,19 @@ msgstr "" msgid "Add Connection" msgstr "" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "" @@ -3811,8 +3807,8 @@ msgstr "" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "" @@ -3896,7 +3892,7 @@ msgid "" "are no other devices on the network." msgstr "" -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -4336,93 +4332,93 @@ msgstr "" msgid "PageKite Domain" msgstr "" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 msgid "Server domain" msgstr "" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " "pagekite.net server." msgstr "" -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." msgstr "" -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 msgid "Deleted custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 msgid "This service is already available as a standard service." msgstr "" -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 msgid "Added custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 msgid "Custom Services" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 msgid "Add Custom Service" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "" @@ -4502,12 +4498,13 @@ msgid "" "finished before shutting down or restarting." msgstr "" -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +msgid "Restart" msgstr "" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" +msgid "Shut Down" msgstr "" #: plinth/modules/power/templates/power_restart.html:17 @@ -4793,21 +4790,21 @@ msgstr "" msgid "Dolphin" msgstr "" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 msgid "Shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 msgid "" "Note: Only specially created directories will be shared on selected disks, " "not the whole disk." msgstr "" -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 msgid "VFAT partitions are not supported" msgstr "" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the users module page." msgstr "" -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 msgid "Users who can currently access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 msgid "" "Users needing to re-enter their password on the password change page to " "access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 msgid "Unavailable Shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." msgstr "" -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 msgid "Share name" msgstr "" -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 msgid "Action" msgstr "" @@ -4947,25 +4944,25 @@ msgid "" "services." msgstr "" -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 msgid "Show security report" msgstr "" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "" -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5009,39 +5006,39 @@ msgid "" "running." msgstr "" -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 msgid "App Name" msgstr "" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 msgid "Current Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 msgid "Past Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 msgid "Sandboxed" msgstr "" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 msgid "Sandbox Coverage" msgstr "" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 msgid "N/A" msgstr "" -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 msgid "Yes" msgstr "" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 msgid "No" msgstr "" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 msgid "Not running" msgstr "" @@ -5182,28 +5179,28 @@ msgstr "" msgid "Shares should be either public or shared with at least one group" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 msgid "Add share" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "" -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 msgid "Shared Over" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 msgid "With Groups" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "" @@ -5327,41 +5324,41 @@ msgstr "" msgid "Delete the following snapshots permanently?" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 msgid "Delete Snapshots" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 msgid "Create Snapshot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 msgid "will be used at next boot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "" @@ -5384,7 +5381,7 @@ msgid "" "the newly created snapshot." msgstr "" -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "" @@ -5472,11 +5469,11 @@ msgid "" "client matches one of these fingerprints." msgstr "" -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 msgid "Fingerprint" msgstr "" @@ -5649,27 +5646,27 @@ msgstr "" msgid "Other directory (specify below)" msgstr "" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 msgid "The following storage devices are in use:" msgstr "" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 msgid "Used" msgstr "" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -5677,13 +5674,13 @@ msgid "" "will provide you additional free space to store your files." msgstr "" -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -5790,25 +5787,25 @@ msgstr "" msgid "Local introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 msgid "Pet Name" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 msgid "Add" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "" @@ -5952,19 +5949,19 @@ msgstr "" msgid "Tor configuration is being updated" msgstr "" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 msgid "Onion Service" msgstr "" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 msgid "Ports" msgstr "" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 msgid "Relay" msgstr "" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, python-format msgid "" "If your %(box_name)s is behind a router or firewall, you should make sure " @@ -6045,7 +6042,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 msgid "Update" @@ -6078,7 +6075,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "" @@ -6098,11 +6095,11 @@ msgid "" "cannot be deactivated." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 msgid "Updating, please wait..." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 msgid "" "This may take a long time to complete. During an update, " @@ -6110,7 +6107,7 @@ msgid "" "case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, python-format msgid "" "\n" @@ -6135,32 +6132,32 @@ msgstr "" msgid "Dismiss" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, python-format msgid "There is a new %(box_name)s version available." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 msgid "Your Freedombox needs an update!" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -6168,22 +6165,22 @@ msgid "" "\"%(snapshot_url)s\">Storage Snapshots before continuing." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 msgid "Manual Update" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 msgid "Update now" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 msgid "" "This may take a long time to complete. During an update, " "you cannot install apps. Also, this web interface may be temporarily " "unavailable and show an error. In that case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 msgid "Show recent update logs" msgstr "" @@ -6356,8 +6353,8 @@ msgstr "" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "" @@ -6410,21 +6407,21 @@ msgid "" "step." msgstr "" -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "" + #: plinth/modules/users/templates/users_update.html:11 #, python-format msgid "Edit User %(username)s" @@ -6498,8 +6495,8 @@ msgstr "" #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 msgid "Public Key" msgstr "" @@ -6584,7 +6581,7 @@ msgid "Allowed IPs" msgstr "" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 msgid "Last Connected Time" msgstr "" @@ -6593,47 +6590,47 @@ msgstr "" msgid "No peers configured to connect to this %(box_name)s yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, python-format msgid "Public key for this %(box_name)s:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 msgid "Not configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 msgid "Add a new peer" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 msgid "As a Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "" @@ -6665,40 +6662,40 @@ msgid "" "is configured with the following information." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 msgid "Server endpoints:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 msgid "Server public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "" @@ -6710,15 +6707,15 @@ msgid "" "public key and IP address." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 msgid "Server endpoint:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "" @@ -6854,49 +6851,53 @@ msgstr "" msgid "Service %(service_name)s is not running." msgstr "" -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, python-format msgid "Core functionality and web interface for %(box_name)s" msgstr "" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" +#: plinth/templates/base.html:107 +msgid " Home" msgstr "" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +msgid " Apps" +msgstr "" + +#: plinth/templates/base.html:119 msgid "Apps" msgstr "" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +msgid " System" +msgstr "" + +#: plinth/templates/base.html:128 msgid "System" msgstr "" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -msgid "Restart" -msgstr "" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 msgid "Shut down" msgstr "" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 msgid "Select language" msgstr "" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "" @@ -6960,7 +6961,7 @@ msgstr "" msgid "RPM:" msgstr "" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -6974,10 +6975,6 @@ msgid "" "this page." msgstr "" -#: plinth/templates/index.html:46 -msgid "Configure »" -msgstr "" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -7002,7 +6999,7 @@ msgstr "" msgid "Source Code" msgstr "" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "" @@ -7036,6 +7033,10 @@ msgid "" "%(interface_list)s" msgstr "" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 msgid "Notifications" msgstr "" @@ -7067,15 +7068,15 @@ msgid "" "your router. You should forward the following ports for %(service_name)s:" msgstr "" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 msgid "Protocol" msgstr "" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, python-format msgid "To %(box_name)s Ports" msgstr "" diff --git a/plinth/locale/te/LC_MESSAGES/django.po b/plinth/locale/te/LC_MESSAGES/django.po index c1bd10dfe..73abb1c09 100644 --- a/plinth/locale/te/LC_MESSAGES/django.po +++ b/plinth/locale/te/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FreedomBox UI\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: 2020-10-26 13:27+0000\n" "Last-Translator: Praveen Illa \n" "Language-Team: Telugu %(name)s అనుసంధానం శాశ్వతంగా తొలగించు ?" -#: plinth/modules/backups/templates/backups_delete.html:19 +#: plinth/modules/backups/templates/backups_delete.html:18 msgid "Time" msgstr "సమయం" -#: plinth/modules/backups/templates/backups_delete.html:36 +#: plinth/modules/backups/templates/backups_delete.html:34 #, fuzzy, python-format #| msgid "Delete %(name)s" msgid "Delete Archive %(name)s" @@ -788,13 +788,13 @@ msgid "List" msgstr "" #: plinth/modules/bepasty/views.py:53 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:91 -#: plinth/modules/networks/templates/connection_show.html:48 -#: plinth/modules/samba/templates/samba.html:163 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:86 +#: plinth/modules/networks/templates/connection_show.html:43 +#: plinth/modules/samba/templates/samba.html:154 #: plinth/modules/wireguard/templates/wireguard_delete_client.html:24 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:33 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:73 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:74 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:77 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:78 msgid "Delete" msgstr "తొలగించు" @@ -880,41 +880,41 @@ msgstr "డొమైన్ నేమ్ సిస్టం భద్రతా msgid "Serving Domains" msgstr "సర్వర్ డొమైన్" -#: plinth/modules/bind/templates/bind.html:16 +#: plinth/modules/bind/templates/bind.html:17 #: plinth/modules/ikiwiki/forms.py:12 -#: plinth/modules/names/templates/names.html:14 -#: plinth/modules/networks/templates/connection_show.html:83 -#: plinth/modules/samba/templates/samba.html:76 -#: plinth/modules/storage/templates/storage.html:28 +#: plinth/modules/names/templates/names.html:15 +#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/samba/templates/samba.html:65 +#: plinth/modules/storage/templates/storage.html:26 msgid "Type" msgstr "రకం" -#: plinth/modules/bind/templates/bind.html:17 +#: plinth/modules/bind/templates/bind.html:18 #, fuzzy #| msgid "Domain Name" msgid "Domain Names" msgstr "డొమైను పేరు" -#: plinth/modules/bind/templates/bind.html:18 +#: plinth/modules/bind/templates/bind.html:19 #, fuzzy #| msgid "Service" msgid "Serving" msgstr "సేవ" -#: plinth/modules/bind/templates/bind.html:19 +#: plinth/modules/bind/templates/bind.html:20 #, fuzzy #| msgid "IP address" msgid "IP addresses" msgstr "IP చిరునామా" -#: plinth/modules/bind/templates/bind.html:35 #: plinth/modules/bind/templates/bind.html:37 +#: plinth/modules/bind/templates/bind.html:39 msgid "Refresh IP address and domains" msgstr "IP చిరునామా మరియు డొమైన్‌లను రిఫ్రెష్ చేయండి" #: plinth/modules/bind/views.py:71 plinth/modules/coturn/views.py:39 #: plinth/modules/deluge/views.py:42 plinth/modules/dynamicdns/views.py:154 -#: plinth/modules/mumble/views.py:28 plinth/modules/pagekite/forms.py:90 +#: plinth/modules/mumble/views.py:28 plinth/modules/pagekite/forms.py:76 #: plinth/modules/quassel/views.py:29 plinth/modules/shadowsocks/views.py:59 #: plinth/modules/transmission/views.py:47 msgid "Configuration updated" @@ -986,36 +986,36 @@ msgstr "" msgid "Delete %(name)s" msgstr "%(name)s తొలగించు" -#: plinth/modules/calibre/templates/calibre.html:23 +#: plinth/modules/calibre/templates/calibre.html:11 #, fuzzy #| msgid "Create User" msgid "Manage Libraries" msgstr "వినియోగదారుని సృష్టించు" -#: plinth/modules/calibre/templates/calibre.html:27 -#: plinth/modules/calibre/templates/calibre.html:29 +#: plinth/modules/calibre/templates/calibre.html:15 +#: plinth/modules/calibre/templates/calibre.html:17 #, fuzzy #| msgid "Create User" msgid "Create Library" msgstr "వినియోగదారుని సృష్టించు" -#: plinth/modules/calibre/templates/calibre.html:36 +#: plinth/modules/calibre/templates/calibre.html:24 #, fuzzy #| msgid "Tor relay port available" msgid "No libraries available." msgstr "టార్ రిలే పోర్ట్ అందుబాటులో ఉంది" -#: plinth/modules/calibre/templates/calibre.html:43 +#: plinth/modules/calibre/templates/calibre.html:31 +#, python-format +msgid "Go to library %(library)s" +msgstr "" + +#: plinth/modules/calibre/templates/calibre.html:37 #, fuzzy, python-format #| msgid "Delete site %(site)s" msgid "Delete library %(library)s" msgstr "ప్రదేశం తొలగించు %(site)s" -#: plinth/modules/calibre/templates/calibre.html:49 -#, python-format -msgid "Go to library %(library)s" -msgstr "" - #: plinth/modules/calibre/views.py:39 #, fuzzy #| msgid "Repository created." @@ -1111,16 +1111,17 @@ msgid "General Configuration" msgstr "సాధారణ ఆకృతీకరణ" #: plinth/modules/config/__init__.py:59 plinth/modules/dynamicdns/views.py:29 -#: plinth/modules/names/templates/names.html:29 -#: plinth/modules/names/templates/names.html:43 +#: plinth/modules/names/templates/names.html:30 +#: plinth/modules/names/templates/names.html:44 #: plinth/modules/snapshot/views.py:37 #: plinth/modules/tahoe/templates/tahoe-pre-setup.html:24 +#: plinth/templates/index.html:46 msgid "Configure" msgstr "ఆకృతీకరణ" #: plinth/modules/config/__init__.py:63 plinth/modules/config/forms.py:68 #: plinth/modules/dynamicdns/forms.py:97 -#: plinth/modules/names/templates/names.html:15 +#: plinth/modules/names/templates/names.html:16 msgid "Domain Name" msgstr "డొమైను పేరు" @@ -1436,8 +1437,7 @@ msgid "Low Memory" msgstr "" #: plinth/modules/diagnostics/templates/diagnostics.html:17 -#: plinth/modules/diagnostics/templates/diagnostics_button.html:13 -#: plinth/modules/diagnostics/templates/diagnostics_button.html:16 +#: plinth/modules/diagnostics/templates/diagnostics_button.html:11 msgid "Run Diagnostics" msgstr "లక్షణాలను నడుపు" @@ -1472,11 +1472,11 @@ msgstr "" msgid "This app does not support diagnostics" msgstr "ఈ మాడ్యూల్ విశ్లేషణకు సహకరించదు" -#: plinth/modules/diagnostics/templates/diagnostics_results.html:10 +#: plinth/modules/diagnostics/templates/diagnostics_results.html:11 msgid "Test" msgstr "పరీక్ష" -#: plinth/modules/diagnostics/templates/diagnostics_results.html:11 +#: plinth/modules/diagnostics/templates/diagnostics_results.html:12 msgid "Result" msgstr "ఫలితం" @@ -1530,6 +1530,13 @@ msgstr "" "మార్చబడితే, మునుపటి podname తో నమోదైన వినియోగదారుల యొక్క మొత్తం డేటా అందుబాటులో
మీరు డయాస్పోరా.%(domain_name)s లు లో డయాస్పోరా*" +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "ఆకృతీకరణ" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1792,16 +1799,16 @@ msgid "About" msgstr "గురించి" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 msgid "Status" msgstr "స్థితి" @@ -1955,7 +1962,7 @@ msgstr "సేవ ఆవిష్కరణ సేవికను నడుపట msgid "Port {name} ({details}) unavailable for external networks" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -1968,44 +1975,40 @@ msgstr "" "లేదా systemd systemctl ఒక వ్యవస్థ యొక్క సందర్భంలో ఉపయోగించి దీన్ని అమలు ఉండవచ్చు firewalld " "మొదలు." -#: plinth/modules/firewall/templates/firewall.html:28 -msgid "Show Ports" -msgstr "పోర్ట్స్ చూపించు" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "సేవ/పోర్ట్" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "క్రియాశీలం" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "నిలిపివేయబడింది" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "అనుమతించబడిన" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "అనుమతించబడిన (అంతర్గతంగా మాత్రమే)" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "అనుమతించబడిన(బాహ్యం మాత్రమే)" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "నిరోధించబడినవి" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " @@ -2014,13 +2017,13 @@ msgstr "" "ఫైర్వాల్ పనితీరు స్వయాంచలికమైనది. మీరు ఒక సేవను అనుమతిస్తే అది ఫైర్వాల్లోకి కూడా అనుమతిచబడుతుంది. అలాగే " "మీరు ఒక సేవను ఆనుమతించకపోతే ఫైర్వాల్లో కూడా అది అనుమతింపబడదు." -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -2059,7 +2062,7 @@ msgid "" msgstr "" "మీరు నెట్వర్క్ సెటప్ తనిఖీ చేసి, అవసరమైతే దాన్ని సవరించవచ్చు." -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "అమరికను ప్రారంభించు" @@ -2170,41 +2173,41 @@ msgstr "" msgid "Git" msgstr "గిట్" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 #, fuzzy #| msgid "Create User" msgid "Manage Repositories" msgstr "వినియోగదారుని సృష్టించు" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 #, fuzzy #| msgid "Create User" msgid "Create repository" msgstr "వినియోగదారుని సృష్టించు" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 #, fuzzy #| msgid "Tor relay port available" msgid "No repositories available." msgstr "టార్ రిలే పోర్ట్ అందుబాటులో ఉంది" -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 -#, fuzzy, python-format -#| msgid "Delete user %(username)s" -msgid "Delete repository %(repo.name)s" -msgstr "వినియోగదారి %(username)s ను తొలగించు" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 -msgid "Cloning…" -msgstr "" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 #, fuzzy, python-format #| msgid "Go to site %(site)s" msgid "Go to repository %(repo.name)s" msgstr "ప్రదేశం కు వెళ్ళండి %(site)s" +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 +msgid "Cloning…" +msgstr "" + +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 +#, fuzzy, python-format +#| msgid "Delete user %(username)s" +msgid "Delete repository %(repo.name)s" +msgstr "వినియోగదారి %(username)s ను తొలగించు" + #: plinth/modules/gitweb/templates/gitweb_delete.html:12 #, fuzzy, python-format #| msgid "Delete Wiki or Blog %(name)s" @@ -2271,6 +2274,27 @@ msgid "Contribute" msgstr "సహకరించండి" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, python-format +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "" +"మీరు %(os_release)s మరియు %(box_name)s రూపాంతరం %(version)s ను నడుపుతున్నారు." + +#: plinth/modules/help/templates/help_about.html:23 +#, fuzzy, python-format +#| msgid "There is a new %(box_name)s version available." +msgid "" +"There is a new %(box_name)s version available." +msgstr "%(box_name)s యొక్క కొత్త వెర్షన్ అందుబాటులో ఉంది." + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, python-format +msgid "%(box_name)s is up to date." +msgstr "%(box_name)s తాజాగా ఉంది." + +#: plinth/modules/help/templates/help_about.html:35 #, fuzzy, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2284,7 +2308,7 @@ msgstr "" "%(box_name)s వ్యక్తిగత మరియు స్వీయ సమాచార కార్యకలాపాలను నడుపుటకు రూపకల్పన చేయుటకు మరియు " "అభివృద్ది" -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2300,7 +2324,7 @@ msgstr "" "పైన , నెట్వొర్క్ పైన తిరిగి అధికారాలు ఇవ్వదం వలన మనము ఇంతెర్నెట్ ను సంబంధిత వయ్క్థి-వ్యక్థి అర్చితెచ్తురె " "కు ఇచిన వరిమి." -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2310,7 +2334,7 @@ msgstr "" "పంపిణీ సేవల భవిష్యత్తు గ్రహించడం కోసం పని చేస్తున్న ప్రాజెక్టులు చాలా ఉన్నాయి. వాటినన్నిటిని కలిపి ఒక " "సౌలభ్యమైన ప్యాకేజీలో అందివ్వతమే %(box_name)s ధ్యేయం." -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the %(box_name)s వికీ ను దర్శించండి." -#: plinth/modules/help/templates/help_about.html:60 -msgid "Learn more »" -msgstr "మరింత తెలుసుకోండి »" - -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, python-format -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "" -"మీరు %(os_release)s మరియు %(box_name)s రూపాంతరం %(version)s ను నడుపుతున్నారు." - -#: plinth/modules/help/templates/help_about.html:69 -#, fuzzy, python-format -#| msgid "There is a new %(box_name)s version available." -msgid "" -"There is a new %(box_name)s version available." -msgstr "%(box_name)s యొక్క కొత్త వెర్షన్ అందుబాటులో ఉంది." - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, python-format -msgid "%(box_name)s is up to date." -msgstr "%(box_name)s తాజాగా ఉంది." +#: plinth/modules/help/templates/help_about.html:78 +#, fuzzy +#| msgid "Learn more..." +msgid "Learn more" +msgstr "మరింత తెలుసుకోండి.." #: plinth/modules/help/templates/help_base.html:21 #: plinth/modules/help/templates/help_index.html:61 @@ -2419,7 +2424,7 @@ msgid "Thank you!" msgstr "ధన్యవాదాలు!" #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 msgid "Help" msgstr "సహాయం" @@ -2466,7 +2471,7 @@ msgstr "" "randomnick=1&channels=freedombox&prompt=1\"> #ఫ్రీడమ్ బాక్స్ చ్యానెల్ లో చేరి సహాయం " "కోరవచ్చు." -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 #, fuzzy #| msgid "downloading" msgid "Download as PDF" @@ -2679,16 +2684,16 @@ msgstr "వికీ లేదా బ్లాగును సృష్టిం msgid "No wikis or blogs available." msgstr "ఏ వికీలు లేదా బ్లాగులు అందుబాటులో లేవు." -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "ప్రదేశం తొలగించు %(site)s" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "ప్రదేశం కు వెళ్ళండి %(site)s" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "ప్రదేశం తొలగించు %(site)s" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2788,8 +2793,8 @@ msgstr "JSXC" msgid "Chat Client" msgstr "చాట్ క్లయింట్" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "జావాస్క్రిప్ట్ లైసెన్స్ సమాచరం" @@ -2828,63 +2833,63 @@ msgstr "లెట్స్ ఎన్క్రిప్ట్" msgid "Certificates" msgstr "యోగ్యతాపత్రాలు" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 msgid "Domain" msgstr "డొమైన్" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "యోగ్యతాపత్రం స్థితి" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "వెబ్‌సైటు భద్రత" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 msgid "Actions" msgstr "చర్యలు" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, python-format msgid "Valid, expires on %(expiry_date)s" msgstr "చెల్లుతుంది, %(expiry_date)s న చెల్లుబాటు కాలం ముగుస్తుంది" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 msgid "Revoked" msgstr "ఉపసంహరించుకొనబడింది" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, python-format msgid "Expired on %(expiry_date)s" msgstr "%(expiry_date)s న కాలం చెల్లినది" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 msgid "Invalid test certificate" msgstr "చెల్లని పరీక్ష దృవపత్రం" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "చెల్లనిది (%(reason)s)" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 msgid "No certificate" msgstr "ధృవీకరణ పత్రం లేదు" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "తిరిగి-పొందు" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "ఉపసంహరించుకొను" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "పొందు" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, fuzzy, python-format msgid "" "No domains have been configured. Configure " @@ -2972,12 +2977,6 @@ msgstr "" msgid "Element" msgstr "" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "ఆకృతీకరణ" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -3078,11 +3077,11 @@ msgstr "మీడియావికీ" msgid "Wiki" msgstr "వికీ" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 msgid "Administrator Password" msgstr "నిర్వాహకుని రహస్యపదం" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." @@ -3090,33 +3089,33 @@ msgstr "" "మీడియావికీ యొక్క అడ్మినిస్ట్రేటర్ ఖాతా కోసం ఒక కొత్త పాస్ వర్డ్ ను సెట్ చెయ్యండి (అడ్మిన్). ప్రస్తుత రహస్యపదం " "ఉంచడానికి ఈ ఫీల్డ్ను ఖాళీగా వదిలేయండి." -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 #, fuzzy #| msgid "Service" msgid "Server URL" msgstr "సేవ" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." msgstr "" -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 msgid "Enable public registrations" msgstr "పబ్లిక్ రిజిస్ట్రేషన్లను ప్రారంభించండి" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." msgstr "ఇది సశక్త పరిచినట్లయితే, అంతర్జాలంలో ఉన్న ఎవరైనా మీ మీడియావికీ ఉదాహరణ మీద ఖాతాను సృజించుకోగలరు." -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 msgid "Enable private mode" msgstr "ప్రైవేట్ మోడ్‌ను ప్రారంభించండి" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 #, fuzzy #| msgid "" #| "If enabled, Access will be restricted. Only people who have accounts can " @@ -3128,11 +3127,11 @@ msgstr "" "ఇది సశక్త పరిచినట్లయితే, ప్రవేశము నియంత్రించబడుతుంది. ఎవరికీ అయితే ఇప్పటికే ఖాతా ఉందో, వారే మీ వికీని " "చదవగలరు/మార్చగలరు. ప్రజా నమోదు కూడా ఆపివేయబడుతింది." -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 msgid "Default Skin" msgstr "డిఫాల్ట్ చర్మం" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -3239,13 +3238,13 @@ msgstr "PageKite ప్రారంభించు" msgid "When disabled, players cannot die or receive damage of any kind." msgstr "డిసేబుల్ లో ఉన్నప్పుడు, క్రీడాకారులు చనిపోయే లేదా ఏ రకమైన నష్టం అందుకోలేరు" -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "చిరునామా" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "పోర్టు" @@ -3419,95 +3418,94 @@ msgstr "" msgid "Monkeysphere" msgstr "మంకీస్ఫియర్" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "కీని కీసేవకానికి ప్రచురిస్తున్నాము..." -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "రద్దుచేయి" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "సేవ" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 msgid "Domains" msgstr "డొమైన్లు" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 msgid "OpenPGP Fingerprint" msgstr "ఓపెన్‌పిజిపి వేలిముద్ర" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 msgid "Secure Shell" msgstr "సెక్యూర్ షెల్" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 msgid "Other" msgstr "ఇతరాలు" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "%(fingerprint)s కీ వివరాలను చూపించు" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 msgid "-" msgstr "-" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "కీని దింపుకోండి" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "కీని ప్రచురించండి" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 msgid "Add Domains" msgstr "డొమైన్లను జతచేయి" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "ఓపెన్‌పిజిపి వాడుకరి ఐడీలు" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "కీ దిగుమతి తేదీ" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 msgid "SSH Key Type" msgstr "SSH కీ రకం" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 msgid "SSH Key Size" msgstr "SSH కీ పరిమాణం" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 msgid "SSH Fingerprint" msgstr "SSH వేలిముద్ర" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "కీ దస్త్రం" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 msgid "Available Domains" msgstr "అందుబాటులో ఉన్న డొమైన్లు" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 msgid "Added Domains" msgstr "జతచేసిన డొమైన్లు" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" @@ -3515,15 +3513,15 @@ msgstr "" "ఈ కియ్ తరువత కిసెర్వెర్స్ కి ప్రచరిన్చపదుతున్ది, ఈధి గుర్తిమ్ప పడిన ఆగ్న్ణ్పిపిన్చుకు GnuPG :" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 msgid "Download the key" msgstr "కీని దింపుకోండి" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "కీని సంతకం చేయండి" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 msgid "Send the key back to the keyservers" msgstr "కీని తిరిగి కీసేవకాలకు పంపు" @@ -3621,7 +3619,7 @@ msgstr "" msgid "All web apps" msgstr "" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 #, fuzzy #| msgid "Service" msgid "Services" @@ -3720,8 +3718,8 @@ msgid "" msgstr "ఐచ్ఛిక విలువ. ఖాళీగా ఉంటే, చిరునామాపై ఆధారపడి ఒక డిఫాల్ట్ నెట్మాస్క్ ఉపయోగించబడుతుంది." #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "గేట్వే" @@ -3815,7 +3813,7 @@ msgid "-- select --" msgstr "--ఎంచుకోండి--" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 msgid "SSID" msgstr "SSID" @@ -3824,7 +3822,7 @@ msgid "The visible name of the network." msgstr "నెట్వర్క్ యొక్క కనిపించే పేరు." #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "విధం" @@ -3854,7 +3852,7 @@ msgid "B/G (2.4 GHz)" msgstr "బి/జి(2.4GHz)" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 msgid "Channel" msgstr "మార్గం" @@ -4012,158 +4010,158 @@ msgid "" "to be reminded later. Some of the other configuration steps may fail.

" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "అనుసంధానాన్ని సవరించు" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "సవరించు" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "క్రియారహితం చేయి" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "క్రియాశీలించు" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "అనుసంధానం తొలగించండి" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "అనుసంధానం" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "ప్రాథమిక అనుసంధానం" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "అవును" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "పరికరం" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "స్థితి" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "స్థితి కారణాం" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 msgid "MAC address" msgstr "MAC చిరునామా" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 msgid "Interface" msgstr "అంతర్ముఖం" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "వివరణ" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "శారీరక జోడింపు" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "జోడింపు స్థితి" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "కేబుల్ అనుసంధానించబడిన" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 msgid "please check cable" msgstr "దయచేసి కేబుల్ తనిఖీ చెయ్యండి" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "వేగం" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "%(ethernet_speed)s Mbit/s" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "%(wireless_bitrate)s Mbit/s" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "సంకేత బలం" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "IPv4" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "పద్దతి" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "IP చిరునామా" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "సేవిక" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "అప్రమేయం" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "IPv6" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "ఈ అనుసంధానం చురుకుగాలేదు." -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "భద్రత" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "ఫైర్వాల్ క్షేత్రాం" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 #, fuzzy msgid "" "This interface should be connected to a local network/machine. If you " @@ -4173,8 +4171,8 @@ msgstr "" "ఈ ఇంటర్ఫేస్ ఒక స్థానిక నెట్వర్క్ / యంత్రానికి కనెక్ట్ చేయాలి. మీరు పబ్లిక్ నెట్వర్క్ ఈ ఇంటర్ఫేస్ కనెక్ట్ ఉంటే, " "సేవలు కేవలం అంతర్గతంగానే బాహ్యంగా అందుబాటులో అవుతుంది అందుబాటులో ఉండాలి అర్థం. ఈ ప్రమాదం ఉంది." -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 #, fuzzy msgid "" "This interface should receive your Internet connection. If you connect it to " @@ -4184,13 +4182,13 @@ msgstr "" "ఈ ఇంటర్ఫేస్ మీ ఇంటర్నెట్ కనెక్షన్ అందుకోవాలి. మీరు ఒక స్థానిక నెట్వర్క్ / యంత్రానికి దానిని కనెక్ట్ ఉంటే, " "కేవలం అంతర్గతంగానే అందుబాటులో అనేది అనేక సేవలు అందుబాటులో వుండదు." -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "బహిర్గత" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -4211,40 +4209,40 @@ msgstr "అనుసంధానం తొలగించు" msgid "Delete connection %(name)s permanently?" msgstr "%(name)s అనుసంధానం శాశ్వతంగా తొలగించు ?" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "ఇంటర్ నెట్" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 msgid "Spacing" msgstr "అంతరం" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "ఈథర్నెట్" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "Wi-Fi" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "అనుసంధానం చూపించు %(name)s" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "అంతర్గత" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "కంప్యూటర్" @@ -4272,19 +4270,19 @@ msgstr "సమీప వై-ఫై నెట్వర్కులు" msgid "Add Connection" msgstr "అనుసంధానాన్ని జతచేయండి" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "అనుసంధానం తొలగించు %(name)s" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "క్రియాశీల" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "క్రియారహిత" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "అనుసంధానం తొలగించు %(name)s" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "సృష్టించు..." @@ -4312,8 +4310,8 @@ msgstr "ఈ దశను దాటవేయి" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "తర్వాత" @@ -4401,7 +4399,7 @@ msgid "" "are no other devices on the network." msgstr "" -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -4935,12 +4933,12 @@ msgstr "పబ్లిక్ దృష్టి గోచరత (PageKite)" msgid "PageKite Domain" msgstr "PageKite ఖాతా" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 #, fuzzy msgid "Server domain" msgstr "సర్వర్ డొమైన్" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 #, fuzzy msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " @@ -4949,90 +4947,90 @@ msgstr "" "మీ pagekite సర్వర్ ఎంచుకోండి. డిఫాల్ట్ pagekite.net సర్వర్ ఉపయోగించడానికి \"pagekite.net\" " "సెట్." -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "సర్వర్ పోర్ట్" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "మీ పేజ్‌కైట్ సర్వర్ యొక్క పోర్ట్ (డిఫాల్ట్: 80)" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "కైట్ పేరు" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "ఉదాహరణ: mybox.pagekite.me" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "చెల్లని కైట్ పేరు" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "కైట్ రహస్యము" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 #, fuzzy msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." msgstr "గాలిపటం లేదా రహస్యం గాలిపటం సెట్ అయితే మీ ఖాతా కోసం డిఫాల్ట్ రహస్య అనుబంధించబడిన ఒక రహస్య." -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "ప్రోటోకాల్" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "బాహ్య (ఫ్రంటెండ్) పోర్ట్" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "అంతర్గత (ఫ్రీడమ్బాక్స్) పోర్ట్" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "సబ్డొమైన్లు క్రియాశీలీకరించు" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 #, fuzzy msgid "Deleted custom service" msgstr "తొలగించినవి కస్టమ్ సేవ" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 #, fuzzy msgid "This service is already available as a standard service." msgstr "" "ఈ సేవను ప్రమాణం సేవగా అందుబాటులో ఉంది. దయచేసి దాన్ని ఎనేబుల్ \"ప్రామాణిక సేవలు\" పేజీ ఉపయోగించడానికి." -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 #, fuzzy msgid "Added custom service" msgstr "కస్టమ్ సేవ చేర్చబడింది" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "ఈ సేవ ఇప్పటికే ఉంది" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 #, fuzzy msgid "Custom Services" msgstr "కస్టమ్ సేవలు" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 #, fuzzy msgid "Add Custom Service" msgstr "కస్టమ్ సేవలు" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "సంబంధం కలిగిఉన్నది %(backend_host)s:%(backend_port)s" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "ఈ సేవను తొలగించు" @@ -5121,13 +5119,16 @@ msgstr "" "ప్రస్తుతం సంస్థాపన లేదా నవీకరణ నడుస్తోంది. మూసివేయడానికి లేదా పునఃప్రారంభించడానికి ముందు ఇది పూర్తి " "అయ్యే వరకు వేచి ఉండండి." -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" -msgstr "» ని పునఃప్రారంభించండి;" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +msgid "Restart" +msgstr "పునఃప్రారంభించండి" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" -msgstr "» ని మూసివేయండి;" +#, fuzzy +#| msgid "Shut Down Now" +msgid "Shut Down" +msgstr "ఇపుడు మూసివేయండి" #: plinth/modules/power/templates/power_restart.html:17 msgid "" @@ -5455,13 +5456,13 @@ msgstr "కేలండర్" msgid "Dolphin" msgstr "" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 #, fuzzy #| msgid "Shared" msgid "Shares" msgstr "పంచుకోబడ్డ" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 msgid "" "Note: Only specially created directories will be shared on selected disks, " "not the whole disk." @@ -5469,11 +5470,11 @@ msgstr "" "గమనిక: ప్రత్యేకంగా సృష్టించిన డైరెక్టరీలు మాత్రమే ఎంచుకున్న డిస్కులలో భాగస్వామ్యం చేయబడతాయి, మొత్తం డిస్క్‌ " "కాదు." -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 msgid "VFAT partitions are not supported" msgstr "VFAT విభజనలకు మద్దతు లేదు" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the users module page." msgstr "" -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 msgid "Users who can currently access group and home shares" msgstr "ప్రస్తుతం గ్రూప్ మరియు హోమ్ షేర్లను యాక్సెస్ చేయగల వినియోగదారులు" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 msgid "" "Users needing to re-enter their password on the password change page to " "access group and home shares" @@ -5493,13 +5494,13 @@ msgstr "" "గ్రూపు మరియు హోమ్ షేర్లను యాక్సెస్ చేసుకోవడానికి పాస్వర్డ్ ఛేంజ్ పేజీపై తమ పాస్వర్డ్ ని తిరిగి నమోదు చేయాల్సిన " "అవసరం ఉన్న వినియోగదారులు" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 #, fuzzy #| msgid "Available Domains" msgid "Unavailable Shares" msgstr "అందుబాటులో ఉన్న డొమైన్లు" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." @@ -5507,13 +5508,13 @@ msgstr "" "కాన్ఫిగర్ చేయబడిన షేర్లు కానీ డిస్క్ అందుబాటులో లేదు. డిస్క్ తిరిగి ప్లగిన్ చేయబడితే, భాగస్వామ్యం స్వయంచాలకంగా " "ప్రారంభించబడుతుంది." -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 #, fuzzy #| msgid "Shared" msgid "Share name" msgstr "పంచుకోబడ్డ" -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 #, fuzzy #| msgid "Actions" msgid "Action" @@ -5646,27 +5647,27 @@ msgstr "" "ఈ ఎంపిక ఎనేబుల్ చేసినప్పుడు, ఫెయిల్2బ్యాన్ SSH సర్వర్కు మరియు ఇతర ప్రారంభించబడిన పాస్వర్డ్ను రక్షిత " "అంతర్జాల-సేవలకు బ్రూట్ ఫోర్స్ బ్రేక్-ఇన్ ప్రయత్నాలను పరిమితం చేస్తుంది." -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 #, fuzzy #| msgid "Security" msgid "Show security report" msgstr "భద్రత" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "" -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5712,49 +5713,49 @@ msgid "" "running." msgstr "" -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 #, fuzzy #| msgid "Name" msgid "App Name" msgstr "పేరు" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 msgid "Current Vulnerabilities" msgstr "ప్రస్తుత దుర్బలతలు" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 msgid "Past Vulnerabilities" msgstr "గత దుర్బలతలు" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 #, fuzzy #| msgid "Block Sandbox (Minetest)" msgid "Sandboxed" msgstr "స్యాండ్ బాక్స్ ను అడ్డగించు (మైన్ పరీక్ష)" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 #, fuzzy #| msgid "Block Sandbox (Minetest)" msgid "Sandbox Coverage" msgstr "స్యాండ్ బాక్స్ ను అడ్డగించు (మైన్ పరీక్ష)" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 msgid "N/A" msgstr "N/A" -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 #, fuzzy #| msgid "yes" msgid "Yes" msgstr "అవును" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 #, fuzzy #| msgid "None" msgid "No" msgstr "ఏమీ లేదు" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 #, fuzzy #| msgid "is not running" msgid "Not running" @@ -5918,32 +5919,32 @@ msgstr "ఈ సేవ ఇప్పటికే ఉంది" msgid "Shares should be either public or shared with at least one group" msgstr "షేర్లు పబ్లిక్ గా ఉండాలి లేదా కనీసం ఒక గ్రూపుతో పంచుకోవాలి" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 #, fuzzy #| msgid "Add Service" msgid "Add share" msgstr "సేవ జోడించండి" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "ప్రస్తుతం ఏ షేర్లు ఏర్పాటు చేయబడలేదు." -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "డిస్క్ మార్గం" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 #, fuzzy #| msgid "Shared" msgid "Shared Over" msgstr "పంచుకోబడ్డ" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 msgid "With Groups" msgstr "గుంపులతో" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "ప్రజా ప్రాప్తి" @@ -6094,41 +6095,41 @@ msgstr "ఒక సవంత్సరంలో స్నాప్షాట్స msgid "Delete the following snapshots permanently?" msgstr "క్రింది స్నాప్షాట్‌లను శాశ్వతంగా తొలగించు ?" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "సంఖ్య" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "తేదీ" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 msgid "Delete Snapshots" msgstr "స్నాప్షాట్‌లను తొలగించు" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 msgid "Create Snapshot" msgstr "స్నాప్షాట్‌ని సృష్టించు" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "యథాస్థితి" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 msgid "will be used at next boot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "స్నాప్షాట్కు రోల్బ్యాక్ చేయండి #%(number)s" @@ -6154,7 +6155,7 @@ msgstr "" "ఫైల్ సిస్టమ్ యొక్క ప్రస్తుత స్థితితో కొత్త స్నాప్షాట్ స్వయంచాలకంగా సృష్టించబడుతుంది. కొత్తగా సృష్టించిన " "స్నాప్షాట్కు తిరిగి మారడం ద్వారా మీరు ఒక పునరుద్ధరణను తీసివెయ్యగలరు." -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "స్నాప్షాట్ #%(number)s కు రోల్‌బ్యాక్ చేయండి" @@ -6254,11 +6255,11 @@ msgid "" "client matches one of these fingerprints." msgstr "" -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "అల్గారిథం" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 #, fuzzy #| msgid "SSH Fingerprint" msgid "Fingerprint" @@ -6449,29 +6450,29 @@ msgstr "పంచుకోబడ్డ" msgid "Other directory (specify below)" msgstr "ఇతర డైరెక్టరీ (దిగువన పేర్కొనండి)" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 #, fuzzy #| msgid "The following disks are in use:" msgid "The following storage devices are in use:" msgstr "క్రింది డిస్కులు ఉపయోగంలో ఉన్నాయి:" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "లేబుల్" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "ఆరొహించు కోన" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 msgid "Used" msgstr "ఉపయోగించబడినది" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "విభజన విస్తరణ" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -6482,13 +6483,13 @@ msgstr "" "రూట్ విభజనను మీరు విస్తరించుకోగలరు. మీ ఫైళ్లు భద్రపరుచుకునేందుకు అది మీకు అదనపు సామర్ధ్యాన్ని " "అందిస్తుంది." -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "రూట్ విభజనను విస్తరించు" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -6606,27 +6607,27 @@ msgstr "" msgid "Local introducer" msgstr "స్థానిక పరిచయకర్త" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 #, fuzzy #| msgid "Name" msgid "Pet Name" msgstr "పేరు" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "కొత్త పరిచయకర్తని జోడించండి" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 msgid "Add" msgstr "జోడించు" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "కలిసియున్న పరిచయకర్తలు" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "తొలగించు" @@ -6798,21 +6799,21 @@ msgstr "" msgid "Tor configuration is being updated" msgstr "టోర్ ఆకృతీకరణ నవీకరించబడుతుంది" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 #, fuzzy #| msgid "Hidden Service" msgid "Onion Service" msgstr "దాగిన సేవ" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 msgid "Ports" msgstr "పోర్ట్స్" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 msgid "Relay" msgstr "రిలే" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, python-format msgid "" "If your %(box_name)s is behind a router or firewall, you should make sure " @@ -6909,7 +6910,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 msgid "Update" @@ -6950,7 +6951,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "" @@ -6972,11 +6973,11 @@ msgid "" "cannot be deactivated." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 msgid "Updating, please wait..." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 msgid "" "This may take a long time to complete. During an update, " @@ -6984,7 +6985,7 @@ msgid "" "case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, fuzzy, python-format #| msgid "%(box_name)s is up to date." msgid "" @@ -7011,34 +7012,34 @@ msgstr "" msgid "Dismiss" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, python-format msgid "There is a new %(box_name)s version available." msgstr "%(box_name)s యొక్క కొత్త వెర్షన్ అందుబాటులో ఉంది." -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 #, fuzzy #| msgid "FreedomBox Manual" msgid "Your Freedombox needs an update!" msgstr "ఫ్రీడమ్ బాక్స్ నిర్దేశిక" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -7046,26 +7047,26 @@ msgid "" "\"%(snapshot_url)s\">Storage Snapshots before continuing." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 #, fuzzy #| msgid "Last update" msgid "Manual Update" msgstr "చివరి నవీకరణ" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 #, fuzzy #| msgid "Update" msgid "Update now" msgstr "నవీకరణ యూ.ఆర్.ఎల్" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 msgid "" "This may take a long time to complete. During an update, " "you cannot install apps. Also, this web interface may be temporarily " "unavailable and show an error. In that case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 msgid "Show recent update logs" msgstr "" @@ -7254,8 +7255,8 @@ msgstr "పాస్‌వర్డ్‌ను సేవ్ చేయి" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "వినియోగదారుని సృష్టించు" @@ -7314,21 +7315,21 @@ msgid "" "step." msgstr "" -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "వినియోగదారులు" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "వినియోగదారి %(username)s ను తొలగించు" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "%(username)s వినియోగదారుని మార్చు" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "వినియోగదారి %(username)s ను తొలగించు" + #: plinth/modules/users/templates/users_update.html:11 #, fuzzy, python-format #| msgid "Edit user %(username)s" @@ -7408,8 +7409,8 @@ msgstr "చెల్లని కైట్ పేరు" #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 #, fuzzy #| msgid "Publish Key" msgid "Public Key" @@ -7502,7 +7503,7 @@ msgid "Allowed IPs" msgstr "అనుమతించబడిన ఐపిలు" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 #, fuzzy #| msgid "Create Connection" msgid "Last Connected Time" @@ -7513,56 +7514,56 @@ msgstr "అనుసంధానం సృష్టించు" msgid "No peers configured to connect to this %(box_name)s yet." msgstr "ఈ %(box_name)s కు కనెక్ట్ చేయడానికి సహచరులు ఇంకా కాన్ఫిగర్ చేయబడలేదు." -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, fuzzy, python-format #| msgid "Public key of this machine:" msgid "Public key for this %(box_name)s:" msgstr "ఈ యంత్రం యొక్క పబ్లిక్ కీ:" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 #, fuzzy #| msgid "No shares currently configured." msgid "Not configured yet." msgstr "ప్రస్తుతం ఏ షేర్లు ఏర్పాటు చేయబడలేదు." -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 #, fuzzy #| msgid "Add new introducer" msgid "Add a new peer" msgstr "కొత్త పరిచయకర్తని జోడించండి" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "అనుమతించబడిన క్లయింట్‌ను జోడించండి" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 #, fuzzy #| msgid "Chat Client" msgid "As a Client" msgstr "చాట్ క్లయింట్" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "%(box_name)s కి కనెక్ట్ అయ్యే సర్వర్లు:" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "ఎండ్ పాయింట్" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 msgid "No connections to remote servers are configured yet." msgstr "రిమోట్ సర్వర్ లకు కనెక్షన్ లు ఇంకా కాన్ఫిగర్ చేయబడలేదు." -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 #, fuzzy #| msgid "Add new introducer" msgid "Add a new server" msgstr "కొత్త పరిచయకర్తని జోడించండి" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 #, fuzzy #| msgid "Add Connection" @@ -7601,42 +7602,42 @@ msgid "" "is configured with the following information." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "క్లయింట్ పబ్లిక్ కీ:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "క్లయింట్ కోసం ఉపయోగించాల్సిన IP చిరునామా:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "ముందే పంచుకున్న కీ:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 #, fuzzy msgid "Server endpoints:" msgstr "సర్వర్ డొమైన్" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 #, fuzzy msgid "Server public key:" msgstr "సర్వర్ పోర్ట్" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "డేటా బదిలీ:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "అందిన సమాచారం:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "తాజా హ్యాండ్‌షేక్:" @@ -7648,16 +7649,16 @@ msgid "" "public key and IP address." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 #, fuzzy msgid "Server endpoint:" msgstr "సర్వర్ డొమైన్" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "ఈ యంత్రం యొక్క పబ్లిక్ కీ:" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "ఈ యంత్రం యొక్క IP చిరునామా:" @@ -7819,53 +7820,63 @@ msgstr "నిక్షిప్తం" msgid "Service %(service_name)s is not running." msgstr "సేవ ఆవిష్కరణ సేవికను నడుపటంలేదు" -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, python-format msgid "Core functionality and web interface for %(box_name)s" msgstr "" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" -msgstr "" +#: plinth/templates/base.html:107 +#, fuzzy +#| msgid "Home" +msgid " Home" +msgstr "ముంగిలి" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "ముంగిలి" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +#, fuzzy +#| msgid "Apps" +msgid " Apps" +msgstr "అనువర్తనాలు" + +#: plinth/templates/base.html:119 msgid "Apps" msgstr "అనువర్తనాలు" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +#, fuzzy +#| msgid "System" +msgid " System" +msgstr "వ్యవస్థ" + +#: plinth/templates/base.html:128 msgid "System" msgstr "వ్యవస్థ" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "సంకేతపదాన్ని మార్చు" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -msgid "Restart" -msgstr "పునఃప్రారంభించండి" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 #, fuzzy #| msgid "Shut Down Now" msgid "Shut down" msgstr "ఇపుడు మూసివేయండి" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "నిష్క్రమించు" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 #, fuzzy #| msgid "Language" msgid "Select language" msgstr "భాష" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "లోనికి ప్రవేశించండి" @@ -7935,7 +7946,7 @@ msgstr "హోమ్ బ్రూ:" msgid "RPM:" msgstr "RPM:" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -7951,12 +7962,6 @@ msgid "" "this page." msgstr "" -#: plinth/templates/index.html:46 -#, fuzzy -#| msgid "Configure" -msgid "Configure »" -msgstr "ఆకృతీకరణ" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -7981,7 +7986,7 @@ msgstr "హోంపేజ్" msgid "Source Code" msgstr "మూలాధార కోడ్" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "దానం చేయు" @@ -8019,6 +8024,10 @@ msgid "" msgstr "" "ప్రస్తుతం దిగువ నెట్ వర్క్ ఇంటర్ ఫేస్ లు ఇంటర్నల్ గా కాన్ఫిగర్ చేయబడ్డాయి: %(interface_list)s" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 #, fuzzy #| msgid "No certificate" @@ -8063,17 +8072,17 @@ msgstr "" "మీ ఫ్రీడమ్‌బాక్స్ ఒక రౌటర్ వెనుక ఉంటే, మీరు మీ రౌటర్లో పోర్ట్ ఫార్వడింగ్ ను ఏర్పాటు చేయాల్సి ఉంటుంది. " "%(service_name)s కొరకు దిగువ పోర్టులను మీరు ఫార్వర్డ్ చేయాలి:" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 #, fuzzy #| msgid "protocol" msgid "Protocol" msgstr "ప్రోటోకాల్" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, fuzzy, python-format #| msgid "%(box_name)s Setup" msgid "To %(box_name)s Ports" @@ -8128,6 +8137,23 @@ msgstr "%(percentage)s %% పూర్తి" msgid "Gujarati" msgstr "గుజరాతీ" +#~ msgid "Show Ports" +#~ msgstr "పోర్ట్స్ చూపించు" + +#~ msgid "Learn more »" +#~ msgstr "మరింత తెలుసుకోండి »" + +#~ msgid "Restart »" +#~ msgstr "» ని పునఃప్రారంభించండి;" + +#~ msgid "Shut Down »" +#~ msgstr "» ని మూసివేయండి;" + +#, fuzzy +#~| msgid "Configure" +#~ msgid "Configure »" +#~ msgstr "ఆకృతీకరణ" + #~ msgid "Show connection %(connection.name)s" #~ msgstr "అనుసంధానం చూపించు %(connection.name)s" @@ -8867,21 +8893,6 @@ msgstr "గుజరాతీ" #~ msgid "Delete Software Snapshots older than (days)" #~ msgstr "ఇన్ని రోజుల కంటే పాతవి అయిన సాఫ్ట్వేర్ స్నాప్శోట్సును తొలగించుము" -#, fuzzy -#~| msgid "Home" -#~ msgid " Home" -#~ msgstr "ముంగిలి" - -#, fuzzy -#~| msgid "Apps" -#~ msgid " Apps" -#~ msgstr "అనువర్తనాలు" - -#, fuzzy -#~| msgid "System" -#~ msgid " System" -#~ msgstr "వ్యవస్థ" - #~ msgid "Archive name" #~ msgstr "ఆర్కైవ్ పేరు" diff --git a/plinth/locale/tr/LC_MESSAGES/django.po b/plinth/locale/tr/LC_MESSAGES/django.po index cbde70a30..bd6450f81 100644 --- a/plinth/locale/tr/LC_MESSAGES/django.po +++ b/plinth/locale/tr/LC_MESSAGES/django.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: 2020-12-18 05:29+0000\n" "Last-Translator: Burak Yavuz \n" "Language-Team: Turkish diaspora.%(domain_name)s adresinden erişebilirsiniz" +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "Yapılandırma" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1774,16 +1781,16 @@ msgid "About" msgstr "Hakkında" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 msgid "Status" msgstr "Durum" @@ -1940,7 +1947,7 @@ msgstr "Harici ağlar için {name} ({details}) bağlantı noktası kullanılabil msgid "Port {name} ({details}) unavailable for external networks" msgstr "Harici ağlar için {name} ({details}) bağlantı noktası kullanılamaz" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -1954,44 +1961,40 @@ msgstr "" "komutunu kullanarak veya systemd 'systemctl start firewalld' olan bir sistem " "durumunda çalıştırabilirsiniz." -#: plinth/modules/firewall/templates/firewall.html:28 -msgid "Show Ports" -msgstr "Bağlantı Noktalarını Göster" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "Hizmet/Bağlantı Noktası" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "Etkinleştirildi" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "Etkisizleştirildi" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "İzin Verildi" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "İzin Verildi (sadece dahili)" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "İzin Verildi (sadece harici)" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "Engellendi" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " @@ -2001,13 +2004,13 @@ msgstr "" "buna güvenlik duvarında da izin verilir ve bir hizmeti " "etkisizleştirdiğinizde, güvenlik duvarında da etkisizleştirilir." -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "Gelişmiş" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -2053,7 +2056,7 @@ msgstr "" "Ağ ayarlamasını gözden geçirmek ve " "gerekirse değiştirmek isteyebilirsiniz." -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "Kurulumu Başlat" @@ -2156,33 +2159,33 @@ msgstr "Gitweb bunu varsayılan dal olarak görüntüler." msgid "Git" msgstr "Git" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 msgid "Manage Repositories" msgstr "Depoları Yönet" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 msgid "Create repository" msgstr "Depo oluştur" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 msgid "No repositories available." msgstr "Kullanılabilir depolar yok." -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 -#, python-format -msgid "Delete repository %(repo.name)s" -msgstr "%(repo.name)s deposunu sil" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 -msgid "Cloning…" -msgstr "Çoğaltılıyor…" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 #, python-format msgid "Go to repository %(repo.name)s" msgstr "%(repo.name)s deposuna git" +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 +msgid "Cloning…" +msgstr "Çoğaltılıyor…" + +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 +#, python-format +msgid "Delete repository %(repo.name)s" +msgstr "%(repo.name)s deposunu sil" + #: plinth/modules/gitweb/templates/gitweb_delete.html:12 #, python-format msgid "Delete Git Repository %(name)s" @@ -2240,6 +2243,26 @@ msgid "Contribute" msgstr "Katkıda Bulun" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, python-format +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "%(os_release)s ve %(box_name)s %(version)s sürümünü çalıştırıyorsunuz." + +#: plinth/modules/help/templates/help_about.html:23 +#, python-format +msgid "" +"There is a new %(box_name)s version available." +msgstr "" +"Yeni bir mevcut %(box_name)s sürümü var." + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, python-format +msgid "%(box_name)s is up to date." +msgstr "%(box_name)s güncel." + +#: plinth/modules/help/templates/help_about.html:35 #, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2258,7 +2281,7 @@ msgstr "" "web sitesi, sosyal ağ, e-posta, web proksi ve Tor aktarımı gibi uygulamaları " "barından bir cihaz, böylece verileriniz hep yanınızda kalır." -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2274,7 +2297,7 @@ msgstr "" "elde ederiz. Kullanıcılara ağları ve makineleri üzerinden gücü geri vererek, " "Internet'i amaçlanan kişiden-kişiye mimarisine döndürüyoruz." -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2285,7 +2308,7 @@ msgstr "" "proje vardır; %(box_name)s hepsini uygun bir pakette bir araya getirmeyi " "amaçlamaktadır." -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the %(box_name)s Viki'ye bakın." -#: plinth/modules/help/templates/help_about.html:60 -msgid "Learn more »" -msgstr "Daha fazla bilgi edinin »" - -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, python-format -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "%(os_release)s ve %(box_name)s %(version)s sürümünü çalıştırıyorsunuz." - -#: plinth/modules/help/templates/help_about.html:69 -#, python-format -msgid "" -"There is a new %(box_name)s version available." -msgstr "" -"Yeni bir mevcut %(box_name)s sürümü var." - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, python-format -msgid "%(box_name)s is up to date." -msgstr "%(box_name)s güncel." +#: plinth/modules/help/templates/help_about.html:78 +#, fuzzy +#| msgid "Learn more..." +msgid "Learn more" +msgstr "Daha fazla bilgi edinin..." #: plinth/modules/help/templates/help_base.html:21 #: plinth/modules/help/templates/help_index.html:61 @@ -2401,7 +2406,7 @@ msgid "Thank you!" msgstr "Teşekkür ederiz!" #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 msgid "Help" msgstr "Yardım" @@ -2449,7 +2454,7 @@ msgstr "" "randomnick=1&channels=freedombox&prompt=1\">#freedombox kanalına katılın " "ve yardım isteyin." -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 msgid "Download as PDF" msgstr "PDF olarak indir" @@ -2666,16 +2671,16 @@ msgstr "Viki veya Blog Oluştur" msgid "No wikis or blogs available." msgstr "Mevcut viki'ler veya blog'lar yok." -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "%(site)s sitesini sil" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "%(site)s sitesine git" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "%(site)s sitesini sil" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2777,8 +2782,8 @@ msgstr "JSXC" msgid "Chat Client" msgstr "Sohbet İstemcisi" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "JavaScript lisans bilgileri" @@ -2818,63 +2823,63 @@ msgstr "Let's Encrypt" msgid "Certificates" msgstr "Sertifikalar" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 msgid "Domain" msgstr "Etki Alanı" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "Sertifika Durumu" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "Web Sitesi Güvenliği" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 msgid "Actions" msgstr "Eylemler" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, python-format msgid "Valid, expires on %(expiry_date)s" msgstr "Geçerli, %(expiry_date)s tarihinde sona eriyor" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 msgid "Revoked" msgstr "İptal edilmiş" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, python-format msgid "Expired on %(expiry_date)s" msgstr "%(expiry_date)s tarihinde süresi doldu" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 msgid "Invalid test certificate" msgstr "Geçersiz deneme sertifikası" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "Geçersiz (%(reason)s)" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 msgid "No certificate" msgstr "Sertifika yok" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "Yeniden edin" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "İptal et" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "Edin" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, python-format msgid "" "No domains have been configured. Configure " @@ -2968,12 +2973,6 @@ msgstr "" msgid "Element" msgstr "Element" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "Yapılandırma" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -3091,11 +3090,11 @@ msgstr "MediaWiki" msgid "Wiki" msgstr "Viki" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 msgid "Administrator Password" msgstr "Yönetici Parolası" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." @@ -3103,11 +3102,11 @@ msgstr "" "MediaWiki'nin yönetici hesabı (admin) için yeni bir parola ayarlayın. Şu " "anki parolayı korumak için bu alanı boş bırakın." -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 msgid "Server URL" msgstr "Sunucu URL'si" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." @@ -3115,11 +3114,11 @@ msgstr "" "MediaWiki tarafından, altbilgi, bildirimler ve e-postalar gibi viki'yi " "işaret eden URL'ler oluşturmak için kullanılır." -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 msgid "Enable public registrations" msgstr "Herkese açık kaydı etkinleştir" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." @@ -3127,11 +3126,11 @@ msgstr "" "Eğer etkinleştirildiyse, Internet'teki herkes MediaWiki örneğinizde bir " "hesap oluşturabilecektir." -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 msgid "Enable private mode" msgstr "Özel kipi etkinleştir" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 msgid "" "If enabled, access will be restricted. Only people who have accounts can " "read/write to the wiki. Public registrations will also be disabled." @@ -3140,11 +3139,11 @@ msgstr "" "viki'yi okuyabilir/yazabilir. Herkese açık kayıtlar da " "etkisizleştirilecektir." -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 msgid "Default Skin" msgstr "Varsayılan Kaplama" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -3245,13 +3244,13 @@ msgid "When disabled, players cannot die or receive damage of any kind." msgstr "" "Etkisizleştirildiğinde, oyuncular ölemez veya hiçbir şekilde hasar alamazlar." -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "Adres" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "Bağlantı noktası" @@ -3437,95 +3436,94 @@ msgstr "" msgid "Monkeysphere" msgstr "Monkeysphere" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "Anahtar, anahtar sunucusuna yayınlanıyor..." -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "İptal" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "Hizmet" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 msgid "Domains" msgstr "Etki Alanları" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 msgid "OpenPGP Fingerprint" msgstr "OpenPGP Parmak İzi" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 msgid "Secure Shell" msgstr "Güvenli Kabuk" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 msgid "Other" msgstr "Diğer" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "%(fingerprint)s anahtarının ayrıntılarını göster" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 msgid "-" msgstr "-" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "Anahtarı İçe Aktar" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "Anahtarı Yayınla" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 msgid "Add Domains" msgstr "Etki Alanları Ekle" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "OpenPGP Kullanıcı Kimlikleri" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "Anahtar İçe Aktarma Tarihi" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 msgid "SSH Key Type" msgstr "SSH Anahtar Türü" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 msgid "SSH Key Size" msgstr "SSH Anahtar Boyutu" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 msgid "SSH Fingerprint" msgstr "SSH Parmak İzi" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "Anahtar Dosyası" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 msgid "Available Domains" msgstr "Kullanılabilir Etki Alanları" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 msgid "Added Domains" msgstr "Eklenen Etki Alanları" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" @@ -3533,15 +3531,15 @@ msgstr "" "Bu anahtar, anahtar sunucularında yayınlandıktan sonra, aşağıdaki komutlarla " "GnuPG kullanılarak imzalanabilir:" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 msgid "Download the key" msgstr "Anahtarı indir" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "Anahtarı imzala" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 msgid "Send the key back to the keyservers" msgstr "Anahtarı anahtar sunucularına geri gönder" @@ -3641,7 +3639,7 @@ msgstr "Tümü" msgid "All web apps" msgstr "Tüm web uygulamaları" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 msgid "Services" msgstr "Hizmetler" @@ -3741,8 +3739,8 @@ msgstr "" "maskesi kullanılacaktır." #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "Ağ Geçidi" @@ -3832,7 +3830,7 @@ msgid "-- select --" msgstr "-- seç --" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 msgid "SSID" msgstr "SSID" @@ -3841,7 +3839,7 @@ msgid "The visible name of the network." msgstr "Ağın görünür adı." #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "Kip" @@ -3870,7 +3868,7 @@ msgid "B/G (2.4 GHz)" msgstr "B/G (2.4 GHz)" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 msgid "Channel" msgstr "Kanal" @@ -4076,158 +4074,158 @@ msgstr "" "daha sonra hatırlatılmasını istiyorsanız bunu seçin. Diğer yapılandırma " "adımlarından bazıları başarısız olabilir.

" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "Bağlantıyı düzenle" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "Düzenle" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "Devre dışı bırak" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "Etkinleştir" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "Bağlantıyı sil" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "Bağlantı" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "Birincil bağlantı" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "evet" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "Aygıt" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "Durum" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "Durum nedeni" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 msgid "MAC address" msgstr "MAC adresi" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 msgid "Interface" msgstr "Arayüz" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "Açıklama" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "Fiziksel Bağlantı" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "Bağlantı durumu" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "kablo bağlı" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 msgid "please check cable" msgstr "lütfen kabloyu denetleyin" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "Hız" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "%(ethernet_speed)s Mbit/s" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "%(wireless_bitrate)s Mbit/s" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "Sinyal gücü" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "IPv4" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "Yöntem" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "IP adresi" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "DNS sunucusu" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "Varsayılan" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "IPv6" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "Bu bağlantı etkin değil." -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "Güvenlik" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "Güvenlik duvarı bölgesi" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 msgid "" "This interface should be connected to a local network/machine. If you " "connect this interface to a public network, services meant to be available " @@ -4237,8 +4235,8 @@ msgstr "" "bağlarsanız, sadece dahili olarak kullanılabilir olan hizmetler harici " "olarak kullanılabilir hale gelecektir. Bu bir güvenlik riskidir." -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 msgid "" "This interface should receive your Internet connection. If you connect it to " "a local network/machine, many services meant to available only internally " @@ -4248,13 +4246,13 @@ msgstr "" "bağlarsanız, sadece dahili olarak kullanılabilir birçok hizmet " "kullanılamayacaktır." -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "Harici" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -4277,40 +4275,40 @@ msgstr "Bağlantıyı Sil" msgid "Delete connection %(name)s permanently?" msgstr "%(name)s bağlantısı kalıcı olarak silinsin mi?" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "Internet" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 msgid "Spacing" msgstr "Aralık" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "Ethernet" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "Kablosuz (Wi-Fi)" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "%(name)s bağlantısını göster" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "Dahili" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "Bilgisayar" @@ -4336,19 +4334,19 @@ msgstr "Yakındaki Kablosuz (Wi-Fi) Ağları" msgid "Add Connection" msgstr "Bağlantı Ekle" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "%(name)s bağlantısını sil" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "Etkin" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "Devre Dışı" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "%(name)s bağlantısını sil" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "Oluştur..." @@ -4376,8 +4374,8 @@ msgstr "Bu adımı atla" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "İleri" @@ -4476,7 +4474,7 @@ msgstr "" "Internet bağlantınız doğrudan %(box_name)s cihazınıza bağlı ve ağda başka " "cihaz yok." -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -4970,11 +4968,11 @@ msgstr "Herkese Açık Görünürlük" msgid "PageKite Domain" msgstr "PageKite Etki Alanı" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 msgid "Server domain" msgstr "Sunucu etki alanı" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " "pagekite.net server." @@ -4982,31 +4980,31 @@ msgstr "" "Pagekite sunucunuzu seçin. Varsayılan pagekite.net sunucusunu kullanmak için " "\"pagekite.net\" olarak ayarlayın." -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "Sunucu bağlantı noktası" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "Pagekite sunucunuzun bağlantı noktası (varsayılan: 80)" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "Kite adı" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "Örnek: benimkutum.pagekite.me" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "Geçersiz kite adı" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "Kite gizli anahtarı" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." @@ -5014,53 +5012,53 @@ msgstr "" "Kite ile ilişkilendirilmiş bir gizli anahtar ya da kite üzerinde hiçbir " "gizli anahtar ayarlanmamışsa hesabınız için varsayılan gizli anahtar." -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "protokol" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "harici (ön uç) bağlantı noktası" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "dahili (freedombox) bağlantı noktası" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "Alt Etki Alanlarını etkinleştir" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 msgid "Deleted custom service" msgstr "Özel hizmet silindi" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 msgid "This service is already available as a standard service." msgstr "Bu hizmet zaten standart bir hizmet olarak mevcut." -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 msgid "Added custom service" msgstr "Özel hizmet eklendi" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "Bu hizmet zaten var" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 msgid "Custom Services" msgstr "Özel Hizmetler" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 msgid "Add Custom Service" msgstr "Özel Hizmet Ekle" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "%(backend_host)s:%(backend_port)s cihazına bağlandı" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "Bu hizmeti sil" @@ -5157,13 +5155,16 @@ msgstr "" "Şu anda bir kurulum veya yükseltme çalışıyor. Kapatmadan veya yeniden " "başlatmadan önce bitene kadar beklemeyi düşünün." -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" -msgstr "Yeniden Başlat »" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +msgid "Restart" +msgstr "Yeniden başlat" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" -msgstr "Kapat »" +#, fuzzy +#| msgid "Shut down" +msgid "Shut Down" +msgstr "Kapat" #: plinth/modules/power/templates/power_restart.html:17 msgid "" @@ -5523,11 +5524,11 @@ msgstr "GNOME Dosyaları" msgid "Dolphin" msgstr "Dolphin" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 msgid "Shares" msgstr "Paylaşımlar" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 msgid "" "Note: Only specially created directories will be shared on selected disks, " "not the whole disk." @@ -5535,11 +5536,11 @@ msgstr "" "Not: Sadece özel olarak oluşturulmuş dizinler, bütün diskte değil, seçilen " "disklerde paylaşılacaktır." -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 msgid "VFAT partitions are not supported" msgstr "VFAT bölümleri desteklenmiyor" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the kullanıcılar modülü " "sayfasında paylaşımlara erişimi yapılandırabilirsiniz." -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 msgid "Users who can currently access group and home shares" msgstr "Şu anda grup ve ev paylaşımlarına erişebilen kullanıcılar" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 msgid "" "Users needing to re-enter their password on the password change page to " "access group and home shares" @@ -5562,11 +5563,11 @@ msgstr "" "Grup ve ev paylaşımlarına erişmek için parola değiştirme sayfasında " "parolalarını yeniden girmesi gereken kullanıcılar" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 msgid "Unavailable Shares" msgstr "Kullanılamaz Paylaşımlar" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." @@ -5574,11 +5575,11 @@ msgstr "" "Yapılandırılan ancak disk kullanılabilir olmayan paylaşımlar. Eğer disk " "tekrar takılırsa paylaşım otomatik olarak etkinleştirilecektir." -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 msgid "Share name" msgstr "Paylaşım adı" -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 msgid "Action" msgstr "Eylem" @@ -5697,25 +5698,25 @@ msgstr "" "etkinleştirilmiş parola korumalı internet hizmetlerine yönelik deneme " "yanılmayla zorlama girişimlerini sınırlayacaktır." -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 msgid "Show security report" msgstr "Güvenlik raporunu göster" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "Sık Yapılan Özellik Güncellemeleri" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "Sık yapılan özellik güncellemeleri etkinleştirildi." -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5776,39 +5777,39 @@ msgstr "" "bir şekilde izole edildiğinin bir sonucudur. Sadece hizmet çalışırken " "görüntülenir." -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 msgid "App Name" msgstr "Uygulama Adı" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 msgid "Current Vulnerabilities" msgstr "Şu Anki Güvenlik Açığı" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 msgid "Past Vulnerabilities" msgstr "Geçmiş Güvenlik Açığı" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 msgid "Sandboxed" msgstr "Korumalı" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 msgid "Sandbox Coverage" msgstr "Korumalı Alan Kapsamı" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 msgid "N/A" msgstr "YOK" -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 msgid "Yes" msgstr "Evet" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 msgid "No" msgstr "Hayır" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 msgid "Not running" msgstr "Çalışmıyor" @@ -5969,28 +5970,28 @@ msgstr "Bu ada sahip bir paylaşım zaten var." msgid "Shares should be either public or shared with at least one group" msgstr "Paylaşımlar herkese açık olmalı veya en az bir grupla paylaşılmalıdır" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 msgid "Add share" msgstr "Paylaşım ekle" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "Şu anda yapılandırılmış paylaşımlar yok." -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "Disk Yolu" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 msgid "Shared Over" msgstr "Paylaşım Bitti" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 msgid "With Groups" msgstr "Gruplarla" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "herkese açık erişim" @@ -6135,41 +6136,41 @@ msgstr "" msgid "Delete the following snapshots permanently?" msgstr "Aşağıdaki anlık görüntüler kalıcı olarak silinsin mi?" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "Sayı" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "Tarih" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 msgid "Delete Snapshots" msgstr "Anlık Görüntüleri Sil" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 msgid "Create Snapshot" msgstr "Anlık Görüntü Oluştur" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "Geri Al" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 msgid "will be used at next boot" msgstr "sonraki önyüklemede kullanılacaktır" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "kullanımda" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "#%(number)s nolu anlık görüntüye geri al" @@ -6198,7 +6199,7 @@ msgstr "" "oluşturulacaktır. Yeni oluşturulan anlık görüntüye geri dönerek bir geri " "alma işlemini geri alabileceksiniz." -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "#%(number)s Nolu Anlık Görüntüye Geri Al" @@ -6296,11 +6297,11 @@ msgstr "" "Sunucuya bağlanırken, SSH istemcisi tarafından gösterilen parmak izinin bu " "parmak izlerinden biriyle eşleştiğinden emin olun." -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "Algoritma" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 msgid "Fingerprint" msgstr "Parmak İzi" @@ -6480,27 +6481,27 @@ msgstr "Paylaş" msgid "Other directory (specify below)" msgstr "Diğer dizin (aşağıda belirtin)" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 msgid "The following storage devices are in use:" msgstr "Aşağıdaki depolama aygıtları kullanımda:" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "Etiket" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "Bağlama Noktası" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 msgid "Used" msgstr "Kullanılan" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "Bölüm Genişletme" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -6511,13 +6512,13 @@ msgstr "" "alan var. Bu alanı kullanmak için kök bölümü genişletilebilir. Bu, " "dosyalarınızı depolamanız için size ek boş alan sağlayacaktır." -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "Kök Bölümünü Genişlet" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -6652,25 +6653,25 @@ msgstr "" msgid "Local introducer" msgstr "Yerel tanıtıcı" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 msgid "Pet Name" msgstr "Evcil Hayvan Adı" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "Yeni tanıtıcı ekle" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 msgid "Add" msgstr "Ekle" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "Bağlı tanıtıcılar" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "Kaldır" @@ -6840,19 +6841,19 @@ msgstr "Orbot: Tor ile Proksi" msgid "Tor configuration is being updated" msgstr "Tor yapılandırması güncelleniyor" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 msgid "Onion Service" msgstr "Onion Hizmeti" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 msgid "Ports" msgstr "Bağlantı Noktaları" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 msgid "Relay" msgstr "Aktarım" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, python-format msgid "" "If your %(box_name)s is behind a router or firewall, you should make sure " @@ -6953,7 +6954,7 @@ msgstr "" "olarak yapılır ve tüm uygulamalar kısa bir süre için kullanılamaz hale gelir." #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 msgid "Update" @@ -6989,7 +6990,7 @@ msgstr "" "olduğunda buna güncellenecek." #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "Sık yapılan özellik güncellemelerini etkinleştir (önerilir)" @@ -7013,11 +7014,11 @@ msgstr "" "Not: Sık yapılan özellik güncellemeleri " "etkinleştirildiğinde, devre dışı bırakılamazlar." -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 msgid "Updating, please wait..." msgstr "Güncelleniyor, lütfen bekleyin..." -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 msgid "" "This may take a long time to complete. During an update, " @@ -7028,7 +7029,7 @@ msgstr "" "sırasında, bu web arayüzü geçici olarak kullanılamayabilir ve bir hata " "gösterebilir. Bu durumda devam etmek için sayfayı yenileyin." -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, python-format msgid "" "\n" @@ -7058,28 +7059,28 @@ msgstr "" msgid "Dismiss" msgstr "Yoksay" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "Güncelleniyor..." -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, python-format msgid "There is a new %(box_name)s version available." msgstr "Yeni bir %(box_name)s sürümü mevcut." -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 msgid "Your Freedombox needs an update!" msgstr "Freedombox'ınızın bir güncellemeye ihtiyacı var!" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" "Sık yapılan özellik güncellemeleri etkinleştirilebilir. Bunların " "etkinleştirilmesi önerilir." -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." @@ -7087,7 +7088,7 @@ msgstr "" "Sık yapılan özellik güncellemeleri etkinleştirilemez. Dağıtımınızda gerekli " "olmayabilirler." -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -7099,15 +7100,15 @@ msgstr "" "\"%(snapshot_url)s\">Depolama Anlık Görüntülerini kullanarak bir anlık " "görüntü almak isteyebilirsiniz." -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 msgid "Manual Update" msgstr "Elle Güncelleme" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 msgid "Update now" msgstr "Şimdi güncelle" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 msgid "" "This may take a long time to complete. During an update, " "you cannot install apps. Also, this web interface may be temporarily " @@ -7118,7 +7119,7 @@ msgstr "" "kullanılamayabilir ve bir hata gösterebilir. Bu durumda devam etmek için " "sayfayı yenileyin." -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 msgid "Show recent update logs" msgstr "Son güncelleme günlüklerini göster" @@ -7310,8 +7311,8 @@ msgstr "Parolayı Kaydet" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "Kullanıcı Oluştur" @@ -7372,21 +7373,21 @@ msgstr "" "komutunu çalıştırın. %(box_name)s ile kullanılabilen bir hesap zaten varsa, " "bu adımı atlayın." -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "Kullanıcılar" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "%(username)s kullanıcısını sil" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "%(username)s kullanıcısını düzenle" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "%(username)s kullanıcısını sil" + #: plinth/modules/users/templates/users_update.html:11 #, python-format msgid "Edit User %(username)s" @@ -7468,8 +7469,8 @@ msgstr "Geçersiz anahtar." #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 msgid "Public Key" msgstr "Ortak Anahtar" @@ -7568,7 +7569,7 @@ msgid "Allowed IPs" msgstr "İzin verilen IP'ler" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 msgid "Last Connected Time" msgstr "Son Bağlanma Zamanı" @@ -7578,47 +7579,47 @@ msgid "No peers configured to connect to this %(box_name)s yet." msgstr "" "Henüz bu %(box_name)s cihazına bağlanmak için yapılandırılmış kişiler yok." -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, python-format msgid "Public key for this %(box_name)s:" msgstr "Bu %(box_name)s için ortak anahtar:" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 msgid "Not configured yet." msgstr "Henüz yapılandırılmadı." -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 msgid "Add a new peer" msgstr "Yeni bir kişi ekle" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "İzin Verilen İstemci Ekle" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 msgid "As a Client" msgstr "Bir İstemci Olarak" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "%(box_name)s cihazının bağlanacağı sunucular:" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "Uç nokta" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 msgid "No connections to remote servers are configured yet." msgstr "Henüz uzak sunuculara yapılandırılan bağlantılar yok." -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 msgid "Add a new server" msgstr "Yeni bir sunucu ekleyin" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "Sunucuya Bağlantı Ekle" @@ -7652,40 +7653,40 @@ msgstr "" "%(box_name)s, bu istemcinin ona bağlanmasına izin verecek. İstemcinin " "aşağıdaki bilgilerle yapılandırıldığından emin olun." -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "İstemci ortak anahtarı:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "İstemci için kullanılacak IP adresi:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "Ön paylaşımlı anahtar:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 msgid "Server endpoints:" msgstr "Sunucu uç noktaları:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 msgid "Server public key:" msgstr "Sunucu ortak anahtarı:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "Aktarılan veriler:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "Alınan veriler:" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "En son görüşme:" @@ -7700,15 +7701,15 @@ msgstr "" "çalışacak. Sunucunun, %(box_name)s cihazının ortak anahtarına ve IP adresine " "erişmeye izin vermek için yapılandırıldığından emin olun." -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 msgid "Server endpoint:" msgstr "Sunucu uç noktası:" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "Bu makinenin ortak anahtarı:" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "Bu makinenin IP adresi:" @@ -7853,49 +7854,59 @@ msgstr "Kurulum" msgid "Service %(service_name)s is not running." msgstr "%(service_name)s hizmeti çalışmıyor." -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, python-format msgid "Core functionality and web interface for %(box_name)s" msgstr "%(box_name)s için temel işlevsellik ve web arayüzü" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" -msgstr "Gezinmeyi değiştir" +#: plinth/templates/base.html:107 +#, fuzzy +#| msgid "Home" +msgid " Home" +msgstr "Ev" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "Giriş" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +#, fuzzy +#| msgid "Apps" +msgid " Apps" +msgstr "Uygulamalar" + +#: plinth/templates/base.html:119 msgid "Apps" msgstr "Uygulamalar" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +#, fuzzy +#| msgid "System" +msgid " System" +msgstr "Sistem" + +#: plinth/templates/base.html:128 msgid "System" msgstr "Sistem" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "Parolayı değiştir" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -msgid "Restart" -msgstr "Yeniden başlat" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 msgid "Shut down" msgstr "Kapat" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "Oturumu kapat" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 msgid "Select language" msgstr "Dil seçin" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "Oturum aç" @@ -7959,7 +7970,7 @@ msgstr "Homebrew:" msgid "RPM:" msgstr "RPM:" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -7977,10 +7988,6 @@ msgstr "" "Bu sayfaya kısayollar eklemek için bazı uygulamaları etkinleştirin." -#: plinth/templates/index.html:46 -msgid "Configure »" -msgstr "Yapılandır »" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -8012,7 +8019,7 @@ msgstr "Ana Sayfa" msgid "Source Code" msgstr "Kaynak Kodu" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "Bağış" @@ -8049,6 +8056,10 @@ msgid "" msgstr "" "Şu anda şu ağ arayüzleri dahili olarak yapılandırıldı: %(interface_list)s" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 msgid "Notifications" msgstr "Bildirimler" @@ -8089,15 +8100,15 @@ msgstr "" "yönlendirmeyi ayarlamanız gerekecektir. %(service_name)s için aşağıdaki " "bağlantı noktalarını yönlendirmelisiniz:" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 msgid "Protocol" msgstr "Protokol" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "Yönlendirici/WAN Bağlantı Noktalarından" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, python-format msgid "To %(box_name)s Ports" msgstr "%(box_name)s Bağlantı Noktalarına" @@ -8152,6 +8163,24 @@ msgstr "%%%(percentage)s tamamlandı" msgid "Gujarati" msgstr "Gujarati" +#~ msgid "Show Ports" +#~ msgstr "Bağlantı Noktalarını Göster" + +#~ msgid "Learn more »" +#~ msgstr "Daha fazla bilgi edinin »" + +#~ msgid "Restart »" +#~ msgstr "Yeniden Başlat »" + +#~ msgid "Shut Down »" +#~ msgstr "Kapat »" + +#~ msgid "Toggle navigation" +#~ msgstr "Gezinmeyi değiştir" + +#~ msgid "Configure »" +#~ msgstr "Yapılandır »" + #~ msgid "Show connection %(connection.name)s" #~ msgstr "%(connection.name)s bağlantısını göster" @@ -8911,21 +8940,6 @@ msgstr "Gujarati" #~ "sisteminde \".snapshots\" klasörünü ziyaret ederek yapılabilir. Anlıklar " #~ "yedeklemelerin yerine geçmezler." -#, fuzzy -#~| msgid "Home" -#~ msgid " Home" -#~ msgstr "Ev" - -#, fuzzy -#~| msgid "Apps" -#~ msgid " Apps" -#~ msgstr "Uygulamalar" - -#, fuzzy -#~| msgid "System" -#~ msgid " System" -#~ msgstr "Sistem" - #, fuzzy #~| msgid "Kite name" #~ msgid "Archive name" diff --git a/plinth/locale/uk/LC_MESSAGES/django.po b/plinth/locale/uk/LC_MESSAGES/django.po index e5da0dcc3..e28cfc9be 100644 --- a/plinth/locale/uk/LC_MESSAGES/django.po +++ b/plinth/locale/uk/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: 2019-01-04 17:06+0000\n" "Last-Translator: prolinux ukraine \n" "Language-Team: Ukrainian diaspora.%(domain_name)s " msgstr "" +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1681,16 +1688,16 @@ msgid "About" msgstr "" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 msgid "Status" msgstr "Статус" @@ -1820,7 +1827,7 @@ msgstr "" msgid "Port {name} ({details}) unavailable for external networks" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -1829,57 +1836,53 @@ msgid "" "system with systemd 'systemctl start firewalld'." msgstr "" -#: plinth/modules/firewall/templates/firewall.html:28 -msgid "Show Ports" -msgstr "" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " "disabled in the firewall." msgstr "" -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -1917,7 +1920,7 @@ msgid "" "modify it if necessary." msgstr "" -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "" @@ -2020,38 +2023,38 @@ msgstr "" msgid "Git" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 #, fuzzy #| msgid "Remove Repository" msgid "Manage Repositories" msgstr "Видалити сховище" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 #, fuzzy #| msgid "Remove Repository" msgid "Create repository" msgstr "Видалити сховище" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 msgid "No repositories available." msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 +#, python-format +msgid "Go to repository %(repo.name)s" +msgstr "" + +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 +msgid "Cloning…" +msgstr "" + +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 #, fuzzy, python-format #| msgid "Delete Archive %(name)s" msgid "Delete repository %(repo.name)s" msgstr "Видалити архів %(name)s" -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 -msgid "Cloning…" -msgstr "" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 -#, python-format -msgid "Go to repository %(repo.name)s" -msgstr "" - #: plinth/modules/gitweb/templates/gitweb_delete.html:12 #, python-format msgid "Delete Git Repository %(name)s" @@ -2117,6 +2120,25 @@ msgid "Contribute" msgstr "" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, python-format +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:23 +#, python-format +msgid "" +"There is a new %(box_name)s version available." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, python-format +msgid "%(box_name)s is up to date." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:35 #, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2128,7 +2150,7 @@ msgid "" "your data stays with you." msgstr "" -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2138,7 +2160,7 @@ msgid "" "returning the Internet to its intended peer-to-peer architecture." msgstr "" -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2146,34 +2168,15 @@ msgid "" "package." msgstr "" -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the %(box_name)s Wiki." msgstr "" -#: plinth/modules/help/templates/help_about.html:60 -msgid "Learn more »" -msgstr "" - -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, python-format -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "" - -#: plinth/modules/help/templates/help_about.html:69 -#, python-format -msgid "" -"There is a new %(box_name)s version available." -msgstr "" - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, python-format -msgid "%(box_name)s is up to date." +#: plinth/modules/help/templates/help_about.html:78 +msgid "Learn more" msgstr "" #: plinth/modules/help/templates/help_base.html:21 @@ -2239,7 +2242,7 @@ msgid "Thank you!" msgstr "" #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 msgid "Help" msgstr "" @@ -2275,7 +2278,7 @@ msgid "" "channel using the IRC web interface." msgstr "" -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 msgid "Download as PDF" msgstr "" @@ -2455,16 +2458,16 @@ msgstr "" msgid "No wikis or blogs available." msgstr "" -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2556,8 +2559,8 @@ msgstr "" msgid "Chat Client" msgstr "" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "" @@ -2587,63 +2590,63 @@ msgstr "" msgid "Certificates" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 msgid "Domain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 msgid "Actions" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, python-format msgid "Valid, expires on %(expiry_date)s" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 msgid "Revoked" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, python-format msgid "Expired on %(expiry_date)s" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 msgid "Invalid test certificate" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 msgid "No certificate" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, python-format msgid "" "No domains have been configured. Configure " @@ -2720,12 +2723,6 @@ msgstr "" msgid "Element" msgstr "" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -2810,51 +2807,51 @@ msgstr "" msgid "Wiki" msgstr "" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 msgid "Administrator Password" msgstr "" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." msgstr "" -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 msgid "Server URL" msgstr "" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." msgstr "" -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 msgid "Enable public registrations" msgstr "" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." msgstr "" -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 msgid "Enable private mode" msgstr "" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 msgid "" "If enabled, access will be restricted. Only people who have accounts can " "read/write to the wiki. Public registrations will also be disabled." msgstr "" -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 msgid "Default Skin" msgstr "" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -2944,13 +2941,13 @@ msgstr "" msgid "When disabled, players cannot die or receive damage of any kind." msgstr "" -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "" @@ -3098,109 +3095,108 @@ msgstr "" msgid "Monkeysphere" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 msgid "Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 msgid "OpenPGP Fingerprint" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 msgid "Secure Shell" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 msgid "Other" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 msgid "-" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 msgid "Add Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 msgid "SSH Key Type" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 msgid "SSH Key Size" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 msgid "SSH Fingerprint" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 msgid "Available Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 msgid "Added Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 msgid "Download the key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 msgid "Send the key back to the keyservers" msgstr "" @@ -3290,7 +3286,7 @@ msgstr "" msgid "All web apps" msgstr "" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 #, fuzzy #| msgid "Service Discovery" msgid "Services" @@ -3379,8 +3375,8 @@ msgid "" msgstr "" #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "" @@ -3456,7 +3452,7 @@ msgid "-- select --" msgstr "" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 msgid "SSID" msgstr "" @@ -3465,7 +3461,7 @@ msgid "The visible name of the network." msgstr "" #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "" @@ -3494,7 +3490,7 @@ msgid "B/G (2.4 GHz)" msgstr "" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 msgid "Channel" msgstr "" @@ -3644,179 +3640,179 @@ msgid "" "to be reminded later. Some of the other configuration steps may fail.

" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 msgid "MAC address" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 msgid "Interface" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 msgid "please check cable" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 msgid "" "This interface should be connected to a local network/machine. If you " "connect this interface to a public network, services meant to be available " "only internally will become available externally. This is a security risk." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 msgid "" "This interface should receive your Internet connection. If you connect it to " "a local network/machine, many services meant to available only internally " "will not be available." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -3837,40 +3833,40 @@ msgstr "" msgid "Delete connection %(name)s permanently?" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 msgid "Spacing" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "" @@ -3898,19 +3894,19 @@ msgstr "" msgid "Add Connection" msgstr "" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "" @@ -3936,8 +3932,8 @@ msgstr "" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "" @@ -4021,7 +4017,7 @@ msgid "" "are no other devices on the network." msgstr "" -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -4473,93 +4469,93 @@ msgstr "" msgid "PageKite Domain" msgstr "" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 msgid "Server domain" msgstr "" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " "pagekite.net server." msgstr "" -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." msgstr "" -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 msgid "Deleted custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 msgid "This service is already available as a standard service." msgstr "" -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 msgid "Added custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 msgid "Custom Services" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 msgid "Add Custom Service" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "" @@ -4641,12 +4637,13 @@ msgid "" "finished before shutting down or restarting." msgstr "" -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +msgid "Restart" msgstr "" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" +msgid "Shut Down" msgstr "" #: plinth/modules/power/templates/power_restart.html:17 @@ -4932,21 +4929,21 @@ msgstr "" msgid "Dolphin" msgstr "" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 msgid "Shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 msgid "" "Note: Only specially created directories will be shared on selected disks, " "not the whole disk." msgstr "" -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 msgid "VFAT partitions are not supported" msgstr "" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the users module page." msgstr "" -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 msgid "Users who can currently access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 msgid "" "Users needing to re-enter their password on the password change page to " "access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 msgid "Unavailable Shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." msgstr "" -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 msgid "Share name" msgstr "" -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 #, fuzzy #| msgid "Encryption" msgid "Action" @@ -5092,25 +5089,25 @@ msgid "" "services." msgstr "" -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 msgid "Show security report" msgstr "" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "" -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5154,41 +5151,41 @@ msgid "" "running." msgstr "" -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 #, fuzzy #| msgid "Name" msgid "App Name" msgstr "Ім’я" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 msgid "Current Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 msgid "Past Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 msgid "Sandboxed" msgstr "" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 msgid "Sandbox Coverage" msgstr "" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 msgid "N/A" msgstr "" -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 msgid "Yes" msgstr "" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 msgid "No" msgstr "" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 msgid "Not running" msgstr "" @@ -5329,28 +5326,28 @@ msgstr "" msgid "Shares should be either public or shared with at least one group" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 msgid "Add share" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "" -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 msgid "Shared Over" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 msgid "With Groups" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "" @@ -5474,41 +5471,41 @@ msgstr "" msgid "Delete the following snapshots permanently?" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 msgid "Delete Snapshots" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 msgid "Create Snapshot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 msgid "will be used at next boot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "" @@ -5531,7 +5528,7 @@ msgid "" "the newly created snapshot." msgstr "" -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "" @@ -5621,11 +5618,11 @@ msgid "" "client matches one of these fingerprints." msgstr "" -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 msgid "Fingerprint" msgstr "" @@ -5800,27 +5797,27 @@ msgstr "" msgid "Other directory (specify below)" msgstr "" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 msgid "The following storage devices are in use:" msgstr "" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 msgid "Used" msgstr "" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -5828,13 +5825,13 @@ msgid "" "will provide you additional free space to store your files." msgstr "" -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -5941,25 +5938,25 @@ msgstr "" msgid "Local introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 msgid "Pet Name" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 msgid "Add" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "" @@ -6103,19 +6100,19 @@ msgstr "" msgid "Tor configuration is being updated" msgstr "" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 msgid "Onion Service" msgstr "" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 msgid "Ports" msgstr "" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 msgid "Relay" msgstr "" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, python-format msgid "" "If your %(box_name)s is behind a router or firewall, you should make sure " @@ -6196,7 +6193,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 msgid "Update" @@ -6233,7 +6230,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "" @@ -6253,11 +6250,11 @@ msgid "" "cannot be deactivated." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 msgid "Updating, please wait..." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 msgid "" "This may take a long time to complete. During an update, " @@ -6265,7 +6262,7 @@ msgid "" "case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, python-format msgid "" "\n" @@ -6290,34 +6287,34 @@ msgstr "" msgid "Dismiss" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, python-format msgid "There is a new %(box_name)s version available." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 #, fuzzy #| msgid "FreedomBox" msgid "Your Freedombox needs an update!" msgstr "FreedomBox" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -6325,22 +6322,22 @@ msgid "" "\"%(snapshot_url)s\">Storage Snapshots before continuing." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 msgid "Manual Update" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 msgid "Update now" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 msgid "" "This may take a long time to complete. During an update, " "you cannot install apps. Also, this web interface may be temporarily " "unavailable and show an error. In that case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 msgid "Show recent update logs" msgstr "" @@ -6517,8 +6514,8 @@ msgstr "" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "" @@ -6571,21 +6568,21 @@ msgid "" "step." msgstr "" -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "" + #: plinth/modules/users/templates/users_update.html:11 #, python-format msgid "Edit User %(username)s" @@ -6661,8 +6658,8 @@ msgstr "Сховище не знайдено" #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 msgid "Public Key" msgstr "" @@ -6749,7 +6746,7 @@ msgid "Allowed IPs" msgstr "" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 msgid "Last Connected Time" msgstr "" @@ -6758,47 +6755,47 @@ msgstr "" msgid "No peers configured to connect to this %(box_name)s yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, python-format msgid "Public key for this %(box_name)s:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 msgid "Not configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 msgid "Add a new peer" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 msgid "As a Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 #, fuzzy #| msgid "Connection refused" @@ -6840,40 +6837,40 @@ msgid "" "is configured with the following information." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 msgid "Server endpoints:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 msgid "Server public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "" @@ -6885,15 +6882,15 @@ msgid "" "public key and IP address." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 msgid "Server endpoint:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "" @@ -7047,49 +7044,53 @@ msgstr "" msgid "Service %(service_name)s is not running." msgstr "" -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, python-format msgid "Core functionality and web interface for %(box_name)s" msgstr "" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" +#: plinth/templates/base.html:107 +msgid " Home" msgstr "" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +msgid " Apps" +msgstr "" + +#: plinth/templates/base.html:119 msgid "Apps" msgstr "" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +msgid " System" +msgstr "" + +#: plinth/templates/base.html:128 msgid "System" msgstr "" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -msgid "Restart" -msgstr "" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 msgid "Shut down" msgstr "" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 msgid "Select language" msgstr "" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "" @@ -7153,7 +7154,7 @@ msgstr "" msgid "RPM:" msgstr "" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -7167,10 +7168,6 @@ msgid "" "this page." msgstr "" -#: plinth/templates/index.html:46 -msgid "Configure »" -msgstr "" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -7195,7 +7192,7 @@ msgstr "" msgid "Source Code" msgstr "" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "" @@ -7229,6 +7226,10 @@ msgid "" "%(interface_list)s" msgstr "" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 msgid "Notifications" msgstr "" @@ -7260,15 +7261,15 @@ msgid "" "your router. You should forward the following ports for %(service_name)s:" msgstr "" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 msgid "Protocol" msgstr "" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, python-format msgid "To %(box_name)s Ports" msgstr "" diff --git a/plinth/locale/zh_Hans/LC_MESSAGES/django.po b/plinth/locale/zh_Hans/LC_MESSAGES/django.po index dad82a648..1ded90d54 100644 --- a/plinth/locale/zh_Hans/LC_MESSAGES/django.po +++ b/plinth/locale/zh_Hans/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Plinth\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: 2020-10-08 23:26+0000\n" "Last-Translator: Allan Nordhøy \n" "Language-Team: Chinese (Simplified) diaspora.%(domain_name)s " msgstr "" +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "配置" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1781,16 +1788,16 @@ msgid "About" msgstr "关于" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 msgid "Status" msgstr "状态" @@ -1941,7 +1948,7 @@ msgstr "服务发现服务未运行" msgid "Port {name} ({details}) unavailable for external networks" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -1953,44 +1960,40 @@ msgstr "" "何基于 Debian 的系统(例如 %(box_name)s)上,您可以使用命令“service " "firewalld start”或使用 systemd 的“systemctl start firewalld”命令运行它。" -#: plinth/modules/firewall/templates/firewall.html:28 -msgid "Show Ports" -msgstr "显示端口" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "服务/端口" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "启用" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "已禁用" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "允许" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "允许(只允许内部连接)" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "允许(只允许外部连接)" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "已阻止" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " @@ -1999,13 +2002,13 @@ msgstr "" "防火墙的操作是自动的。当您启用服务时它也在防火墙中允许,当禁用一项服务时也会" "禁用防火墙中的相应服务。" -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -2045,7 +2048,7 @@ msgid "" "modify it if necessary." msgstr "" -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "启动安装程序" @@ -2157,41 +2160,41 @@ msgstr "" msgid "Git" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 #, fuzzy #| msgid "Create User" msgid "Manage Repositories" msgstr "创建用户" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 #, fuzzy #| msgid "Create User" msgid "Create repository" msgstr "创建用户" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 #, fuzzy #| msgid "Tor relay port available" msgid "No repositories available." msgstr "Tor 中继端口可用" -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 -#, fuzzy, python-format -#| msgid "Delete user %(username)s" -msgid "Delete repository %(repo.name)s" -msgstr "删除用户 %(username)s" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 -msgid "Cloning…" -msgstr "" - -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 #, fuzzy, python-format #| msgid "Go to site %(site)s" msgid "Go to repository %(repo.name)s" msgstr "转到站点 %(site)s" +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 +msgid "Cloning…" +msgstr "" + +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 +#, fuzzy, python-format +#| msgid "Delete user %(username)s" +msgid "Delete repository %(repo.name)s" +msgstr "删除用户 %(username)s" + #: plinth/modules/gitweb/templates/gitweb_delete.html:12 #, fuzzy, python-format #| msgid "Delete Wiki or Blog %(name)s" @@ -2262,6 +2265,28 @@ msgid "Contribute" msgstr "贡献" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, fuzzy, python-format +#| msgid "You are running Plinth version %(version)s." +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "您正在运行 Plinth 版本 %(version)s。" + +#: plinth/modules/help/templates/help_about.html:23 +#, fuzzy, python-format +#| msgid "There is a new version available." +msgid "" +"There is a new %(box_name)s version available." +msgstr "有新版本可用" + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, fuzzy, python-format +#| msgid "%(box_name)s Setup" +msgid "%(box_name)s is up to date." +msgstr "%(box_name)s 安装程序" + +#: plinth/modules/help/templates/help_about.html:35 #, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2278,7 +2303,7 @@ msgstr "" "wiki、网站、社交网络、电子邮件、Web 代理和 Tor 中继,以便让您的数据与您在一" "起。" -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2292,7 +2317,7 @@ msgstr "" "据保存在家中,我们可以获得有用的法律保护。通过在用户的网络和机器重获权力,我" "们将互联网返回到应有的对等架构。" -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2302,7 +2327,7 @@ msgstr "" "有一些项目致力于实现未来的分布式服务;%(box_name)s 旨在将它们集中在一个方便的" "软件包中。" -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the %(box_name)s Wiki。" -#: plinth/modules/help/templates/help_about.html:60 -msgid "Learn more »" -msgstr "了解更多»" - -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, fuzzy, python-format -#| msgid "You are running Plinth version %(version)s." -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "您正在运行 Plinth 版本 %(version)s。" - -#: plinth/modules/help/templates/help_about.html:69 -#, fuzzy, python-format -#| msgid "There is a new version available." -msgid "" -"There is a new %(box_name)s version available." -msgstr "有新版本可用" - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, fuzzy, python-format -#| msgid "%(box_name)s Setup" -msgid "%(box_name)s is up to date." -msgstr "%(box_name)s 安装程序" +#: plinth/modules/help/templates/help_about.html:78 +#, fuzzy +#| msgid "Learn more..." +msgid "Learn more" +msgstr "了解更多……" #: plinth/modules/help/templates/help_base.html:21 #: plinth/modules/help/templates/help_index.html:61 @@ -2400,7 +2405,7 @@ msgid "Thank you!" msgstr "" #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 msgid "Help" msgstr "帮助" @@ -2447,7 +2452,7 @@ msgstr "" "randomnick=1&channels=freedombox&prompt=1\"> #freedombox 频道并在上面请求" "帮助。" -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 #, fuzzy #| msgid "downloading" msgid "Download as PDF" @@ -2660,16 +2665,16 @@ msgstr "创建 Wiki 或博客" msgid "No wikis or blogs available." msgstr "没有 wiki 或博客可用。" -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "删除站点 %(site)s" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "转到站点 %(site)s" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "删除站点 %(site)s" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2781,8 +2786,8 @@ msgstr "" "聊天客户端\n" "(JSXC)" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "" @@ -2822,69 +2827,69 @@ msgstr "证书(Let's Encrypt)" msgid "Certificates" msgstr "证书状态" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 msgid "Domain" msgstr "域名" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "证书状态" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "网站安全" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 msgid "Actions" msgstr "行动" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, fuzzy, python-format #| msgid "Expires on %(expiry_date)s" msgid "Valid, expires on %(expiry_date)s" msgstr "到期日期 %(expiry_date)s" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 #, fuzzy #| msgid "Revoke" msgid "Revoked" msgstr "撤销" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, fuzzy, python-format #| msgid "Expires on %(expiry_date)s" msgid "Expired on %(expiry_date)s" msgstr "到期日期 %(expiry_date)s" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 #, fuzzy #| msgid "Invalid kite name" msgid "Invalid test certificate" msgstr "无效的 Kite 名称" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 msgid "No certificate" msgstr "没有证书" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "重新获取" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "撤销" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "获取" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, fuzzy, python-format #| msgid "" #| "No domains have been configured. Configure domains to be able to obtain " @@ -2975,12 +2980,6 @@ msgstr "" msgid "Element" msgstr "" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "配置" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -3076,61 +3075,61 @@ msgstr "" msgid "Wiki" msgstr "共笔文档" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 #, fuzzy #| msgid "Administrator Account" msgid "Administrator Password" msgstr "管理员帐户" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." msgstr "" -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 #, fuzzy #| msgid "Service" msgid "Server URL" msgstr "服务" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." msgstr "" -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 #, fuzzy #| msgid "Enable application" msgid "Enable public registrations" msgstr "启用应用程序" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." msgstr "" -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 #, fuzzy #| msgid "Enable creative mode" msgid "Enable private mode" msgstr "启用创意模式" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 msgid "" "If enabled, access will be restricted. Only people who have accounts can " "read/write to the wiki. Public registrations will also be disabled." msgstr "" -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 #, fuzzy #| msgid "Default" msgid "Default Skin" msgstr "默认" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -3258,13 +3257,13 @@ msgstr "启用伤害" msgid "When disabled, players cannot die or receive damage of any kind." msgstr "禁用时,玩家间不能互相伤害也不能死" -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "地址" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "端口" @@ -3433,95 +3432,94 @@ msgstr "" msgid "Monkeysphere" msgstr "Monkeysphere" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "正在发布密钥到密钥服务器..." -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "取消" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "服务" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 msgid "Domains" msgstr "域名" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 msgid "OpenPGP Fingerprint" msgstr "OpenPGP 指纹" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 msgid "Secure Shell" msgstr "安全 Shell" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 msgid "Other" msgstr "其他" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "显示密钥 %(fingerprint)s 的详细信息" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 msgid "-" msgstr "-" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "导入密钥" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "发布密钥" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 msgid "Add Domains" msgstr "添加域名" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "OpenPGP 用户ID" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "密钥导入日期" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 msgid "SSH Key Type" msgstr "SSH 密钥类型" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 msgid "SSH Key Size" msgstr "SSH 密钥大小" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 msgid "SSH Fingerprint" msgstr "SSH 指纹" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "密钥文件" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 msgid "Available Domains" msgstr "可用域名" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 msgid "Added Domains" msgstr "已添加域名" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" @@ -3529,15 +3527,15 @@ msgstr "" "此密钥发布到密钥服务器后。可以使用如下的 GnuPG 命令来签名:" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 msgid "Download the key" msgstr "下载该密钥" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "签名该密钥" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 msgid "Send the key back to the keyservers" msgstr "将密钥发回密钥服务器" @@ -3637,7 +3635,7 @@ msgstr "" msgid "All web apps" msgstr "" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 #, fuzzy #| msgid "Service" msgid "Services" @@ -3732,8 +3730,8 @@ msgid "" msgstr "可选的值。如果为空,则将使用基于地址的默认子网掩码。" #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "网关" @@ -3817,7 +3815,7 @@ msgid "-- select --" msgstr "-- 选择 --" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 msgid "SSID" msgstr "SSID" @@ -3826,7 +3824,7 @@ msgid "The visible name of the network." msgstr "可见网络的名称。" #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "模式" @@ -3855,7 +3853,7 @@ msgid "B/G (2.4 GHz)" msgstr "B/G (2.4 GHz)" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 msgid "Channel" msgstr "信道" @@ -4008,158 +4006,158 @@ msgid "" "to be reminded later. Some of the other configuration steps may fail.

" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "编辑连接" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "編輯" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "停用" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "激活" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "删除连接" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "连接" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "主连接" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "是的" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "设备" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "状态" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "状态原因" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 msgid "MAC address" msgstr "MAC 地址" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 msgid "Interface" msgstr "接口" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "描述" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "物理链路" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "链路状态" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "线缆已连接" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 msgid "please check cable" msgstr "请检查线缆" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "速度" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "%(ethernet_speed)s Mbit/s" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "%(wireless_bitrate)s Mbit/s" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "信号强度" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "IPv4" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "方法" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "IP 地址" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "DNS 服务器" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "默认" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "IPv6" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "此连接未处于激活状态。" -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "安全" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "防火墙区域" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 msgid "" "This interface should be connected to a local network/machine. If you " "connect this interface to a public network, services meant to be available " @@ -4168,8 +4166,8 @@ msgstr "" "此接口应该连接到本地网络。 如果您将此接口连接到公用网络,意味着只为内网提供的" "服务将成开放给外网。这会产生安全风险。" -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 msgid "" "This interface should receive your Internet connection. If you connect it to " "a local network/machine, many services meant to available only internally " @@ -4178,13 +4176,13 @@ msgstr "" "此接口应该接收您的 Internet 连接。如果你将其连接到本地网络,这意味着很多仅在" "内网可用的服务将不可用。" -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "外网" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -4205,40 +4203,40 @@ msgstr "删除连接" msgid "Delete connection %(name)s permanently?" msgstr "永久删除连接 %(name)s?" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "互联网" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 msgid "Spacing" msgstr "间距" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "以太网" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "Wi-Fi" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "显示连接 %(name)s" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "内网" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "计算机" @@ -4266,19 +4264,19 @@ msgstr "附近的无线网络" msgid "Add Connection" msgstr "添加连接" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "删除连接 %(name)s" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "激活" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "未激活" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "删除连接 %(name)s" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "创建..." @@ -4304,8 +4302,8 @@ msgstr "" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "" @@ -4394,7 +4392,7 @@ msgid "" "are no other devices on the network." msgstr "" -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -4934,11 +4932,11 @@ msgstr "公开可见性(PageKite)" msgid "PageKite Domain" msgstr "PageKite 帐户" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 msgid "Server domain" msgstr "服务器域" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " "pagekite.net server." @@ -4946,57 +4944,57 @@ msgstr "" "选择您的 pagekite 服务器。设置\"pagekite.net\"以便使用默认的 pagekite.net 服" "务器。" -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "服务器端口" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "你 pagekite 服务器的端口 (默认: 80)" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "Kite 名字" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "示例: mybox.pagekite.me" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "无效的 Kite 名称" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "Kite 密码" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." msgstr "为 kite 设置的密码,如果没有为 kite 设置密码则会使用你账号的默认密码。" -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "协议" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "外网(前端)端口" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "内网(freedombox)端口" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "启用子域" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 msgid "Deleted custom service" msgstr "删除自定义服务" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 #, fuzzy #| msgid "" #| "This service is available as a standard service. Please use the " @@ -5004,31 +5002,31 @@ msgstr "删除自定义服务" msgid "This service is already available as a standard service." msgstr "这项服务是可作为标准的服务。请使用\"标准服务\"页启用它。" -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 msgid "Added custom service" msgstr "已添加的自定义服务" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "此服务已存在" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 msgid "Custom Services" msgstr "定制服务" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 #, fuzzy #| msgid "Custom Services" msgid "Add Custom Service" msgstr "定制服务" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "连接到 %(backend_host)s:%(backend_port)s" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "删除此服务" @@ -5116,13 +5114,18 @@ msgid "" "finished before shutting down or restarting." msgstr "" -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" -msgstr "重新启动 »" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +#, fuzzy +#| msgid "Restart Now" +msgid "Restart" +msgstr "现在重新启动" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" -msgstr "关闭 »" +#, fuzzy +#| msgid "Shut Down Now" +msgid "Shut Down" +msgstr "现在关闭" #: plinth/modules/power/templates/power_restart.html:17 msgid "" @@ -5479,23 +5482,23 @@ msgstr "" msgid "Dolphin" msgstr "" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 #, fuzzy #| msgid "Shared" msgid "Shares" msgstr "共享" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 msgid "" "Note: Only specially created directories will be shared on selected disks, " "not the whole disk." msgstr "" -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 msgid "VFAT partitions are not supported" msgstr "" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the users module page." msgstr "" -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 msgid "Users who can currently access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 msgid "" "Users needing to re-enter their password on the password change page to " "access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 #, fuzzy #| msgid "Available Domains" msgid "Unavailable Shares" msgstr "可用域名" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." msgstr "" -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 #, fuzzy #| msgid "Shared" msgid "Share name" msgstr "共享" -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 #, fuzzy #| msgid "Actions" msgid "Action" @@ -5663,27 +5666,27 @@ msgid "" "services." msgstr "" -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 #, fuzzy #| msgid "Security" msgid "Show security report" msgstr "安全" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "" -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5729,21 +5732,21 @@ msgid "" "running." msgstr "" -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 #, fuzzy #| msgid "Name" msgid "App Name" msgstr "名称" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 msgid "Current Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 msgid "Past Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 #, fuzzy #| msgid "" #| "Block Sandbox \n" @@ -5753,7 +5756,7 @@ msgstr "" "方块沙盒\n" "(Minetest)" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 #, fuzzy #| msgid "" #| "Block Sandbox \n" @@ -5763,21 +5766,21 @@ msgstr "" "方块沙盒\n" "(Minetest)" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 msgid "N/A" msgstr "" -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 #, fuzzy #| msgid "yes" msgid "Yes" msgstr "是的" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 msgid "No" msgstr "" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 #, fuzzy #| msgid "is not running" msgid "Not running" @@ -5943,34 +5946,34 @@ msgstr "此服务已存在" msgid "Shares should be either public or shared with at least one group" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 #, fuzzy #| msgid "Add Service" msgid "Add share" msgstr "添加服务" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "" -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 #, fuzzy #| msgid "Shared" msgid "Shared Over" msgstr "共享" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 #, fuzzy #| msgid "Groups" msgid "With Groups" msgstr "群組" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "" @@ -6125,43 +6128,43 @@ msgstr "" msgid "Delete the following snapshots permanently?" msgstr "永久删除此快照?" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "编号" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "日期" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 #, fuzzy #| msgid "Delete Snapshot" msgid "Delete Snapshots" msgstr "删除快照" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 msgid "Create Snapshot" msgstr "创建快照" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "回滚" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 msgid "will be used at next boot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "回滚到快照 #%(number)s" @@ -6186,7 +6189,7 @@ msgstr "" "将自动创建具有文件系统当前状态的新快照。您可以通过还原到新创建的快照来撤销回" "滚。" -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "回滚到快照 #%(number)s" @@ -6286,11 +6289,11 @@ msgid "" "client matches one of these fingerprints." msgstr "" -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 #, fuzzy #| msgid "SSH Fingerprint" msgid "Fingerprint" @@ -6489,29 +6492,29 @@ msgstr "共享" msgid "Other directory (specify below)" msgstr "" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 #, fuzzy #| msgid "The following disks are in use:" msgid "The following storage devices are in use:" msgstr "正在使用以下磁盘:" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "挂载点" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 msgid "Used" msgstr "已使用" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -6521,13 +6524,13 @@ msgstr "" "这里有 %(expandable_root_size)s 未分配的空间可用在你的根分区。可以扩展根分区" "以使用这个空间。这可以让你有更多空间来存储文件。" -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "扩展根分区" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -6638,29 +6641,29 @@ msgstr "" msgid "Local introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 #, fuzzy #| msgid "Name" msgid "Pet Name" msgstr "名称" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 #, fuzzy #| msgid "Address" msgid "Add" msgstr "地址" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "" @@ -6824,21 +6827,21 @@ msgstr "" msgid "Tor configuration is being updated" msgstr "Tor 配置已更新" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 #, fuzzy #| msgid "Hidden Service" msgid "Onion Service" msgstr "隐藏的服务" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 msgid "Ports" msgstr "端口" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 msgid "Relay" msgstr "网桥" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, python-format msgid "" "If your %(box_name)s is behind a router or firewall, you should make sure " @@ -6938,7 +6941,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 msgid "Update" @@ -6979,7 +6982,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "" @@ -6999,11 +7002,11 @@ msgid "" "cannot be deactivated." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 msgid "Updating, please wait..." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 #, fuzzy #| msgid "" @@ -7020,7 +7023,7 @@ msgstr "" "装其它软件包。升级期间,此 web 界面可能暂时不可用并显示错误消息。刷新页面后," "可以继续。" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, fuzzy, python-format #| msgid "%(box_name)s Setup" msgid "" @@ -7047,35 +7050,35 @@ msgstr "" msgid "Dismiss" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, fuzzy, python-format #| msgid "There is a new version available." msgid "There is a new %(box_name)s version available." msgstr "有新版本可用" -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 #, fuzzy #| msgid "FreedomBox" msgid "Your Freedombox needs an update!" msgstr "FreedomBox" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -7083,19 +7086,19 @@ msgid "" "\"%(snapshot_url)s\">Storage Snapshots before continuing." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 #, fuzzy #| msgid "Last update" msgid "Manual Update" msgstr "最后一次更新" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 #, fuzzy #| msgid "Update" msgid "Update now" msgstr "更新" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 #, fuzzy #| msgid "" #| "Depending on the number of packages to install, this may take a long time " @@ -7111,7 +7114,7 @@ msgstr "" "装其它软件包。升级期间,此 web 界面可能暂时不可用并显示错误消息。刷新页面后," "可以继续。" -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 msgid "Show recent update logs" msgstr "" @@ -7312,8 +7315,8 @@ msgstr "保存密码" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "创建用户" @@ -7370,21 +7373,21 @@ msgid "" "step." msgstr "" -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "用户" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "删除用户 %(username)s" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "编辑用户 %(username)s" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "删除用户 %(username)s" + #: plinth/modules/users/templates/users_update.html:11 #, fuzzy, python-format #| msgid "Edit user %(username)s" @@ -7461,8 +7464,8 @@ msgstr "无效的 Kite 名称" #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 #, fuzzy #| msgid "Publish Key" msgid "Public Key" @@ -7555,7 +7558,7 @@ msgid "Allowed IPs" msgstr "" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 #, fuzzy #| msgid "Create Connection" msgid "Last Connected Time" @@ -7566,25 +7569,25 @@ msgstr "创建连接" msgid "No peers configured to connect to this %(box_name)s yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, python-format msgid "Public key for this %(box_name)s:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 msgid "Not configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 msgid "Add a new peer" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 #, fuzzy #| msgid "" #| "Chat Client \n" @@ -7594,27 +7597,27 @@ msgstr "" "聊天客户端\n" "(JSXC)" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 #, fuzzy #| msgid "Authentication to remote server failed." msgid "No connections to remote servers are configured yet." msgstr "远程服务器认证失败。" -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 #, fuzzy #| msgid "Add Connection" @@ -7662,44 +7665,44 @@ msgid "" "is configured with the following information." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 #, fuzzy #| msgid "Server domain" msgid "Server endpoints:" msgstr "服务器域" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 #, fuzzy #| msgid "Select verified SSH public key" msgid "Server public key:" msgstr "选择经过验证的 SSH 公钥" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "" @@ -7711,17 +7714,17 @@ msgid "" "public key and IP address." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 #, fuzzy #| msgid "Server domain" msgid "Server endpoint:" msgstr "服务器域" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "" @@ -7907,56 +7910,64 @@ msgstr "安装" msgid "Service %(service_name)s is not running." msgstr "服务发现服务未运行" -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, fuzzy, python-format #| msgid "Plinth administrative interface for the %(box_name)s" msgid "Core functionality and web interface for %(box_name)s" msgstr "Plinth %(box_name)s 管理界面" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" -msgstr "切换导航" +#: plinth/templates/base.html:107 +#, fuzzy +#| msgid "Home" +msgid " Home" +msgstr "主页" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "主页" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +#, fuzzy +#| msgid "Apps" +msgid " Apps" +msgstr "应用程序" + +#: plinth/templates/base.html:119 msgid "Apps" msgstr "应用程序" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +#, fuzzy +#| msgid "System" +msgid " System" +msgstr "系统" + +#: plinth/templates/base.html:128 msgid "System" msgstr "系统" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "更改密码" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -#, fuzzy -#| msgid "Restart Now" -msgid "Restart" -msgstr "现在重新启动" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 #, fuzzy #| msgid "Shut Down Now" msgid "Shut down" msgstr "现在关闭" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "登出" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 #, fuzzy #| msgid "Language" msgid "Select language" msgstr "语言" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "登录" @@ -8036,7 +8047,7 @@ msgstr "" msgid "RPM:" msgstr "" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -8051,10 +8062,6 @@ msgid "" msgstr "" "启用一些应用程序来将其快捷方式放到此页面。" -#: plinth/templates/index.html:46 -msgid "Configure »" -msgstr "配置 »;" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -8087,7 +8094,7 @@ msgstr "主页" msgid "Source Code" msgstr "源代码" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "捐赠" @@ -8124,6 +8131,10 @@ msgid "" "%(interface_list)s" msgstr "" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 #, fuzzy #| msgid "No certificate" @@ -8159,17 +8170,17 @@ msgid "" "your router. You should forward the following ports for %(service_name)s:" msgstr "" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 #, fuzzy #| msgid "protocol" msgid "Protocol" msgstr "协议" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, fuzzy, python-format #| msgid "%(box_name)s Setup" msgid "To %(box_name)s Ports" @@ -8223,6 +8234,24 @@ msgstr "已完成 %(percentage)s%%" msgid "Gujarati" msgstr "古吉拉特语" +#~ msgid "Show Ports" +#~ msgstr "显示端口" + +#~ msgid "Learn more »" +#~ msgstr "了解更多»" + +#~ msgid "Restart »" +#~ msgstr "重新启动 »" + +#~ msgid "Shut Down »" +#~ msgstr "关闭 »" + +#~ msgid "Toggle navigation" +#~ msgstr "切换导航" + +#~ msgid "Configure »" +#~ msgstr "配置 »;" + #~ msgid "Show connection %(connection.name)s" #~ msgstr "显示连接 %(connection.name)s" @@ -8740,16 +8769,6 @@ msgstr "古吉拉特语" #~ "回收可用空间。通过访问文件系统中的“.snapshots”目录,可以访问旧快照中的单个" #~ "文件。快照功能不能替代备份。" -#, fuzzy -#~| msgid "Apps" -#~ msgid " Apps" -#~ msgstr "应用程序" - -#, fuzzy -#~| msgid "System" -#~ msgid " System" -#~ msgstr "系统" - #, fuzzy #~| msgid "Kite name" #~ msgid "Archive name" diff --git a/plinth/locale/zh_Hant/LC_MESSAGES/django.po b/plinth/locale/zh_Hant/LC_MESSAGES/django.po index 90c971ba9..31b3360be 100644 --- a/plinth/locale/zh_Hant/LC_MESSAGES/django.po +++ b/plinth/locale/zh_Hant/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-14 18:42-0500\n" +"POT-Creation-Date: 2020-12-28 20:10-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -90,8 +90,8 @@ msgid "Apache HTTP Server" msgstr "" #: plinth/modules/apache/__init__.py:44 -#: plinth/modules/monkeysphere/templates/monkeysphere.html:67 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:45 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:49 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:46 msgid "Web Server" msgstr "" @@ -147,11 +147,11 @@ msgid "Repository" msgstr "" #: plinth/modules/backups/forms.py:52 -#: plinth/modules/backups/templates/backups_delete.html:18 +#: plinth/modules/backups/templates/backups_delete.html:17 #: plinth/modules/ikiwiki/forms.py:15 -#: plinth/modules/networks/templates/connection_show.html:63 -#: plinth/modules/samba/templates/samba.html:77 -#: plinth/modules/sharing/templates/sharing.html:37 +#: plinth/modules/networks/templates/connection_show.html:58 +#: plinth/modules/samba/templates/samba.html:66 +#: plinth/modules/sharing/templates/sharing.html:33 msgid "Name" msgstr "" @@ -315,40 +315,40 @@ msgstr "" msgid "{box_name} storage" msgstr "" -#: plinth/modules/backups/templates/backups.html:30 +#: plinth/modules/backups/templates/backups.html:17 #: plinth/modules/backups/views.py:61 msgid "Create a new backup" msgstr "" -#: plinth/modules/backups/templates/backups.html:34 +#: plinth/modules/backups/templates/backups.html:21 msgid "Create Backup" msgstr "" -#: plinth/modules/backups/templates/backups.html:37 +#: plinth/modules/backups/templates/backups.html:24 msgid "Upload and restore a backup archive" msgstr "" -#: plinth/modules/backups/templates/backups.html:41 +#: plinth/modules/backups/templates/backups.html:28 msgid "Upload and Restore" msgstr "" -#: plinth/modules/backups/templates/backups.html:44 +#: plinth/modules/backups/templates/backups.html:31 msgid "Add a backup location" msgstr "" -#: plinth/modules/backups/templates/backups.html:48 +#: plinth/modules/backups/templates/backups.html:35 msgid "Add Backup Location" msgstr "" -#: plinth/modules/backups/templates/backups.html:51 +#: plinth/modules/backups/templates/backups.html:38 msgid "Add a remote backup location" msgstr "" -#: plinth/modules/backups/templates/backups.html:55 +#: plinth/modules/backups/templates/backups.html:42 msgid "Add Remote Backup Location" msgstr "" -#: plinth/modules/backups/templates/backups.html:58 +#: plinth/modules/backups/templates/backups.html:46 msgid "Existing Backups" msgstr "" @@ -373,11 +373,11 @@ msgstr "" msgid "Delete this archive permanently?" msgstr "" -#: plinth/modules/backups/templates/backups_delete.html:19 +#: plinth/modules/backups/templates/backups_delete.html:18 msgid "Time" msgstr "" -#: plinth/modules/backups/templates/backups_delete.html:36 +#: plinth/modules/backups/templates/backups_delete.html:34 #, python-format msgid "Delete Archive %(name)s" msgstr "" @@ -719,13 +719,13 @@ msgid "List" msgstr "" #: plinth/modules/bepasty/views.py:53 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:91 -#: plinth/modules/networks/templates/connection_show.html:48 -#: plinth/modules/samba/templates/samba.html:163 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:86 +#: plinth/modules/networks/templates/connection_show.html:43 +#: plinth/modules/samba/templates/samba.html:154 #: plinth/modules/wireguard/templates/wireguard_delete_client.html:24 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:33 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:73 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:74 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:77 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:78 msgid "Delete" msgstr "" @@ -800,35 +800,35 @@ msgstr "" msgid "Serving Domains" msgstr "" -#: plinth/modules/bind/templates/bind.html:16 +#: plinth/modules/bind/templates/bind.html:17 #: plinth/modules/ikiwiki/forms.py:12 -#: plinth/modules/names/templates/names.html:14 -#: plinth/modules/networks/templates/connection_show.html:83 -#: plinth/modules/samba/templates/samba.html:76 -#: plinth/modules/storage/templates/storage.html:28 +#: plinth/modules/names/templates/names.html:15 +#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/samba/templates/samba.html:65 +#: plinth/modules/storage/templates/storage.html:26 msgid "Type" msgstr "" -#: plinth/modules/bind/templates/bind.html:17 +#: plinth/modules/bind/templates/bind.html:18 msgid "Domain Names" msgstr "" -#: plinth/modules/bind/templates/bind.html:18 +#: plinth/modules/bind/templates/bind.html:19 msgid "Serving" msgstr "" -#: plinth/modules/bind/templates/bind.html:19 +#: plinth/modules/bind/templates/bind.html:20 msgid "IP addresses" msgstr "" -#: plinth/modules/bind/templates/bind.html:35 #: plinth/modules/bind/templates/bind.html:37 +#: plinth/modules/bind/templates/bind.html:39 msgid "Refresh IP address and domains" msgstr "" #: plinth/modules/bind/views.py:71 plinth/modules/coturn/views.py:39 #: plinth/modules/deluge/views.py:42 plinth/modules/dynamicdns/views.py:154 -#: plinth/modules/mumble/views.py:28 plinth/modules/pagekite/forms.py:90 +#: plinth/modules/mumble/views.py:28 plinth/modules/pagekite/forms.py:76 #: plinth/modules/quassel/views.py:29 plinth/modules/shadowsocks/views.py:59 #: plinth/modules/transmission/views.py:47 msgid "Configuration updated" @@ -896,29 +896,29 @@ msgstr "" msgid "Delete %(name)s" msgstr "" -#: plinth/modules/calibre/templates/calibre.html:23 +#: plinth/modules/calibre/templates/calibre.html:11 msgid "Manage Libraries" msgstr "" -#: plinth/modules/calibre/templates/calibre.html:27 -#: plinth/modules/calibre/templates/calibre.html:29 +#: plinth/modules/calibre/templates/calibre.html:15 +#: plinth/modules/calibre/templates/calibre.html:17 msgid "Create Library" msgstr "" -#: plinth/modules/calibre/templates/calibre.html:36 +#: plinth/modules/calibre/templates/calibre.html:24 msgid "No libraries available." msgstr "" -#: plinth/modules/calibre/templates/calibre.html:43 -#, python-format -msgid "Delete library %(library)s" -msgstr "" - -#: plinth/modules/calibre/templates/calibre.html:49 +#: plinth/modules/calibre/templates/calibre.html:31 #, python-format msgid "Go to library %(library)s" msgstr "" +#: plinth/modules/calibre/templates/calibre.html:37 +#, python-format +msgid "Delete library %(library)s" +msgstr "" + #: plinth/modules/calibre/views.py:39 msgid "Library created." msgstr "" @@ -995,16 +995,17 @@ msgid "General Configuration" msgstr "" #: plinth/modules/config/__init__.py:59 plinth/modules/dynamicdns/views.py:29 -#: plinth/modules/names/templates/names.html:29 -#: plinth/modules/names/templates/names.html:43 +#: plinth/modules/names/templates/names.html:30 +#: plinth/modules/names/templates/names.html:44 #: plinth/modules/snapshot/views.py:37 #: plinth/modules/tahoe/templates/tahoe-pre-setup.html:24 +#: plinth/templates/index.html:46 msgid "Configure" msgstr "" #: plinth/modules/config/__init__.py:63 plinth/modules/config/forms.py:68 #: plinth/modules/dynamicdns/forms.py:97 -#: plinth/modules/names/templates/names.html:15 +#: plinth/modules/names/templates/names.html:16 msgid "Domain Name" msgstr "" @@ -1283,8 +1284,7 @@ msgid "Low Memory" msgstr "" #: plinth/modules/diagnostics/templates/diagnostics.html:17 -#: plinth/modules/diagnostics/templates/diagnostics_button.html:13 -#: plinth/modules/diagnostics/templates/diagnostics_button.html:16 +#: plinth/modules/diagnostics/templates/diagnostics_button.html:11 msgid "Run Diagnostics" msgstr "" @@ -1317,11 +1317,11 @@ msgstr "" msgid "This app does not support diagnostics" msgstr "" -#: plinth/modules/diagnostics/templates/diagnostics_results.html:10 +#: plinth/modules/diagnostics/templates/diagnostics_results.html:11 msgid "Test" msgstr "" -#: plinth/modules/diagnostics/templates/diagnostics_results.html:11 +#: plinth/modules/diagnostics/templates/diagnostics_results.html:12 msgid "Result" msgstr "" @@ -1368,6 +1368,13 @@ msgid "" "href=\"https://diaspora.%(domain_name)s\"> diaspora.%(domain_name)s " msgstr "" +#: plinth/modules/diaspora/templates/diaspora-pre-setup.html:36 +#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 +#: plinth/modules/snapshot/templates/snapshot.html:12 +#: plinth/templates/app.html:46 +msgid "Configuration" +msgstr "" + #: plinth/modules/diaspora/templates/diaspora-pre-setup.html:43 #: plinth/modules/dynamicdns/templates/dynamicdns_configure.html:25 #: plinth/modules/ikiwiki/templates/ikiwiki_create.html:18 @@ -1590,16 +1597,16 @@ msgid "About" msgstr "" #: plinth/modules/dynamicdns/views.py:32 -#: plinth/modules/firewall/templates/firewall.html:10 -#: plinth/modules/firewall/templates/firewall.html:30 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:23 -#: plinth/modules/networks/templates/connection_show.html:246 -#: plinth/modules/samba/templates/samba.html:78 +#: plinth/modules/firewall/templates/firewall.html:16 +#: plinth/modules/firewall/templates/firewall.html:36 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:17 +#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/samba/templates/samba.html:67 #: plinth/modules/tor/templates/tor.html:12 -#: plinth/modules/tor/templates/tor.html:26 -#: plinth/modules/upgrades/templates/upgrades_configure.html:30 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:46 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:45 +#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/upgrades/templates/upgrades_configure.html:19 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:48 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:47 msgid "Status" msgstr "" @@ -1729,7 +1736,7 @@ msgstr "" msgid "Port {name} ({details}) unavailable for external networks" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:15 +#: plinth/modules/firewall/templates/firewall.html:21 #, python-format msgid "" "Firewall daemon is not running. Please run it. Firewall comes enabled by " @@ -1738,57 +1745,53 @@ msgid "" "system with systemd 'systemctl start firewalld'." msgstr "" -#: plinth/modules/firewall/templates/firewall.html:28 -msgid "Show Ports" -msgstr "" - -#: plinth/modules/firewall/templates/firewall.html:29 +#: plinth/modules/firewall/templates/firewall.html:35 msgid "Service/Port" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:48 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:74 +#: plinth/modules/firewall/templates/firewall.html:54 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:69 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:28 msgid "Enabled" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:51 -#: plinth/modules/letsencrypt/templates/letsencrypt.html:76 +#: plinth/modules/firewall/templates/firewall.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/networks/forms.py:48 plinth/modules/snapshot/forms.py:23 #: plinth/modules/snapshot/forms.py:29 plinth/templates/cards.html:34 msgid "Disabled" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:67 +#: plinth/modules/firewall/templates/firewall.html:72 msgid "Permitted" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:70 +#: plinth/modules/firewall/templates/firewall.html:75 msgid "Permitted (internal only)" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:73 +#: plinth/modules/firewall/templates/firewall.html:78 msgid "Permitted (external only)" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:76 +#: plinth/modules/firewall/templates/firewall.html:81 msgid "Blocked" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:88 +#: plinth/modules/firewall/templates/firewall.html:94 msgid "" "The operation of the firewall is automatic. When you enable a service it is " "also permitted in the firewall and when you disable a service it is also " "disabled in the firewall." msgstr "" -#: plinth/modules/firewall/templates/firewall.html:96 -#: plinth/modules/networks/templates/networks_configuration.html:49 -#: plinth/modules/storage/templates/storage.html:94 +#: plinth/modules/firewall/templates/firewall.html:102 +#: plinth/modules/networks/templates/networks_configuration.html:22 +#: plinth/modules/storage/templates/storage.html:93 msgid "Advanced" msgstr "" -#: plinth/modules/firewall/templates/firewall.html:98 +#: plinth/modules/firewall/templates/firewall.html:104 msgid "" "Advanced firewall operations such as opening custom ports are provided by " "the Cockpit app." @@ -1826,7 +1829,7 @@ msgid "" "modify it if necessary." msgstr "" -#: plinth/modules/first_boot/templates/firstboot_welcome.html:37 +#: plinth/modules/first_boot/templates/firstboot_welcome.html:29 msgid "Start Setup" msgstr "" @@ -1919,31 +1922,31 @@ msgstr "" msgid "Git" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:31 +#: plinth/modules/gitweb/templates/gitweb_configure.html:13 msgid "Manage Repositories" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:35 -#: plinth/modules/gitweb/templates/gitweb_configure.html:37 +#: plinth/modules/gitweb/templates/gitweb_configure.html:17 +#: plinth/modules/gitweb/templates/gitweb_configure.html:19 msgid "Create repository" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:44 +#: plinth/modules/gitweb/templates/gitweb_configure.html:26 msgid "No repositories available." msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:52 +#: plinth/modules/gitweb/templates/gitweb_configure.html:35 #, python-format -msgid "Delete repository %(repo.name)s" +msgid "Go to repository %(repo.name)s" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:68 +#: plinth/modules/gitweb/templates/gitweb_configure.html:42 msgid "Cloning…" msgstr "" -#: plinth/modules/gitweb/templates/gitweb_configure.html:73 +#: plinth/modules/gitweb/templates/gitweb_configure.html:59 #, python-format -msgid "Go to repository %(repo.name)s" +msgid "Delete repository %(repo.name)s" msgstr "" #: plinth/modules/gitweb/templates/gitweb_delete.html:12 @@ -2003,6 +2006,25 @@ msgid "Contribute" msgstr "" #: plinth/modules/help/templates/help_about.html:17 +#: plinth/modules/upgrades/templates/upgrades_configure.html:31 +#, python-format +msgid "You are running %(os_release)s and %(box_name)s version %(version)s." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:23 +#, python-format +msgid "" +"There is a new %(box_name)s version available." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:28 +#: plinth/modules/upgrades/templates/upgrades_configure.html:42 +#, python-format +msgid "%(box_name)s is up to date." +msgstr "" + +#: plinth/modules/help/templates/help_about.html:35 #, python-format msgid "" "%(box_name)s is a community project to develop, design and promote personal " @@ -2014,7 +2036,7 @@ msgid "" "your data stays with you." msgstr "" -#: plinth/modules/help/templates/help_about.html:30 +#: plinth/modules/help/templates/help_about.html:48 msgid "" "We live in a world where our use of the network is mediated by those who " "often do not have our best interests at heart. By building software that " @@ -2024,7 +2046,7 @@ msgid "" "returning the Internet to its intended peer-to-peer architecture." msgstr "" -#: plinth/modules/help/templates/help_about.html:43 +#: plinth/modules/help/templates/help_about.html:61 #, python-format msgid "" "There are a number of projects working to realize a future of distributed " @@ -2032,34 +2054,15 @@ msgid "" "package." msgstr "" -#: plinth/modules/help/templates/help_about.html:51 +#: plinth/modules/help/templates/help_about.html:69 #, python-format msgid "" "For more information about the %(box_name)s project, see the %(box_name)s Wiki." msgstr "" -#: plinth/modules/help/templates/help_about.html:60 -msgid "Learn more »" -msgstr "" - -#: plinth/modules/help/templates/help_about.html:63 -#: plinth/modules/upgrades/templates/upgrades_configure.html:42 -#, python-format -msgid "You are running %(os_release)s and %(box_name)s version %(version)s." -msgstr "" - -#: plinth/modules/help/templates/help_about.html:69 -#, python-format -msgid "" -"There is a new %(box_name)s version available." -msgstr "" - -#: plinth/modules/help/templates/help_about.html:74 -#: plinth/modules/upgrades/templates/upgrades_configure.html:53 -#, python-format -msgid "%(box_name)s is up to date." +#: plinth/modules/help/templates/help_about.html:78 +msgid "Learn more" msgstr "" #: plinth/modules/help/templates/help_base.html:21 @@ -2125,7 +2128,7 @@ msgid "Thank you!" msgstr "" #: plinth/modules/help/templates/help_index.html:12 -#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:13 +#: plinth/templates/help-menu.html:8 plinth/templates/help-menu.html:14 msgid "Help" msgstr "" @@ -2161,7 +2164,7 @@ msgid "" "channel using the IRC web interface." msgstr "" -#: plinth/modules/help/templates/help_manual.html:25 +#: plinth/modules/help/templates/help_manual.html:18 msgid "Download as PDF" msgstr "" @@ -2339,16 +2342,16 @@ msgstr "" msgid "No wikis or blogs available." msgstr "" -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:33 -#, python-format -msgid "Delete site %(site)s" -msgstr "" - -#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:39 +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:31 #, python-format msgid "Go to site %(site)s" msgstr "" +#: plinth/modules/ikiwiki/templates/ikiwiki_configure.html:38 +#, python-format +msgid "Delete site %(site)s" +msgstr "" + #: plinth/modules/ikiwiki/templates/ikiwiki_delete.html:12 #, python-format msgid "Delete Wiki or Blog %(name)s" @@ -2439,8 +2442,8 @@ msgstr "" msgid "Chat Client" msgstr "" -#: plinth/modules/jsxc/templates/jsxc_launch.html:118 -#: plinth/templates/base.html:248 +#: plinth/modules/jsxc/templates/jsxc_launch.html:117 +#: plinth/templates/base.html:247 msgid "JavaScript license information" msgstr "" @@ -2470,63 +2473,63 @@ msgstr "" msgid "Certificates" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:29 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:24 msgid "Domain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:25 msgid "Certificate Status" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:31 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:26 msgid "Website Security" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:32 -#: plinth/modules/storage/templates/storage.html:30 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:27 +#: plinth/modules/storage/templates/storage.html:28 msgid "Actions" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:42 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:37 #, python-format msgid "Valid, expires on %(expiry_date)s" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:49 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:44 msgid "Revoked" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:53 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:48 #, python-format msgid "Expired on %(expiry_date)s" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:57 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:52 msgid "Invalid test certificate" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:61 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:56 #, python-format msgid "Invalid (%(reason)s)" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:68 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:63 msgid "No certificate" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:85 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:80 msgid "Re-obtain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:98 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:93 msgid "Revoke" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:106 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:101 msgid "Obtain" msgstr "" -#: plinth/modules/letsencrypt/templates/letsencrypt.html:117 +#: plinth/modules/letsencrypt/templates/letsencrypt.html:112 #, python-format msgid "" "No domains have been configured. Configure " @@ -2603,12 +2606,6 @@ msgstr "" msgid "Element" msgstr "" -#: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 -#: plinth/modules/snapshot/templates/snapshot.html:12 -#: plinth/templates/app.html:46 -msgid "Configuration" -msgstr "" - #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:18 msgid "" "Matrix service needs to be configured for a domain. Users on other Matrix " @@ -2693,51 +2690,51 @@ msgstr "" msgid "Wiki" msgstr "" -#: plinth/modules/mediawiki/forms.py:50 +#: plinth/modules/mediawiki/forms.py:52 msgid "Administrator Password" msgstr "" -#: plinth/modules/mediawiki/forms.py:51 +#: plinth/modules/mediawiki/forms.py:53 msgid "" "Set a new password for MediaWiki's administrator account (admin). Leave this " "field blank to keep the current password." msgstr "" -#: plinth/modules/mediawiki/forms.py:56 +#: plinth/modules/mediawiki/forms.py:58 msgid "Server URL" msgstr "" -#: plinth/modules/mediawiki/forms.py:57 +#: plinth/modules/mediawiki/forms.py:59 msgid "" "Used by MediaWiki to generate URLs that point to the wiki such as in footer, " "feeds and emails." msgstr "" -#: plinth/modules/mediawiki/forms.py:62 +#: plinth/modules/mediawiki/forms.py:64 msgid "Enable public registrations" msgstr "" -#: plinth/modules/mediawiki/forms.py:63 +#: plinth/modules/mediawiki/forms.py:65 msgid "" "If enabled, anyone on the internet will be able to create an account on your " "MediaWiki instance." msgstr "" -#: plinth/modules/mediawiki/forms.py:67 +#: plinth/modules/mediawiki/forms.py:69 msgid "Enable private mode" msgstr "" -#: plinth/modules/mediawiki/forms.py:68 +#: plinth/modules/mediawiki/forms.py:70 msgid "" "If enabled, access will be restricted. Only people who have accounts can " "read/write to the wiki. Public registrations will also be disabled." msgstr "" -#: plinth/modules/mediawiki/forms.py:73 +#: plinth/modules/mediawiki/forms.py:75 msgid "Default Skin" msgstr "" -#: plinth/modules/mediawiki/forms.py:74 +#: plinth/modules/mediawiki/forms.py:76 msgid "" "Choose a default skin for your MediaWiki installation. Users have the option " "to select their preferred skin." @@ -2825,13 +2822,13 @@ msgstr "" msgid "When disabled, players cannot die or receive damage of any kind." msgstr "" -#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/minetest/templates/minetest.html:17 #: plinth/modules/networks/forms.py:50 plinth/modules/networks/forms.py:81 msgid "Address" msgstr "" -#: plinth/modules/minetest/templates/minetest.html:19 -#: plinth/modules/tor/templates/tor.html:71 +#: plinth/modules/minetest/templates/minetest.html:18 +#: plinth/modules/tor/templates/tor.html:72 msgid "Port" msgstr "" @@ -2979,109 +2976,108 @@ msgstr "" msgid "Monkeysphere" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:39 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:20 msgid "Publishing key to keyserver..." msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:46 -#: plinth/modules/users/templates/users_delete.html:26 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:27 msgid "Cancel" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:54 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:40 -#: plinth/modules/tor/templates/tor.html:70 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:41 +#: plinth/modules/tor/templates/tor.html:71 msgid "Service" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:55 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:37 msgid "Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:56 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:16 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:38 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:17 msgid "OpenPGP Fingerprint" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:65 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:43 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:44 #: plinth/modules/names/components.py:24 msgid "Secure Shell" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:69 -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:47 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:51 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:48 msgid "Other" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:106 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:88 #, python-format msgid "Show details for key %(fingerprint)s" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:112 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:94 msgid "-" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:123 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:105 msgid "Import Key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:133 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:115 msgid "Publish Key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere.html:143 +#: plinth/modules/monkeysphere/templates/monkeysphere.html:125 msgid "Add Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:20 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:21 msgid "OpenPGP User IDs" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:24 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:25 msgid "Key Import Date" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:28 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:29 msgid "SSH Key Type" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:32 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:33 msgid "SSH Key Size" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:36 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:37 msgid "SSH Fingerprint" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:52 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:53 msgid "Key File" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:56 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:57 msgid "Available Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:60 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:61 msgid "Added Domains" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:67 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:69 msgid "" "After this key is published to the keyservers, it can be signed using GnuPG with the following commands:" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:73 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:75 msgid "Download the key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:76 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:78 msgid "Sign the key" msgstr "" -#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:79 +#: plinth/modules/monkeysphere/templates/monkeysphere_details.html:81 msgid "Send the key back to the keyservers" msgstr "" @@ -3169,7 +3165,7 @@ msgstr "" msgid "All web apps" msgstr "" -#: plinth/modules/names/templates/names.html:16 +#: plinth/modules/names/templates/names.html:17 msgid "Services" msgstr "" @@ -3256,8 +3252,8 @@ msgid "" msgstr "" #: plinth/modules/networks/forms.py:58 plinth/modules/networks/forms.py:88 -#: plinth/modules/networks/templates/connection_show.html:187 -#: plinth/modules/networks/templates/connection_show.html:226 +#: plinth/modules/networks/templates/connection_show.html:180 +#: plinth/modules/networks/templates/connection_show.html:221 msgid "Gateway" msgstr "" @@ -3333,7 +3329,7 @@ msgid "-- select --" msgstr "" #: plinth/modules/networks/forms.py:238 -#: plinth/modules/networks/templates/connection_show.html:129 +#: plinth/modules/networks/templates/connection_show.html:122 msgid "SSID" msgstr "" @@ -3342,7 +3338,7 @@ msgid "The visible name of the network." msgstr "" #: plinth/modules/networks/forms.py:241 -#: plinth/modules/networks/templates/connection_show.html:142 +#: plinth/modules/networks/templates/connection_show.html:135 msgid "Mode" msgstr "" @@ -3371,7 +3367,7 @@ msgid "B/G (2.4 GHz)" msgstr "" #: plinth/modules/networks/forms.py:249 -#: plinth/modules/networks/templates/connection_show.html:158 +#: plinth/modules/networks/templates/connection_show.html:149 msgid "Channel" msgstr "" @@ -3519,179 +3515,179 @@ msgid "" "to be reminded later. Some of the other configuration steps may fail.

" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 +#: plinth/modules/networks/templates/connection_show.html:23 msgid "Edit connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_client.html:68 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:69 -#: plinth/templates/base.html:161 plinth/templates/base.html:162 +#: plinth/modules/networks/templates/connection_show.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:72 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:73 +#: plinth/templates/base.html:156 plinth/templates/base.html:157 msgid "Edit" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:35 -#: plinth/modules/networks/templates/connections_list.html:40 +#: plinth/modules/networks/templates/connection_show.html:30 +#: plinth/modules/networks/templates/connections_list.html:60 msgid "Deactivate" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:42 -#: plinth/modules/networks/templates/connections_list.html:48 +#: plinth/modules/networks/templates/connection_show.html:37 +#: plinth/modules/networks/templates/connections_list.html:67 msgid "Activate" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:48 +#: plinth/modules/networks/templates/connection_show.html:43 msgid "Delete connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:51 -#: plinth/modules/networks/templates/connections_diagram.html:58 -#: plinth/modules/networks/templates/connections_diagram.html:61 -#: plinth/modules/networks/templates/connections_diagram.html:90 -#: plinth/modules/networks/templates/connections_diagram.html:112 +#: plinth/modules/networks/templates/connection_show.html:46 +#: plinth/modules/networks/templates/connections_diagram.html:19 +#: plinth/modules/networks/templates/connections_diagram.html:22 +#: plinth/modules/networks/templates/connections_diagram.html:51 +#: plinth/modules/networks/templates/connections_diagram.html:73 msgid "Connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:56 +#: plinth/modules/networks/templates/connection_show.html:51 msgid "Primary connection" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:58 -#: plinth/modules/networks/templates/connection_show.html:202 -#: plinth/modules/networks/templates/connection_show.html:241 +#: plinth/modules/networks/templates/connection_show.html:53 +#: plinth/modules/networks/templates/connection_show.html:195 +#: plinth/modules/networks/templates/connection_show.html:236 msgid "yes" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:69 -#: plinth/modules/storage/templates/storage.html:25 +#: plinth/modules/networks/templates/connection_show.html:64 +#: plinth/modules/storage/templates/storage.html:23 msgid "Device" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:73 +#: plinth/modules/networks/templates/connection_show.html:68 msgid "State" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:78 +#: plinth/modules/networks/templates/connection_show.html:73 msgid "State reason" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:87 +#: plinth/modules/networks/templates/connection_show.html:82 msgid "MAC address" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:91 +#: plinth/modules/networks/templates/connection_show.html:86 msgid "Interface" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:95 -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 -#: plinth/modules/snapshot/templates/snapshot_manage.html:31 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 +#: plinth/modules/networks/templates/connection_show.html:90 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:19 +#: plinth/modules/snapshot/templates/snapshot_manage.html:29 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:27 msgid "Description" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:101 +#: plinth/modules/networks/templates/connection_show.html:96 msgid "Physical Link" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:106 +#: plinth/modules/networks/templates/connection_show.html:101 msgid "Link state" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:110 +#: plinth/modules/networks/templates/connection_show.html:104 msgid "cable is connected" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:113 +#: plinth/modules/networks/templates/connection_show.html:107 msgid "please check cable" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:118 -#: plinth/modules/networks/templates/connection_show.html:134 +#: plinth/modules/networks/templates/connection_show.html:111 +#: plinth/modules/networks/templates/connection_show.html:127 msgid "Speed" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:120 +#: plinth/modules/networks/templates/connection_show.html:113 #, python-format msgid "%(ethernet_speed)s Mbit/s" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:136 +#: plinth/modules/networks/templates/connection_show.html:129 #, python-format msgid "%(wireless_bitrate)s Mbit/s" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:148 +#: plinth/modules/networks/templates/connection_show.html:141 msgid "Signal strength" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:166 +#: plinth/modules/networks/templates/connection_show.html:157 msgid "IPv4" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:171 -#: plinth/modules/networks/templates/connection_show.html:212 +#: plinth/modules/networks/templates/connection_show.html:162 +#: plinth/modules/networks/templates/connection_show.html:205 #: plinth/modules/shadowsocks/forms.py:48 msgid "Method" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:178 -#: plinth/modules/networks/templates/connection_show.html:219 +#: plinth/modules/networks/templates/connection_show.html:171 +#: plinth/modules/networks/templates/connection_show.html:212 msgid "IP address" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:194 -#: plinth/modules/networks/templates/connection_show.html:233 +#: plinth/modules/networks/templates/connection_show.html:187 +#: plinth/modules/networks/templates/connection_show.html:228 msgid "DNS server" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:201 -#: plinth/modules/networks/templates/connection_show.html:240 +#: plinth/modules/networks/templates/connection_show.html:194 +#: plinth/modules/networks/templates/connection_show.html:235 #: plinth/modules/storage/forms.py:139 msgid "Default" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:207 +#: plinth/modules/networks/templates/connection_show.html:200 msgid "IPv6" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:248 +#: plinth/modules/networks/templates/connection_show.html:243 msgid "This connection is not active." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:246 #: plinth/modules/security/__init__.py:45 msgid "Security" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:256 -#: plinth/modules/networks/templates/connection_show.html:276 -#: plinth/modules/networks/templates/connection_show.html:295 +#: plinth/modules/networks/templates/connection_show.html:251 +#: plinth/modules/networks/templates/connection_show.html:271 +#: plinth/modules/networks/templates/connection_show.html:290 msgid "Firewall zone" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:265 +#: plinth/modules/networks/templates/connection_show.html:260 msgid "" "This interface should be connected to a local network/machine. If you " "connect this interface to a public network, services meant to be available " "only internally will become available externally. This is a security risk." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:285 -#: plinth/modules/networks/templates/connection_show.html:308 +#: plinth/modules/networks/templates/connection_show.html:280 +#: plinth/modules/networks/templates/connection_show.html:303 msgid "" "This interface should receive your Internet connection. If you connect it to " "a local network/machine, many services meant to available only internally " "will not be available." msgstr "" -#: plinth/modules/networks/templates/connection_show.html:297 -#: plinth/modules/networks/templates/connections_diagram.html:63 +#: plinth/modules/networks/templates/connection_show.html:292 +#: plinth/modules/networks/templates/connections_diagram.html:24 #: plinth/network.py:24 msgid "External" msgstr "" -#: plinth/modules/networks/templates/connection_show.html:304 +#: plinth/modules/networks/templates/connection_show.html:299 #, python-format msgid "" "This interface is not maintained by %(box_name)s. For security, it is " @@ -3712,40 +3708,40 @@ msgstr "" msgid "Delete connection %(name)s permanently?" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:50 +#: plinth/modules/networks/templates/connections_diagram.html:11 msgid "Internet" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:55 -#: plinth/modules/networks/templates/connections_diagram.html:87 +#: plinth/modules/networks/templates/connections_diagram.html:16 +#: plinth/modules/networks/templates/connections_diagram.html:48 msgid "Spacing" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:68 -#: plinth/modules/networks/templates/connections_diagram.html:98 +#: plinth/modules/networks/templates/connections_diagram.html:29 +#: plinth/modules/networks/templates/connections_diagram.html:59 #: plinth/modules/networks/views.py:99 plinth/network.py:27 msgid "Ethernet" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:71 -#: plinth/modules/networks/templates/connections_diagram.html:101 +#: plinth/modules/networks/templates/connections_diagram.html:32 +#: plinth/modules/networks/templates/connections_diagram.html:62 #: plinth/modules/networks/views.py:100 plinth/network.py:28 msgid "Wi-Fi" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:74 -#: plinth/modules/networks/templates/connections_diagram.html:104 -#: plinth/modules/networks/templates/connections_list.html:62 +#: plinth/modules/networks/templates/connections_diagram.html:35 +#: plinth/modules/networks/templates/connections_diagram.html:65 +#: plinth/modules/networks/templates/connections_list.html:43 #, python-format msgid "Show connection %(name)s" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:92 +#: plinth/modules/networks/templates/connections_diagram.html:53 #: plinth/network.py:24 msgid "Internal" msgstr "" -#: plinth/modules/networks/templates/connections_diagram.html:116 +#: plinth/modules/networks/templates/connections_diagram.html:77 msgid "Computer" msgstr "" @@ -3771,19 +3767,19 @@ msgstr "" msgid "Add Connection" msgstr "" -#: plinth/modules/networks/templates/connections_list.html:29 -#, python-format -msgid "Delete connection %(name)s" -msgstr "" - -#: plinth/modules/networks/templates/connections_list.html:54 +#: plinth/modules/networks/templates/connections_list.html:31 msgid "Active" msgstr "" -#: plinth/modules/networks/templates/connections_list.html:57 +#: plinth/modules/networks/templates/connections_list.html:35 msgid "Inactive" msgstr "" +#: plinth/modules/networks/templates/connections_list.html:74 +#, python-format +msgid "Delete connection %(name)s" +msgstr "" + #: plinth/modules/networks/templates/connections_type_select.html:19 msgid "Create..." msgstr "" @@ -3809,8 +3805,8 @@ msgstr "" #: plinth/modules/networks/templates/network_topology_firstboot.html:21 #: plinth/modules/networks/templates/router_configuration_firstboot.html:21 #: plinth/modules/upgrades/templates/backports-firstboot.html:45 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:40 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:43 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:46 #: plinth/modules/upgrades/templates/update-firstboot.html:33 msgid "Next" msgstr "" @@ -3894,7 +3890,7 @@ msgid "" "are no other devices on the network." msgstr "" -#: plinth/modules/networks/templates/networks_configuration.html:51 +#: plinth/modules/networks/templates/networks_configuration.html:24 msgid "" "Advanced networking operations such as bonding, bridging and VLAN management " "are provided by the Cockpit app." @@ -4334,93 +4330,93 @@ msgstr "" msgid "PageKite Domain" msgstr "" -#: plinth/modules/pagekite/forms.py:47 +#: plinth/modules/pagekite/forms.py:32 msgid "Server domain" msgstr "" -#: plinth/modules/pagekite/forms.py:49 +#: plinth/modules/pagekite/forms.py:34 msgid "" "Select your pagekite server. Set \"pagekite.net\" to use the default " "pagekite.net server." msgstr "" -#: plinth/modules/pagekite/forms.py:52 plinth/modules/shadowsocks/forms.py:39 +#: plinth/modules/pagekite/forms.py:37 plinth/modules/shadowsocks/forms.py:39 msgid "Server port" msgstr "" -#: plinth/modules/pagekite/forms.py:53 +#: plinth/modules/pagekite/forms.py:38 msgid "Port of your pagekite server (default: 80)" msgstr "" -#: plinth/modules/pagekite/forms.py:55 +#: plinth/modules/pagekite/forms.py:40 msgid "Kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:56 +#: plinth/modules/pagekite/forms.py:41 msgid "Example: mybox.pagekite.me" msgstr "" -#: plinth/modules/pagekite/forms.py:58 +#: plinth/modules/pagekite/forms.py:43 msgid "Invalid kite name" msgstr "" -#: plinth/modules/pagekite/forms.py:62 +#: plinth/modules/pagekite/forms.py:47 msgid "Kite secret" msgstr "" -#: plinth/modules/pagekite/forms.py:63 +#: plinth/modules/pagekite/forms.py:48 msgid "" "A secret associated with the kite or the default secret for your account if " "no secret is set on the kite." msgstr "" -#: plinth/modules/pagekite/forms.py:100 +#: plinth/modules/pagekite/forms.py:86 msgid "protocol" msgstr "" -#: plinth/modules/pagekite/forms.py:103 +#: plinth/modules/pagekite/forms.py:89 msgid "external (frontend) port" msgstr "" -#: plinth/modules/pagekite/forms.py:106 +#: plinth/modules/pagekite/forms.py:92 msgid "internal (freedombox) port" msgstr "" -#: plinth/modules/pagekite/forms.py:107 +#: plinth/modules/pagekite/forms.py:93 msgid "Enable Subdomains" msgstr "" -#: plinth/modules/pagekite/forms.py:141 +#: plinth/modules/pagekite/forms.py:128 msgid "Deleted custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:174 +#: plinth/modules/pagekite/forms.py:162 msgid "This service is already available as a standard service." msgstr "" -#: plinth/modules/pagekite/forms.py:182 +#: plinth/modules/pagekite/forms.py:170 msgid "Added custom service" msgstr "" -#: plinth/modules/pagekite/forms.py:185 +#: plinth/modules/pagekite/forms.py:173 msgid "This service already exists" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:25 +#: plinth/modules/pagekite/templates/pagekite_configure.html:13 msgid "Custom Services" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:29 -#: plinth/modules/pagekite/templates/pagekite_configure.html:31 +#: plinth/modules/pagekite/templates/pagekite_configure.html:17 +#: plinth/modules/pagekite/templates/pagekite_configure.html:19 msgid "Add Custom Service" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:47 +#: plinth/modules/pagekite/templates/pagekite_configure.html:35 #, python-format msgid "connected to %(backend_host)s:%(backend_port)s" msgstr "" -#: plinth/modules/pagekite/templates/pagekite_configure.html:59 +#: plinth/modules/pagekite/templates/pagekite_configure.html:47 msgid "Delete this service" msgstr "" @@ -4500,12 +4496,13 @@ msgid "" "finished before shutting down or restarting." msgstr "" -#: plinth/modules/power/templates/power.html:22 -msgid "Restart »" +#: plinth/modules/power/templates/power.html:22 plinth/templates/base.html:171 +#: plinth/templates/base.html:172 +msgid "Restart" msgstr "" #: plinth/modules/power/templates/power.html:25 -msgid "Shut Down »" +msgid "Shut Down" msgstr "" #: plinth/modules/power/templates/power_restart.html:17 @@ -4791,21 +4788,21 @@ msgstr "" msgid "Dolphin" msgstr "" -#: plinth/modules/samba/templates/samba.html:32 +#: plinth/modules/samba/templates/samba.html:20 msgid "Shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:34 +#: plinth/modules/samba/templates/samba.html:22 msgid "" "Note: Only specially created directories will be shared on selected disks, " "not the whole disk." msgstr "" -#: plinth/modules/samba/templates/samba.html:95 +#: plinth/modules/samba/templates/samba.html:84 msgid "VFAT partitions are not supported" msgstr "" -#: plinth/modules/samba/templates/samba.html:122 +#: plinth/modules/samba/templates/samba.html:112 #, python-format msgid "" "You can find additional information about disks on the users module page." msgstr "" -#: plinth/modules/samba/templates/samba.html:130 +#: plinth/modules/samba/templates/samba.html:120 msgid "Users who can currently access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:134 +#: plinth/modules/samba/templates/samba.html:124 msgid "" "Users needing to re-enter their password on the password change page to " "access group and home shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:139 +#: plinth/modules/samba/templates/samba.html:129 msgid "Unavailable Shares" msgstr "" -#: plinth/modules/samba/templates/samba.html:141 +#: plinth/modules/samba/templates/samba.html:131 msgid "" "Shares that are configured but the disk is not available. If the disk is " "plugged back in, sharing will be automatically enabled." msgstr "" -#: plinth/modules/samba/templates/samba.html:149 +#: plinth/modules/samba/templates/samba.html:140 msgid "Share name" msgstr "" -#: plinth/modules/samba/templates/samba.html:150 +#: plinth/modules/samba/templates/samba.html:141 msgid "Action" msgstr "" @@ -4945,25 +4942,25 @@ msgid "" "services." msgstr "" -#: plinth/modules/security/templates/security.html:11 -#: plinth/modules/security/templates/security.html:13 +#: plinth/modules/security/templates/security.html:12 +#: plinth/modules/security/templates/security.html:14 msgid "Show security report" msgstr "" -#: plinth/modules/security/templates/security.html:17 +#: plinth/modules/security/templates/security.html:19 #: plinth/modules/upgrades/templates/backports-firstboot.html:11 -#: plinth/modules/upgrades/templates/upgrades_configure.html:60 +#: plinth/modules/upgrades/templates/upgrades_configure.html:49 msgid "Frequent Feature Updates" msgstr "" -#: plinth/modules/security/templates/security.html:19 -#: plinth/modules/upgrades/templates/upgrades_configure.html:68 +#: plinth/modules/security/templates/security.html:21 +#: plinth/modules/upgrades/templates/upgrades_configure.html:57 msgid "Frequent feature updates are activated." msgstr "" -#: plinth/modules/security/templates/security.html:24 +#: plinth/modules/security/templates/security.html:26 #: plinth/modules/upgrades/templates/backports-firstboot.html:14 -#: plinth/modules/upgrades/templates/upgrades_configure.html:80 +#: plinth/modules/upgrades/templates/upgrades_configure.html:69 #, python-format msgid "" "Frequent feature updates allow the %(box_name)s Service, plus a very limited " @@ -5007,39 +5004,39 @@ msgid "" "running." msgstr "" -#: plinth/modules/security/templates/security_report.html:40 +#: plinth/modules/security/templates/security_report.html:41 msgid "App Name" msgstr "" -#: plinth/modules/security/templates/security_report.html:41 +#: plinth/modules/security/templates/security_report.html:42 msgid "Current Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:42 +#: plinth/modules/security/templates/security_report.html:43 msgid "Past Vulnerabilities" msgstr "" -#: plinth/modules/security/templates/security_report.html:43 +#: plinth/modules/security/templates/security_report.html:44 msgid "Sandboxed" msgstr "" -#: plinth/modules/security/templates/security_report.html:44 +#: plinth/modules/security/templates/security_report.html:45 msgid "Sandbox Coverage" msgstr "" -#: plinth/modules/security/templates/security_report.html:55 +#: plinth/modules/security/templates/security_report.html:56 msgid "N/A" msgstr "" -#: plinth/modules/security/templates/security_report.html:57 +#: plinth/modules/security/templates/security_report.html:58 msgid "Yes" msgstr "" -#: plinth/modules/security/templates/security_report.html:59 +#: plinth/modules/security/templates/security_report.html:60 msgid "No" msgstr "" -#: plinth/modules/security/templates/security_report.html:66 +#: plinth/modules/security/templates/security_report.html:67 msgid "Not running" msgstr "" @@ -5180,28 +5177,28 @@ msgstr "" msgid "Shares should be either public or shared with at least one group" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:24 -#: plinth/modules/sharing/templates/sharing.html:27 +#: plinth/modules/sharing/templates/sharing.html:19 +#: plinth/modules/sharing/templates/sharing.html:22 msgid "Add share" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:32 +#: plinth/modules/sharing/templates/sharing.html:27 msgid "No shares currently configured." msgstr "" -#: plinth/modules/sharing/templates/sharing.html:38 +#: plinth/modules/sharing/templates/sharing.html:34 msgid "Disk Path" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:39 +#: plinth/modules/sharing/templates/sharing.html:35 msgid "Shared Over" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:40 +#: plinth/modules/sharing/templates/sharing.html:36 msgid "With Groups" msgstr "" -#: plinth/modules/sharing/templates/sharing.html:57 +#: plinth/modules/sharing/templates/sharing.html:53 msgid "public access" msgstr "" @@ -5325,41 +5322,41 @@ msgstr "" msgid "Delete the following snapshots permanently?" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:16 -#: plinth/modules/snapshot/templates/snapshot_manage.html:29 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:24 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 +#: plinth/modules/snapshot/templates/snapshot_manage.html:27 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 msgid "Number" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:17 -#: plinth/modules/snapshot/templates/snapshot_manage.html:30 -#: plinth/modules/snapshot/templates/snapshot_rollback.html:25 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:28 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:26 msgid "Date" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:40 -#: plinth/modules/snapshot/templates/snapshot_manage.html:22 +#: plinth/modules/snapshot/templates/snapshot_delete_selected.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:20 #: plinth/modules/snapshot/views.py:198 msgid "Delete Snapshots" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:18 +#: plinth/modules/snapshot/templates/snapshot_manage.html:17 msgid "Create Snapshot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:32 +#: plinth/modules/snapshot/templates/snapshot_manage.html:30 msgid "Rollback" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:42 +#: plinth/modules/snapshot/templates/snapshot_manage.html:40 msgid "will be used at next boot" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:47 +#: plinth/modules/snapshot/templates/snapshot_manage.html:45 msgid "in use" msgstr "" -#: plinth/modules/snapshot/templates/snapshot_manage.html:56 +#: plinth/modules/snapshot/templates/snapshot_manage.html:54 #, python-format msgid "Rollback to snapshot #%(number)s" msgstr "" @@ -5382,7 +5379,7 @@ msgid "" "the newly created snapshot." msgstr "" -#: plinth/modules/snapshot/templates/snapshot_rollback.html:42 +#: plinth/modules/snapshot/templates/snapshot_rollback.html:44 #, python-format msgid "Rollback to Snapshot #%(number)s" msgstr "" @@ -5470,11 +5467,11 @@ msgid "" "client matches one of these fingerprints." msgstr "" -#: plinth/modules/ssh/templates/ssh.html:23 +#: plinth/modules/ssh/templates/ssh.html:24 msgid "Algorithm" msgstr "" -#: plinth/modules/ssh/templates/ssh.html:24 +#: plinth/modules/ssh/templates/ssh.html:25 msgid "Fingerprint" msgstr "" @@ -5647,27 +5644,27 @@ msgstr "" msgid "Other directory (specify below)" msgstr "" -#: plinth/modules/storage/templates/storage.html:20 +#: plinth/modules/storage/templates/storage.html:17 msgid "The following storage devices are in use:" msgstr "" -#: plinth/modules/storage/templates/storage.html:26 +#: plinth/modules/storage/templates/storage.html:24 msgid "Label" msgstr "" -#: plinth/modules/storage/templates/storage.html:27 +#: plinth/modules/storage/templates/storage.html:25 msgid "Mount Point" msgstr "" -#: plinth/modules/storage/templates/storage.html:29 +#: plinth/modules/storage/templates/storage.html:27 msgid "Used" msgstr "" -#: plinth/modules/storage/templates/storage.html:78 +#: plinth/modules/storage/templates/storage.html:77 msgid "Partition Expansion" msgstr "" -#: plinth/modules/storage/templates/storage.html:80 +#: plinth/modules/storage/templates/storage.html:79 #, python-format msgid "" "There is %(expandable_root_size)s of unallocated space available after your " @@ -5675,13 +5672,13 @@ msgid "" "will provide you additional free space to store your files." msgstr "" -#: plinth/modules/storage/templates/storage.html:90 +#: plinth/modules/storage/templates/storage.html:89 #: plinth/modules/storage/templates/storage_expand.html:24 #: plinth/modules/storage/views.py:58 msgid "Expand Root Partition" msgstr "" -#: plinth/modules/storage/templates/storage.html:96 +#: plinth/modules/storage/templates/storage.html:95 msgid "" "Advanced storage operations such as disk partitioning and RAID management " "are provided by the Cockpit app." @@ -5788,25 +5785,25 @@ msgstr "" msgid "Local introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:33 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:49 -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:66 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:34 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:51 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:69 msgid "Pet Name" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:46 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:48 msgid "Add new introducer" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:57 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:59 msgid "Add" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:62 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:64 msgid "Connected introducers" msgstr "" -#: plinth/modules/tahoe/templates/tahoe-post-setup.html:79 +#: plinth/modules/tahoe/templates/tahoe-post-setup.html:82 msgid "Remove" msgstr "" @@ -5950,19 +5947,19 @@ msgstr "" msgid "Tor configuration is being updated" msgstr "" -#: plinth/modules/tor/templates/tor.html:25 +#: plinth/modules/tor/templates/tor.html:26 msgid "Onion Service" msgstr "" -#: plinth/modules/tor/templates/tor.html:27 +#: plinth/modules/tor/templates/tor.html:28 msgid "Ports" msgstr "" -#: plinth/modules/tor/templates/tor.html:57 +#: plinth/modules/tor/templates/tor.html:59 msgid "Relay" msgstr "" -#: plinth/modules/tor/templates/tor.html:59 +#: plinth/modules/tor/templates/tor.html:61 #, python-format msgid "" "If your %(box_name)s is behind a router or firewall, you should make sure " @@ -6043,7 +6040,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/__init__.py:73 -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:16 #: plinth/modules/upgrades/templates/update-firstboot.html:11 #: plinth/templates/setup.html:62 msgid "Update" @@ -6076,7 +6073,7 @@ msgid "" msgstr "" #: plinth/modules/upgrades/forms.py:34 -#: plinth/modules/upgrades/templates/upgrades_configure.html:105 +#: plinth/modules/upgrades/templates/upgrades_configure.html:94 msgid "Activate frequent feature updates (recommended)" msgstr "" @@ -6096,11 +6093,11 @@ msgid "" "cannot be deactivated." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:24 msgid "Updating, please wait..." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:30 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:27 #: plinth/modules/upgrades/templates/update-firstboot.html:20 msgid "" "This may take a long time to complete. During an update, " @@ -6108,7 +6105,7 @@ msgid "" "case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/update-firstboot-progress.html:39 +#: plinth/modules/upgrades/templates/update-firstboot-progress.html:36 #, python-format msgid "" "\n" @@ -6133,32 +6130,32 @@ msgstr "" msgid "Dismiss" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:46 -#: plinth/modules/upgrades/templates/upgrades_configure.html:116 +#: plinth/modules/upgrades/templates/upgrades_configure.html:35 +#: plinth/modules/upgrades/templates/upgrades_configure.html:105 msgid "Updating..." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:48 +#: plinth/modules/upgrades/templates/upgrades_configure.html:37 #, python-format msgid "There is a new %(box_name)s version available." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:51 +#: plinth/modules/upgrades/templates/upgrades_configure.html:40 msgid "Your Freedombox needs an update!" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:63 +#: plinth/modules/upgrades/templates/upgrades_configure.html:52 msgid "" "Frequent feature updates can be activated. Activating them is recommended." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:72 +#: plinth/modules/upgrades/templates/upgrades_configure.html:61 msgid "" "Frequent feature updates cannot be activated. They may not be necessary on " "your distribution." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:94 +#: plinth/modules/upgrades/templates/upgrades_configure.html:83 #, python-format msgid "" "Warning! Once frequent feature updates are activated, they " @@ -6166,22 +6163,22 @@ msgid "" "\"%(snapshot_url)s\">Storage Snapshots before continuing." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:110 +#: plinth/modules/upgrades/templates/upgrades_configure.html:99 msgid "Manual Update" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:124 +#: plinth/modules/upgrades/templates/upgrades_configure.html:113 msgid "Update now" msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:130 +#: plinth/modules/upgrades/templates/upgrades_configure.html:119 msgid "" "This may take a long time to complete. During an update, " "you cannot install apps. Also, this web interface may be temporarily " "unavailable and show an error. In that case, refresh the page to continue." msgstr "" -#: plinth/modules/upgrades/templates/upgrades_configure.html:144 +#: plinth/modules/upgrades/templates/upgrades_configure.html:133 msgid "Show recent update logs" msgstr "" @@ -6354,8 +6351,8 @@ msgstr "" #: plinth/modules/users/templates/users_create.html:11 #: plinth/modules/users/templates/users_create.html:19 -#: plinth/modules/users/templates/users_list.html:27 -#: plinth/modules/users/templates/users_list.html:29 +#: plinth/modules/users/templates/users_list.html:15 +#: plinth/modules/users/templates/users_list.html:17 #: plinth/modules/users/views.py:44 msgid "Create User" msgstr "" @@ -6408,21 +6405,21 @@ msgid "" "step." msgstr "" -#: plinth/modules/users/templates/users_list.html:23 +#: plinth/modules/users/templates/users_list.html:11 #: plinth/modules/users/views.py:61 msgid "Users" msgstr "" -#: plinth/modules/users/templates/users_list.html:42 -#, python-format -msgid "Delete user %(username)s" -msgstr "" - -#: plinth/modules/users/templates/users_list.html:50 +#: plinth/modules/users/templates/users_list.html:28 #, python-format msgid "Edit user %(username)s" msgstr "" +#: plinth/modules/users/templates/users_list.html:41 +#, python-format +msgid "Delete user %(username)s" +msgstr "" + #: plinth/modules/users/templates/users_update.html:11 #, python-format msgid "Edit User %(username)s" @@ -6496,8 +6493,8 @@ msgstr "" #: plinth/modules/wireguard/forms.py:61 #: plinth/modules/wireguard/templates/wireguard.html:17 -#: plinth/modules/wireguard/templates/wireguard.html:74 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:23 +#: plinth/modules/wireguard/templates/wireguard.html:77 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:24 msgid "Public Key" msgstr "" @@ -6582,7 +6579,7 @@ msgid "Allowed IPs" msgstr "" #: plinth/modules/wireguard/templates/wireguard.html:19 -#: plinth/modules/wireguard/templates/wireguard.html:75 +#: plinth/modules/wireguard/templates/wireguard.html:78 msgid "Last Connected Time" msgstr "" @@ -6591,47 +6588,47 @@ msgstr "" msgid "No peers configured to connect to this %(box_name)s yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:47 +#: plinth/modules/wireguard/templates/wireguard.html:48 #, python-format msgid "Public key for this %(box_name)s:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:53 +#: plinth/modules/wireguard/templates/wireguard.html:54 msgid "Not configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:57 +#: plinth/modules/wireguard/templates/wireguard.html:59 msgid "Add a new peer" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:61 +#: plinth/modules/wireguard/templates/wireguard.html:63 #: plinth/modules/wireguard/views.py:48 msgid "Add Allowed Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:64 +#: plinth/modules/wireguard/templates/wireguard.html:67 msgid "As a Client" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:66 +#: plinth/modules/wireguard/templates/wireguard.html:69 #, python-format msgid "Servers that %(box_name)s will connect to:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:73 -#: plinth/modules/wireguard/templates/wireguard_delete_server.html:19 +#: plinth/modules/wireguard/templates/wireguard.html:76 +#: plinth/modules/wireguard/templates/wireguard_delete_server.html:20 msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:96 +#: plinth/modules/wireguard/templates/wireguard.html:99 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:104 +#: plinth/modules/wireguard/templates/wireguard.html:109 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:108 +#: plinth/modules/wireguard/templates/wireguard.html:113 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "" @@ -6663,40 +6660,40 @@ msgid "" "is configured with the following information." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:20 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:21 msgid "Client public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:24 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:25 msgid "IP address to use for client:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:28 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:31 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:29 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:32 msgid "Pre-shared key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:32 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:33 msgid "Server endpoints:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:40 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:27 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:41 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:28 msgid "Server public key:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:50 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:49 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:52 msgid "Data transmitted:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:54 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:53 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:56 msgid "Data received:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_client.html:58 -#: plinth/modules/wireguard/templates/wireguard_show_server.html:57 +#: plinth/modules/wireguard/templates/wireguard_show_client.html:61 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:60 msgid "Latest handshake:" msgstr "" @@ -6708,15 +6705,15 @@ msgid "" "public key and IP address." msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:23 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:24 msgid "Server endpoint:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:35 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:36 msgid "Public key of this machine:" msgstr "" -#: plinth/modules/wireguard/templates/wireguard_show_server.html:39 +#: plinth/modules/wireguard/templates/wireguard_show_server.html:40 msgid "IP address of this machine:" msgstr "" @@ -6852,49 +6849,53 @@ msgstr "" msgid "Service %(service_name)s is not running." msgstr "" -#: plinth/templates/base.html:34 +#: plinth/templates/base.html:30 #, python-format msgid "Core functionality and web interface for %(box_name)s" msgstr "" -#: plinth/templates/base.html:89 -msgid "Toggle navigation" +#: plinth/templates/base.html:107 +msgid " Home" msgstr "" -#: plinth/templates/base.html:113 plinth/templates/base.html:116 +#: plinth/templates/base.html:110 msgid "Home" msgstr "" -#: plinth/templates/base.html:121 plinth/templates/base.html:125 +#: plinth/templates/base.html:115 +msgid " Apps" +msgstr "" + +#: plinth/templates/base.html:119 msgid "Apps" msgstr "" -#: plinth/templates/base.html:130 plinth/templates/base.html:134 +#: plinth/templates/base.html:124 +msgid " System" +msgstr "" + +#: plinth/templates/base.html:128 msgid "System" msgstr "" -#: plinth/templates/base.html:168 plinth/templates/base.html:169 +#: plinth/templates/base.html:163 plinth/templates/base.html:164 msgid "Change password" msgstr "" -#: plinth/templates/base.html:176 plinth/templates/base.html:177 -msgid "Restart" -msgstr "" - -#: plinth/templates/base.html:182 plinth/templates/base.html:183 +#: plinth/templates/base.html:177 plinth/templates/base.html:178 msgid "Shut down" msgstr "" -#: plinth/templates/base.html:190 plinth/templates/base.html:191 -#: plinth/templates/base.html:215 plinth/templates/base.html:217 +#: plinth/templates/base.html:185 plinth/templates/base.html:186 +#: plinth/templates/base.html:213 plinth/templates/base.html:215 msgid "Log out" msgstr "" -#: plinth/templates/base.html:199 plinth/templates/base.html:202 +#: plinth/templates/base.html:195 plinth/templates/base.html:198 msgid "Select language" msgstr "" -#: plinth/templates/base.html:207 plinth/templates/base.html:209 +#: plinth/templates/base.html:204 plinth/templates/base.html:206 msgid "Log in" msgstr "" @@ -6958,7 +6959,7 @@ msgstr "" msgid "RPM:" msgstr "" -#: plinth/templates/first_setup.html:24 +#: plinth/templates/first_setup.html:18 #, python-format msgid "" "Please wait for %(box_name)s to finish installation. You can start using " @@ -6972,10 +6973,6 @@ msgid "" "this page." msgstr "" -#: plinth/templates/index.html:46 -msgid "Configure »" -msgstr "" - #: plinth/templates/index.html:108 #, python-format msgid "" @@ -7000,7 +6997,7 @@ msgstr "" msgid "Source Code" msgstr "" -#: plinth/templates/index.html:143 plinth/templates/toolbar.html:38 +#: plinth/templates/index.html:143 plinth/templates/toolbar.html:19 msgid "Donate" msgstr "" @@ -7034,6 +7031,10 @@ msgid "" "%(interface_list)s" msgstr "" +#: plinth/templates/messages.html:11 +msgid "Close" +msgstr "" + #: plinth/templates/notifications-dropdown.html:11 msgid "Notifications" msgstr "" @@ -7065,15 +7066,15 @@ msgid "" "your router. You should forward the following ports for %(service_name)s:" msgstr "" -#: plinth/templates/port-forwarding-info.html:36 +#: plinth/templates/port-forwarding-info.html:37 msgid "Protocol" msgstr "" -#: plinth/templates/port-forwarding-info.html:37 +#: plinth/templates/port-forwarding-info.html:38 msgid "From Router/WAN Ports" msgstr "" -#: plinth/templates/port-forwarding-info.html:38 +#: plinth/templates/port-forwarding-info.html:39 #, python-format msgid "To %(box_name)s Ports" msgstr "" From f15a6f8d5553442d71861fa6468f7e52fd18a664 Mon Sep 17 00:00:00 2001 From: James Valleroy Date: Mon, 28 Dec 2020 20:50:46 -0500 Subject: [PATCH 19/21] doc: Fetch latest manual Signed-off-by: James Valleroy --- doc/manual/en/GettingHelp.raw.wiki | 2 +- doc/manual/en/QuickStart.raw.wiki | 5 +- doc/manual/en/ReleaseNotes.raw.wiki | 17 +++ doc/manual/en/bepasty.raw.wiki | 4 +- doc/manual/en/freedombox-manual.raw.wiki | 4 +- doc/manual/es/Hardware.raw.wiki | 2 +- doc/manual/es/Manual.raw.wiki | 135 +++++++++++++++++++++++ doc/manual/es/QuickStart.raw.wiki | 4 +- doc/manual/es/ReleaseNotes.raw.wiki | 17 +++ doc/manual/es/bepasty.raw.wiki | 2 +- doc/manual/es/freedombox-manual.raw.wiki | 2 +- 11 files changed, 185 insertions(+), 9 deletions(-) create mode 100644 doc/manual/es/Manual.raw.wiki diff --git a/doc/manual/en/GettingHelp.raw.wiki b/doc/manual/en/GettingHelp.raw.wiki index 788312338..f8f77c939 100644 --- a/doc/manual/en/GettingHelp.raw.wiki +++ b/doc/manual/en/GettingHelp.raw.wiki @@ -1,7 +1,7 @@ #language en ##TAG:TRANSLATION-HEADER-START -~-[[FreedomBox/Manual/GettingHelp|English]] - [[es/FreedomBox/Manual/GettingHelp|Español]] - [[fr/FreedomBox/Manuel/ObtenirAide|Français]] - [[DebianWiki/EditorGuide#translation|(+)]]-~ +~-[[FreedomBox/Manual/GettingHelp|English]] - [[es/FreedomBox/Manual/GettingHelp|Español]] - [[fr/FreedomBox/Manual/GettingHelp|Français]] - [[DebianWiki/EditorGuide#translation|(+)]]-~ ##TAG:TRANSLATION-HEADER-END ## BEGIN_INCLUDE diff --git a/doc/manual/en/QuickStart.raw.wiki b/doc/manual/en/QuickStart.raw.wiki index f986a3617..3bb049329 100644 --- a/doc/manual/en/QuickStart.raw.wiki +++ b/doc/manual/en/QuickStart.raw.wiki @@ -1,6 +1,9 @@ #language en #pragma section-numbers 2 -~- [[DebianWiki/EditorGuide#translation|Translation(s)]]: [[de/FreedomBox/Handbuch/Schnelleinstieg|Deutsch]] - English - [[es/FreedomBox/Manual/QuickStart|Español]] -~ + +##TAG:TRANSLATION-HEADER-START +~-[[de/FreedomBox/Manual/QuickStart|Deutsch]] - [[FreedomBox/Manual/QuickStart|English]] - [[es/FreedomBox/Manual/QuickStart|Español]] - [[fr/FreedomBox/Manual/QuickStart|Français]] - [[ru/FreedomBox/Manual/QuickStart|Русский]] - [[DebianWiki/EditorGuide#translation|(+)]]-~ +##TAG:TRANSLATION-HEADER-END ## BEGIN_INCLUDE = Quick Start = diff --git a/doc/manual/en/ReleaseNotes.raw.wiki b/doc/manual/en/ReleaseNotes.raw.wiki index 9238a6646..c080e51fd 100644 --- a/doc/manual/en/ReleaseNotes.raw.wiki +++ b/doc/manual/en/ReleaseNotes.raw.wiki @@ -10,6 +10,23 @@ For more technical details, see the [[https://salsa.debian.org/freedombox-team/f The following are the release notes for each !FreedomBox version. +== FreedomBox 20.21 (2020-12-28) == + +=== Highlights === + + * apache: Create snake oil certificate if not exists + * Fixes an issue when installing !FreedomBox on Hetzner Cloud's Debian image + * calibre: Fix link to manual page + +=== Other Changes === + + * deluge: Require user to be in bit-torrent group to access + * locale: Update translations for German, Hungarian, Polish, Russian, Spanish, Swedish + * security: Fix access denied for user daemon from cron + * upgrades: Allow grub-pc upgrade without reinstalling grub + * upgrades: Update searx search engines during dist upgrade + * users: Remove timeout when creating Samba user + == FreedomBox 20.20.1 (2020-12-19) == === Highlights === diff --git a/doc/manual/en/bepasty.raw.wiki b/doc/manual/en/bepasty.raw.wiki index 01f518215..bf8ce3638 100644 --- a/doc/manual/en/bepasty.raw.wiki +++ b/doc/manual/en/bepasty.raw.wiki @@ -1,6 +1,8 @@ #language en -~- [[DebianWiki/EditorGuide#translation|Translation(s)]]: English - [[es/FreedomBox/Manual/bepasty|Español]] -~ +##TAG:TRANSLATION-HEADER-START +~- [[de/FreedomBox/Manual/bepasty|Deutsch]] - [[FreedomBox/Manual/bepasty|English]] - [[es/FreedomBox/Manual/bepasty|Español]] - [[DebianWiki/EditorGuide#translation|(+)]] -~ +##TAG:TRANSLATION-HEADER-END <> diff --git a/doc/manual/en/freedombox-manual.raw.wiki b/doc/manual/en/freedombox-manual.raw.wiki index f10fbb732..f4f661634 100644 --- a/doc/manual/en/freedombox-manual.raw.wiki +++ b/doc/manual/en/freedombox-manual.raw.wiki @@ -1,6 +1,8 @@ #language en -~- [[DebianWiki/EditorGuide#translation|Translation(s)]]: English - [[es/FreedomBox/Manual|Español]] -~ +##TAG:TRANSLATION-HEADER-START +~-[[de/FreedomBox/Manual|Deutsch]] - [[FreedomBox/Manual|English]] - [[es/FreedomBox/Manual|Español]] - [[fr/FreedomBox/Manual|Français]] - [[DebianWiki/EditorGuide#translation|(+)]]-~ +##TAG:TRANSLATION-HEADER-END ## BEGIN_INCLUDE diff --git a/doc/manual/es/Hardware.raw.wiki b/doc/manual/es/Hardware.raw.wiki index 51218aea3..7f5924317 100644 --- a/doc/manual/es/Hardware.raw.wiki +++ b/doc/manual/es/Hardware.raw.wiki @@ -15,7 +15,7 @@ El 22 de Abril de 2019, la ''!FreedomBox Foundation'' anunció que los kits ''Pi El kit incluye todo el hardware necesario para arrancar un servidor casero !FreedomBox sobre una placa ''Olimex A20-OLinuXino-LIME2''. Este producto proporciona la combinación perfecta de hardware de fuentes abiertas y software libre. Al comprar este producto, soportas también los esfuerzos de la ''!FreedomBox Foundation'' para crear y promover su software de servidor libre. -|| [[es/FreedomBox/Hardware/PioneerEdition|{{attachment:FreedomBox/Hardware/pioneer-edition_thumb.jpg|Kits de Servidor Casero FreedomBox Pioneer Edition|width=320,height=257}}]]<
> [[es/FreedomBox/Hardware/PioneerEdition|Kits de Servidor Casero FreedomBox Pioneer Edition]] || +|| [[es/FreedomBox/Hardware/PioneerEdition|{{attachment:FreedomBox/Hardware/pioneer-edition_thumb.jpg|Kits de servidor doméstico FreedomBox edición Pioneer|width=320,height=257}}]]<
> [[es/FreedomBox/Hardware/PioneerEdition|Kits de servidor doméstico FreedomBox edición Pioneer]] || == Hardware Soportado == diff --git a/doc/manual/es/Manual.raw.wiki b/doc/manual/es/Manual.raw.wiki new file mode 100644 index 000000000..f4f661634 --- /dev/null +++ b/doc/manual/es/Manual.raw.wiki @@ -0,0 +1,135 @@ +#language en + +##TAG:TRANSLATION-HEADER-START +~-[[de/FreedomBox/Manual|Deutsch]] - [[FreedomBox/Manual|English]] - [[es/FreedomBox/Manual|Español]] - [[fr/FreedomBox/Manual|Français]] - [[DebianWiki/EditorGuide#translation|(+)]]-~ +##TAG:TRANSLATION-HEADER-END + +## BEGIN_INCLUDE + +<> + + +<> +<> +<> +<> + += Apps = +/* Add entries here sorted after the level 2 heading inside the page to keep the list alphabetically sorted */ +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> + += System = +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> + += Hardware = +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> +<> + +<> + += Contributing = + +<> + += Developer Guide = + +<> + += Hacking = + +!FreedomBox consists of two main projects: + + * !FreedomBox Service (Plinth), the web interface + * Freedom Maker, a script to build disk images for various hardware + +<> +<> + += Tell people around you = + + * [[https://freedombox.org/|FreedomBox]] + * [[../Press|FreedomBox in the Press]] + * [[../Conferences|Conferences]] + * [[../TalksAndPresentations|Talks and presentations]] + * [[../TalksAndPresentations/AvailableMaterial|Available Material]] Slides and other raw material + * [[http://www.facebook.com/freedomboxfoundation|Facebook]] + * [[http://twitter.com/#!/FreedomBoxFndn|Twitter]] + * [[https://mastodon.social/@freedomboxfndn|Mastodon]] + * [[http://meetings-archive.debian.net/pub/debian-meetings/2011/debconf11/low/|Debconf11 Videos]] + +## END_INCLUDE + +<> + +---- +CategoryFreedomBox diff --git a/doc/manual/es/QuickStart.raw.wiki b/doc/manual/es/QuickStart.raw.wiki index 859f5eb74..e3c4f5c40 100644 --- a/doc/manual/es/QuickStart.raw.wiki +++ b/doc/manual/es/QuickStart.raw.wiki @@ -1,6 +1,6 @@ #language es #pragma section-numbers 2 -~-[[DebianWiki/EditorGuide#translation|Translation(s)]]: [[de/FreedomBox/Handbuch/Schnelleinstieg|Deutsch]] - [[FreedomBox/Manual/QuickStart|English]] - Español -~ +<> ## BEGIN_INCLUDE = Guía de Inicio Rápido = @@ -64,7 +64,7 @@ Alternativamente podrías optar por montarlo tu mismo reuniendo todas las piezas * Nota: El usuario que creas aquí tendrá privilegios de ``Admin`` y también podrá [[es/FreedomBox/Manual/SecureShell|entrar por SSH]]. Por mayor seguridad deberías emplear para tareas administrativas una cuenta diferente de la de uso habitual. Luego puedes añadir más usuarios, entre ellos el tuyo de uso habitual. . {{attachment:ui_firstboot_account-es.png|Cuenta|width=500}} 1. Tras completar el formulario estarás en el interfaz web de !FreedomBox y podrás acceder a las apps y a la configuración mediante el interfaz web. - . {{attachment:ui_firstboot_complete-es.png|Completado|width=500}}mayor + . {{attachment:ui_firstboot_complete-es.png|Completado|width=500}} Ahora puedes probar [[es/FreedomBox/Features|cualquier App]] disponible en !FreedomBox. == Orientándote == diff --git a/doc/manual/es/ReleaseNotes.raw.wiki b/doc/manual/es/ReleaseNotes.raw.wiki index 9238a6646..c080e51fd 100644 --- a/doc/manual/es/ReleaseNotes.raw.wiki +++ b/doc/manual/es/ReleaseNotes.raw.wiki @@ -10,6 +10,23 @@ For more technical details, see the [[https://salsa.debian.org/freedombox-team/f The following are the release notes for each !FreedomBox version. +== FreedomBox 20.21 (2020-12-28) == + +=== Highlights === + + * apache: Create snake oil certificate if not exists + * Fixes an issue when installing !FreedomBox on Hetzner Cloud's Debian image + * calibre: Fix link to manual page + +=== Other Changes === + + * deluge: Require user to be in bit-torrent group to access + * locale: Update translations for German, Hungarian, Polish, Russian, Spanish, Swedish + * security: Fix access denied for user daemon from cron + * upgrades: Allow grub-pc upgrade without reinstalling grub + * upgrades: Update searx search engines during dist upgrade + * users: Remove timeout when creating Samba user + == FreedomBox 20.20.1 (2020-12-19) == === Highlights === diff --git a/doc/manual/es/bepasty.raw.wiki b/doc/manual/es/bepasty.raw.wiki index a0c5695e7..3644bc517 100644 --- a/doc/manual/es/bepasty.raw.wiki +++ b/doc/manual/es/bepasty.raw.wiki @@ -1,6 +1,6 @@ #language es -~- [[DebianWiki/EditorGuide#translation|Translation(s)]]: [[FreedomBox/Manual/bepasty|English]] - Español -~ +<> <> diff --git a/doc/manual/es/freedombox-manual.raw.wiki b/doc/manual/es/freedombox-manual.raw.wiki index b8169cf01..519b689ae 100644 --- a/doc/manual/es/freedombox-manual.raw.wiki +++ b/doc/manual/es/freedombox-manual.raw.wiki @@ -1,6 +1,6 @@ #language es -~- [[DebianWiki/EditorGuide#translation|Translation(s)]]: [[FreedomBox/Manual|English]] - Español -~ +<> ## BEGIN_INCLUDE From 92c9ba21ac2f5812238268bcf2bcfb6ff8992313 Mon Sep 17 00:00:00 2001 From: James Valleroy Date: Mon, 28 Dec 2020 21:08:14 -0500 Subject: [PATCH 20/21] debian: Bump standards version to 4.5.1 Signed-off-by: James Valleroy --- debian/control | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/control b/debian/control index ea7cfade4..7c794de8d 100644 --- a/debian/control +++ b/debian/control @@ -48,7 +48,7 @@ Build-Depends: sshpass, xmlto, xsltproc -Standards-Version: 4.5.0 +Standards-Version: 4.5.1 Homepage: https://salsa.debian.org/freedombox-team/freedombox Vcs-Git: https://salsa.debian.org/freedombox-team/freedombox.git Vcs-Browser: https://salsa.debian.org/freedombox-team/freedombox From da4ab1bc8b0b1607901c7913ed6111da741b2e6d Mon Sep 17 00:00:00 2001 From: James Valleroy Date: Mon, 28 Dec 2020 21:09:18 -0500 Subject: [PATCH 21/21] Release v20.21 to unstable Signed-off-by: James Valleroy --- debian/changelog | 46 ++++++++++++++++++++++++++++++++++++++++++++++ plinth/__init__.py | 2 +- 2 files changed, 47 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index b8d0979d0..6da2a757a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,49 @@ +freedombox (20.21) unstable; urgency=medium + + [ Johannes Keyser ] + * Translated using Weblate (German) + + [ Fioddor Superconcentrado ] + * Translated using Weblate (Spanish) + * Translated using Weblate (Spanish) + + [ Joseph Nuthalapati ] + * deluge: Sync apache2 config with Transmission + * deluge: Functional tests for bit-torrent group + + [ Michael Breidenbach ] + * Translated using Weblate (Swedish) + + [ Veiko Aasa ] + * apache: Create snake oil certificate if not exists + * users: Remove timeout when creating Samba user + * security: Fix access denied for user daemon from cron + + [ n0nie4HP ] + * Translated using Weblate (Polish) + * Translated using Weblate (Polish) + + [ spectral ] + * calibre: Fix manual page name + + [ James Valleroy ] + * upgrades: Allow grub-pc upgrade without reinstalling grub + * upgrades: Update searx search engines during dist upgrade + * locale: Update translation strings + * doc: Fetch latest manual + * debian: Bump standards version to 4.5.1 + + [ Nikita Epifanov ] + * Translated using Weblate (Russian) + + [ ikmaak ] + * Translated using Weblate (Polish) + + [ Doma Gergő ] + * Translated using Weblate (Hungarian) + + -- James Valleroy Mon, 28 Dec 2020 21:08:41 -0500 + freedombox (20.20.1) unstable; urgency=medium [ Reg Me ] diff --git a/plinth/__init__.py b/plinth/__init__.py index 8bb1e2b27..244d23879 100644 --- a/plinth/__init__.py +++ b/plinth/__init__.py @@ -3,4 +3,4 @@ Package init file. """ -__version__ = '20.20.1' +__version__ = '20.21'