diff --git a/.gitignore b/.gitignore index db26474e7..812d5c4ad 100644 --- a/.gitignore +++ b/.gitignore @@ -47,6 +47,7 @@ debian/freedombox-doc-es.substvars debian/freedombox-doc-es/ *.pytest_cache/ .container/ +screenshots/ # Editor settings .vscode/ diff --git a/HACKING.md b/HACKING.md index 5f2f230cf..d54b2936f 100644 --- a/HACKING.md +++ b/HACKING.md @@ -344,12 +344,6 @@ To run all the standard unit tests in the container/VM: guest$ py.test-3 ``` -Another way to run tests (not recommended): - -```bash -guest$ ./setup.py test -``` - To run a specific test function, test class or test module, use pytest filtering options. See pytest documentation for further filter options. diff --git a/actions/coturn b/actions/coturn index e50f2af14..38a2e1719 100755 --- a/actions/coturn +++ b/actions/coturn @@ -46,11 +46,9 @@ def subcommand_setup(_): shutil.chown(CONFIG_FILE, group='turnserver') action_utils.service_daemon_reload() - action_utils.service_try_restart('coturn') aug = augeas_load() - # XXX: Should we set listen, relay IP address to :: or dynamically # XXX: Should we set external-ip aug.set(_key_path('min-port'), '49152') aug.set(_key_path('max-port'), '50175') @@ -66,9 +64,16 @@ def subcommand_setup(_): aug.set(_key_path('no-tlsv1'), 'true') aug.set(_key_path('no-tlsv1_1'), 'true') aug.set(_key_path('no-cli'), 'true') + aug.set(_key_path('listening-ip[1]'), '::') + # Keep ::1 because at least two IP addresses of same class are needed for + # enabling alternate port (port + 1). This is in turn needed for NAT + # Behavior Discovery (RFC 5780). + aug.set(_key_path('listening-ip[2]'), '::1') aug.save() + action_utils.service_try_restart('coturn') + def subcommand_get_config(_): """Return the current configuration in JSON format.""" diff --git a/actions/mldonkey b/actions/mldonkey deleted file mode 100755 index f9156fb43..000000000 --- a/actions/mldonkey +++ /dev/null @@ -1,40 +0,0 @@ -#!/usr/bin/python3 -# -*- mode: python -*- -# SPDX-License-Identifier: AGPL-3.0-or-later -""" -Configuration helper for mldonkey. -""" - -import argparse - -from plinth import action_utils - - -def parse_arguments(): - """Return parsed command line arguments as dictionary.""" - parser = argparse.ArgumentParser() - subparsers = parser.add_subparsers(dest='subcommand', help='Sub command') - - subparsers.add_parser('pre-install', help='Perform pre-install operations') - - subparsers.required = True - return parser.parse_args() - - -def subcommand_pre_install(_): - """Preseed debconf values before packages are installed.""" - action_utils.debconf_set_selections( - ['mldonkey-server mldonkey-server/launch_at_startup boolean true']) - - -def main(): - """Parse arguments and perform all duties.""" - arguments = parse_arguments() - - subcommand = arguments.subcommand.replace('-', '_') - subcommand_method = globals()['subcommand_' + subcommand] - subcommand_method(arguments) - - -if __name__ == '__main__': - main() diff --git a/actions/roundcube b/actions/roundcube index 890acb471..02f771d7e 100755 --- a/actions/roundcube +++ b/actions/roundcube @@ -5,9 +5,14 @@ Configuration helper for Roundcube server. """ import argparse +import json +import pathlib +import re from plinth import action_utils +_config_file = pathlib.Path('/etc/roundcube/freedombox-config.php') + def parse_arguments(): """Return parsed command line arguments as dictionary.""" @@ -16,6 +21,11 @@ def parse_arguments(): subparsers.add_parser('pre-install', help='Perform Roundcube pre-install configuration') + subparsers.add_parser('setup', help='Setup basic configuration') + subparsers.add_parser('get-config', help='Print current configuration') + subparser = subparsers.add_parser('set-config', help='Set configuration') + subparser.add_argument('--local-only', choices=['True', 'False'], + help='Set current configuration') subparsers.required = True return parser.parse_args() @@ -29,6 +39,51 @@ def subcommand_pre_install(_): ]) +def subcommand_setup(_): + """Add FreedomBox configuration and include from main configuration.""" + if not _config_file.exists(): + _config_file.write_text(' + Header set Strict-Transport-Security "max-age=31536000; includeSubDomains" env=HTTPS + ## ## Redirect traffic on home to /plinth as part of turning the machine diff --git a/data/etc/apache2/sites-available/plinth-ssl.conf b/data/etc/apache2/sites-available/plinth-ssl.conf index a7831936c..202e1bf1b 100644 --- a/data/etc/apache2/sites-available/plinth-ssl.conf +++ b/data/etc/apache2/sites-available/plinth-ssl.conf @@ -10,6 +10,9 @@ ## RewriteEngine on + # Don't redirect for onion sites as it is not needed and leads to + # unnecessary warning. + RewriteCond %{HTTP_HOST} !^.*\.onion$ [NC] ReWriteCond %{HTTPS} !=on RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L] diff --git a/debian/changelog b/debian/changelog index 8c4863298..a111c1ced 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,59 @@ +freedombox (22.4) unstable; urgency=medium + + [ ikmaak ] + * Translated using Weblate (German) + * Translated using Weblate (Dutch) + + [ Benedek Nagy ] + * shaarli: Add android app to description + * apache: Don't redirect to HTTPS for .onion domains + * matrixsynapse: Add FluffyChat to client list + * power: Add a link to power app in the system menu + * Translated using Weblate (Hungarian) + + [ Sunil Mohan Adapa ] + * mldonkey: Drop app not available in Debian Bullseye and Bookworm + * tests: functional: Implement a workaround for issue with screenshots + * wordpress: tests: functional: Add missing marks on tests + * tests: functional: Set default screenshots dir as ./screenshots + * doc: Fail when downloading images from Debian wiki fails + * cockpit: Explicitly redirect to HTTPS as needed for WebSockets + * apache: Don't set HSTS for .onion domain + * wireguard: tests: Add functional tests + * snapshots: Clarify that snapshots are take during updates too + * coturn: Use wildcard listening address to fix startup issues + * sso, users: Redirect to home page after logout + * users: Clarify help message for authorization password + * HACKING: Stop using setup.py as a way to run tests + * email_server: Drop some unused code + * roundcube: Add setting for local connection only + * email_server: Drop showing diagnostics/repair and roundcube config + + [ James Valleroy ] + * .gitignore: Add screenshots/ + * shaarli: Add backup component + * shaarli: Add functional test + * shaarli: Test adding a bookmark + * locale: Update translation strings + * doc: Fetch latest manual + + [ Coucouf ] + * Translated using Weblate (French) + + [ 109247019824 ] + * Translated using Weblate (Bulgarian) + + [ Michael Breidenbach ] + * Translated using Weblate (Swedish) + + [ Nikita Epifanov ] + * Translated using Weblate (Russian) + + [ Andrij Mizyk ] + * Translated using Weblate (Ukrainian) + + -- James Valleroy Mon, 31 Jan 2022 20:04:57 -0500 + freedombox (22.3~bpo11+1) bullseye-backports; urgency=medium * Rebuild for bullseye-backports. diff --git a/debian/copyright b/debian/copyright index af2e62b80..cf2a8d8b0 100644 --- a/debian/copyright +++ b/debian/copyright @@ -7,7 +7,6 @@ License: AGPL-3+ Files: static/themes/default/icons/jsxc.png static/themes/default/icons/jsxc.svg - static/themes/default/icons/mldonkey.svg Copyright: 2011-2019 FreedomBox Authors License: AGPL-3+ diff --git a/debian/freedombox.maintscript b/debian/freedombox.maintscript index 128d02ff6..f299b3cf9 100644 --- a/debian/freedombox.maintscript +++ b/debian/freedombox.maintscript @@ -16,3 +16,4 @@ rm_conffile /etc/plinth/modules-enabled/coquelicot 20.14~ rm_conffile /etc/plinth/modules-enabled/diaspora 21.16~ rm_conffile /etc/plinth/modules-enabled/monkeysphere 21.16~ rm_conffile /etc/plinth/modules-enabled/tahoe 21.16~ +rm_conffile /etc/plinth/modules-enabled/mldonkey 22.4~ diff --git a/doc/Makefile b/doc/Makefile index 4e63015cb..147926ae4 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -85,7 +85,7 @@ $(fetch-main-list): fetch-main-%: fetch-cleanup-% xsltproc $(SCRIPTS_DIR)/fetch-images.xslt manual/$(lang)/freedombox-manual.raw.xml | \ sort -u | \ awk 'NF {print "wget --quiet -O manual/$(lang)/images/" $$1 " " $$2}' | \ - sh + sh -e rm manual/$(lang)/freedombox-manual.raw.xml fetch-pages-%: lang = $* diff --git a/doc/manual/en/BeagleBone.raw.wiki b/doc/manual/en/BeagleBone.raw.wiki index 6484da94d..68948c78c 100644 --- a/doc/manual/en/BeagleBone.raw.wiki +++ b/doc/manual/en/BeagleBone.raw.wiki @@ -10,7 +10,7 @@ !FreedomBox SD card [[FreedomBox/Download|images]] are available for this device. Follow the instructions on the [[FreedomBox/Download|download]] page to create a !FreedomBox SD card and boot the device. -Note: This image is for !BeagleBone Black (Revision C.1) only. It will not work on the !BeagleBone Green, and also not on the Revisions A&B. If you have such a device and would like to help getting !FreedomBox to run on it, contact us! +Note: This image is for !BeagleBone Black (Revision C.1) only. It will not work on the !BeagleBone Green, and also not on the Revisions A & B. An alternative to downloading these images is to [[InstallingDebianOn/TI/BeagleBone|install Debian]] on the !BeagleBone and then [[FreedomBox/Hardware/Debian|install FreedomBox]] on it. diff --git a/doc/manual/en/Calibre.raw.wiki b/doc/manual/en/Calibre.raw.wiki index 835510057..567c3b0bf 100644 --- a/doc/manual/en/Calibre.raw.wiki +++ b/doc/manual/en/Calibre.raw.wiki @@ -1,7 +1,7 @@ #language en ##TAG:TRANSLATION-HEADER-START -~- [[de/FreedomBox/Manual/Calibre|Deutsch]] - [[FreedomBox/Manual/Calibre|English]] - [[es/FreedomBox/Manual/Calibre|Español]] - [[DebianWiki/EditorGuide#translation|(+)]]-~ +~- [[de/FreedomBox/Manual/Calibre|Deutsch]] - [[FreedomBox/Manual/Calibre|English]] - [[es/FreedomBox/Manual/Calibre|Español]] - [[hu/FreedomBox/Manual/Calibre|Magyar]] - [[DebianWiki/EditorGuide#translation|(+)]]-~ ##TAG:TRANSLATION-HEADER-END <> diff --git a/doc/manual/en/Coturn.raw.wiki b/doc/manual/en/Coturn.raw.wiki index 44025404b..adf74018f 100644 --- a/doc/manual/en/Coturn.raw.wiki +++ b/doc/manual/en/Coturn.raw.wiki @@ -1,7 +1,7 @@ #language en ##TAG:TRANSLATION-HEADER-START -~- [[de/FreedomBox/Manual/Coturn|Deutsch]] - [[FreedomBox/Manual/Coturn|English]] - [[es/FreedomBox/Manual/Coturn|Español]] - [[DebianWiki/EditorGuide#translation|(+)]] -~ +~- [[de/FreedomBox/Manual/Coturn|Deutsch]] - [[FreedomBox/Manual/Coturn|English]] - [[es/FreedomBox/Manual/Coturn|Español]] - [[hu/FreedomBox/Manual/Coturn|Magyar]] - [[DebianWiki/EditorGuide#translation|(+)]] -~ ##TAG:TRANSLATION-HEADER-END <> @@ -21,7 +21,7 @@ Coturn is configured in !FreedomBox as an advanced app. This means that you need === How it works === -When making an audio/video call, it is best to route the media streams between two peers directly. This will give the best possible latency (better signal quality) and avoid depending on a centralized server (privacy). It scales well because a simple chat server can host thousands of calls without involving the server in any way other than to setup the call. However, this approach does not work most of the time to due to how networks are configured. Most peers on the network do not have a unique IP address allocated to them. They work hidden behind a network device that performs "Network Address Translation" (NAT) for them. This means that the two peers have no way of reaching each other. +When making an audio/video call, it is best to route the media streams between two peers directly. This will give the best possible latency (better signal quality) and avoid depending on a centralized server (privacy). It scales well because a simple chat server can host thousands of calls without involving the server in any way other than to setup the call. However, this approach does not work most of the time due to how networks are configured. Most peers on the network do not have a unique IP address allocated to them. They work hidden behind a network device that performs "Network Address Translation" (NAT) for them. This means that the two peers have no way of reaching each other. To address this problem, a simple technique known as STUN was introduced. With the help of a third party STUN server, the peers can trick the NAT devices, to carry the traffic between the two peers. Unfortunately, this trick only works about 80% of the time. So, if STUN fails, peers have no choice but to route their traffic through an intermediary server called TURN server. All the mechanism of trying out STUN first and then falling back to TURN is described in a protocol known as [[https://en.wikipedia.org/wiki/Interactive_Connectivity_Establishment|ICE]]. @@ -31,18 +31,9 @@ In summary, a communication server needs to know the URLs of the STUN/TURN serve === Configuring Matrix Synapse === -Matrix Synapse server in !FreedomBox can be configured to use Coturn TURN/STUN server. In future, when you install Matrix Synapse, !FreedomBox will automatically install Coturn and configure its parameters into Matrix Synapse. To configure Matrix Synapse, edit the file ''/etc/matrix-synapse/homeserver.yaml'' with the following lines: +To configure Matrix Synapse to use Coturn TURN/STUN server, you need to check "Automatically manage audio/video call setup" in Matrix Synapse's configuration section, and then click on "Update seup". -{{{ -turn_uris: [ "stun:myfreedombox.example.org:3478?transport=udp", "stun:myfreedombox.example.org:3478?transport=tcp", "turn:myfreedombox.example.org:3478?transport=udp", "turn:myfreedombox.example.org:3478?transport=tcp" ] -turn_shared_secret: "my-freedombox-provided-secret" -turn_user_lifetime: 86400000 -turn_allow_guests: True -}}} - -The value for the `turn_shared_secret` is provided as `static-auth-secret` in `/etc/coturn/freedombox.conf` file. - -And then restart matrix-synapse server by disabling and re-enabling the matrix-synapse app. +{{attachment:matrix_with_coturn.png|Matrix with Coturn|width=800}} === Port Forwarding === diff --git a/doc/manual/en/Deluge.raw.wiki b/doc/manual/en/Deluge.raw.wiki index 6a01173c2..481ddb4c3 100644 --- a/doc/manual/en/Deluge.raw.wiki +++ b/doc/manual/en/Deluge.raw.wiki @@ -1,7 +1,7 @@ #language en ##TAG:TRANSLATION-HEADER-START -~- [[de/FreedomBox/Manual/Deluge|Deutsch]] - [[FreedomBox/Manual/Deluge|English]] - [[es/FreedomBox/Manual/Deluge|Español]] - [[DebianWiki/EditorGuide#translation|(+)]]-~ +~- [[de/FreedomBox/Manual/Deluge|Deutsch]] - [[FreedomBox/Manual/Deluge|English]] - [[es/FreedomBox/Manual/Deluge|Español]] - [[hu/FreedomBox/Manual/Deluge|Magyar]] - [[DebianWiki/EditorGuide#translation|(+)]]-~ ##TAG:TRANSLATION-HEADER-END <> diff --git a/doc/manual/en/Ikiwiki.raw.wiki b/doc/manual/en/Ikiwiki.raw.wiki index 29614927d..65bf9ba51 100644 --- a/doc/manual/en/Ikiwiki.raw.wiki +++ b/doc/manual/en/Ikiwiki.raw.wiki @@ -1,7 +1,7 @@ #language en ##TAG:TRANSLATION-HEADER-START -~- [[de/FreedomBox/Manual/Ikiwiki|Deutsch]] - [[FreedomBox/Manual/Ikiwiki|English]] - [[es/FreedomBox/Manual/Ikiwiki|Español]] - [[DebianWiki/EditorGuide#translation|(+)]] -~ +~- [[de/FreedomBox/Manual/Ikiwiki|Deutsch]] - [[FreedomBox/Manual/Ikiwiki|English]] - [[es/FreedomBox/Manual/Ikiwiki|Español]] - [[hu/FreedomBox/Manual/Ikiwiki|Magyar]] - [[DebianWiki/EditorGuide#translation|(+)]] -~ ##TAG:TRANSLATION-HEADER-END <> @@ -16,25 +16,19 @@ === What is Ikiwiki? === Ikiwiki converts wiki pages into HTML pages suitable for publishing on a website. It provides particularly blogging, podcasting, calendars and a large selection of plugins. -=== Quick Start === - -After the app installation on your box administration interface: - * Go to "Create" section and create a wiki or a blog - * Go back to "Configure" section and click on /ikiwiki link - * Click on your new wiki or blog name under "Parent directory" - * Enjoy your new publication page. - === Creating a wiki or blog === You can create a wiki or blog to be hosted on your !FreedomBox through the Wiki & Blog (Ikiwiki) page in !FreedomBox. The first time you visit this page, it will ask to install packages required by Ikiwiki. -After the package install has completed, select the Create tab. You can select the type to be Wiki or Blog. Also type in a name for the wiki or blog, and the username and password for the wiki's/blog's admin account. Then click Update setup and you will see the wiki/blog added to your list. Note that each wiki/blog has its own admin account. +After the package install has completed, select the "Create Wiki or Blog" button. +{{attachment:create_wiki_or_blog.png|ikiwiki: Manage|width=800}} -{{attachment:ikiwiki_create.png|ikiwiki: Create|width=800}} +You can select the type to be Wiki or Blog. Also type in a name for the wiki or blog, and the username and password for the wiki's/blog's admin account. Then click Update setup and you will see the wiki/blog added to your list. Note that each wiki/blog has its own admin account. +{{attachment:create_wiki_or_blog_step_two.png|ikiwiki: Manage|width=800}} === Accessing your wiki or blog === -From the Wiki & Blog (Ikiwiki) page, select the Manage tab and you will see a list of your wikis and blogs. Click a name to navigate to that wiki or blog. +Your wikis and blogs are listed in the Ikiwiki app. Clicking on your site's name will bring you to its start page. -{{attachment:ikiwiki_manage.png|ikiwiki: Manage|width=800}} +{{attachment:ikiwiki_site_list.png|ikiwiki: Manage|width=800}} From here, if you click Edit or Preferences, you will be taken to a login page. To log in with the admin account that you created before, select the Other tab, enter the username and password, and click Login. diff --git a/doc/manual/en/Introduction.raw.wiki b/doc/manual/en/Introduction.raw.wiki index b23620135..d8e641179 100644 --- a/doc/manual/en/Introduction.raw.wiki +++ b/doc/manual/en/Introduction.raw.wiki @@ -1,7 +1,7 @@ #language en ##TAG:TRANSLATION-HEADER-START -~-[[de/FreedomBox/Introduction|Deutsch]] - [[FreedomBox/Introduction|English]] - [[es/FreedomBox/Introduction|Español]] - [[fr/FreedomBox/Introduction|Français]] - [[ru/FreedomBox/Introduction|Русский]] - [[tr/FreedomBox/Introduction|Türkçe]] - [[DebianWiki/EditorGuide#translation|(+)]]-~ +~-[[de/FreedomBox/Introduction|Deutsch]] - [[FreedomBox/Introduction|English]] - [[es/FreedomBox/Introduction|Español]] - [[fr/FreedomBox/Introduction|Français]] - [[hu/FreedomBox/Introduction|Magyar]] - [[ru/FreedomBox/Introduction|Русский]] - [[tr/FreedomBox/Introduction|Türkçe]] - [[DebianWiki/EditorGuide#translation|(+)]]-~ ##TAG:TRANSLATION-HEADER-END ## BEGIN_INCLUDE diff --git a/doc/manual/en/MLDonkey.raw.wiki b/doc/manual/en/MLDonkey.raw.wiki deleted file mode 100644 index efc96e823..000000000 --- a/doc/manual/en/MLDonkey.raw.wiki +++ /dev/null @@ -1,60 +0,0 @@ -## page was renamed from FreedomBox/Manual/MLdonkey -#language en - -##TAG:TRANSLATION-HEADER-START -~- [[de/FreedomBox/Manual/MLDonkey|Deutsch]] - [[FreedomBox/Manual/MLDonkey|English]] - [[es/FreedomBox/Manual/MLDonkey|Español]] - [[DebianWiki/EditorGuide#translation|(+)]] -~ -##TAG:TRANSLATION-HEADER-END - -<> - -## BEGIN_INCLUDE - -== MLDonkey (Peer-to-peer File Sharing) == -|| {{attachment:MLDonkey-icon_en_V01.png|MLDonkey icon}} || - -'''Availability:''' MLDonkey is not available in either Bullseye (stable) or Bookworm (testing). - -=== What is MLDonkey? === - -MLDonkey is an open-source, multi-protocol, peer-to-peer file sharing application that runs as a back-end server application on many platforms. It can be controlled through a user interface provided by one of many separate front-ends, including a Web interface, telnet interface and over a dozen native client programs. - -Originally a Linux client for the eDonkey protocol, it now runs on many flavors of Unix-like, OS X, Microsoft Windows and MorphOS and supports numerous peer-to-peer protocols including ED2K (and Kademlia and Overnet), !BitTorrent, DC++ and more. - -Read more about MLDonkey at [[http://mldonkey.sourceforge.net/Main_Page|the MLDonkey Project Wiki]] - -=== Screenshot === - -{{attachment:mldonkey.jpg|MLDonkey Web Interface|width=800}} - -=== Using MLDonkey Web Interface === - -After installing MLDonkey, its web interface can be accessed from !FreedomBox at {{{https:///mldonkey}}}. Users belonging to the ''ed2k'' and ''admin'' groups can access this web interface. - -=== Using Desktop/Mobile Interface === - -Many [[http://mldonkey.sourceforge.net/Gui|desktop and mobile applications]] can be used to control MLDonkey. MLDonkey server will always be running on !FreedomBox. It will download files (or upload them) and store them on !FreedomBox even when your local machine is not running or connected to MLDonkey on !FreedomBox. Only users of ''admin'' group can access MLDonkey on !FreedomBox using desktop or mobile clients. This is due to restrictions on which group of users have SSH access into !FreedomBox. - - 1. Create an admin user or use an existing admin user. - - 1. On your desktop machine, open a terminal and run the following command. It is recommended that you configure and use SSH keys instead of passwords for the this step. - {{{ -$ ssh -L 4001:localhost:4001 -N exampleuser@example.freedombox.rocks - }}} - 1. Start the GUI application and then connect it to MLDonkey as if MLDonkey is running on the local desktop machine. After you are done, terminate the SSH command by pressing Control-C. - -See MLDonkey documentation for [[http://mldonkey.sourceforge.net/SshTunnel|SSH Tunnel]] for more information. - - -=== External links === - - * Website: http://mldonkey.sourceforge.net/Main_Page - - -## END_INCLUDE - -Back to [[FreedomBox/Features|Features introduction]] or [[FreedomBox/Manual|manual]] pages. - -<> - ----- -CategoryFreedomBox diff --git a/doc/manual/en/ReleaseNotes.raw.wiki b/doc/manual/en/ReleaseNotes.raw.wiki index 5e4ad0b42..c333e573b 100644 --- a/doc/manual/en/ReleaseNotes.raw.wiki +++ b/doc/manual/en/ReleaseNotes.raw.wiki @@ -6,10 +6,36 @@ For more technical details, see the [[https://salsa.debian.org/freedombox-team/f ## BEGIN_INCLUDE -= Release Notes = - The following are the release notes for each !FreedomBox version. +== FreedomBox 22.4 (2022-01-31) == + +=== Highlights === + + * coturn: Use wildcard listening address to fix startup issues + * sso, users: Redirect to home page after logout + +=== Other Changes === + + * apache: Don't redirect to HTTPS for .onion domains + * apache: Don't set HSTS for .onion domain + * cockpit: Explicitly redirect to HTTPS as needed for !WebSockets + * doc: Fail when downloading images from Debian wiki fails + * email_server: Drop showing diagnostics/repair and roundcube config + * email_server: Drop some unused code + * locale: Update translations for Bulgarian, Dutch, French, German, Hungarian, Russian, Swedish, Ukrainian + * matrixsynapse: Add !FluffyChat to client list + * mldonkey: Drop app not available in Debian Bullseye and Bookworm + * power: Add a link to power app in the system menu + * roundcube: Add setting for local connection only + * shaarli: Add android app to description + * shaarli: Add backup component + * shaarli: Add functional tests + * snapshots: Clarify that snapshots are take during updates too + * tests: functional: Implement a workaround for issue with screenshots + * users: Clarify help message for authorization password + * wireguard: tests: Add functional tests + == FreedomBox 22.3 (2022-01-17) == === Highlights === diff --git a/doc/manual/en/Sharing.raw.wiki b/doc/manual/en/Sharing.raw.wiki index 3d136556f..d2669907e 100644 --- a/doc/manual/en/Sharing.raw.wiki +++ b/doc/manual/en/Sharing.raw.wiki @@ -38,7 +38,7 @@ The content doesn't need to be provided by an admin either. Any user with write Multiple shares might point to the same content. -If you are user of !FreedomBox and your admin refuses to create shares for you, and you don't need to restrict the access to your content, you still can fall back to the [[FreedomBox/Manual/Apache_userdir|User Websites]] mechanism or the P2P networks ([[FreedomBox/Manual/Deluge|Deluge]] or [[FreedomBox/Manual/Transmission|Transmission]] for Torrent, or [[FreedomBox/Manual/MLDonkey|MLDonkey]]) to publish your files. +If you are user of !FreedomBox and your admin refuses to create shares for you, and you don't need to restrict the access to your content, you still can fall back to the [[FreedomBox/Manual/Apache_userdir|User Websites]] mechanism or the P2P networks ([[FreedomBox/Manual/Deluge|Deluge]] or [[FreedomBox/Manual/Transmission|Transmission]] for Torrent) to publish your files. === Technicalities === Sharing will share the content using the built-in Apache web server. diff --git a/doc/manual/en/bepasty.raw.wiki b/doc/manual/en/bepasty.raw.wiki index bf8ce3638..d55cd6382 100644 --- a/doc/manual/en/bepasty.raw.wiki +++ b/doc/manual/en/bepasty.raw.wiki @@ -1,7 +1,7 @@ #language en ##TAG:TRANSLATION-HEADER-START -~- [[de/FreedomBox/Manual/bepasty|Deutsch]] - [[FreedomBox/Manual/bepasty|English]] - [[es/FreedomBox/Manual/bepasty|Español]] - [[DebianWiki/EditorGuide#translation|(+)]] -~ +~- [[de/FreedomBox/Manual/bepasty|Deutsch]] - [[FreedomBox/Manual/bepasty|English]] - [[es/FreedomBox/Manual/bepasty|Español]] - [[hu/FreedomBox/Manual/bepasty|Magyar]] - [[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 86d2f3512..1ec9d42b2 100644 --- a/doc/manual/en/freedombox-manual.raw.wiki +++ b/doc/manual/en/freedombox-manual.raw.wiki @@ -30,7 +30,6 @@ <> <> <> -<> <> <> <> @@ -97,6 +96,8 @@ <> <> += Release Notes = + <> = Contributing = diff --git a/doc/manual/en/images/MLDonkey-icon_en_V01.png b/doc/manual/en/images/MLDonkey-icon_en_V01.png deleted file mode 100644 index 0d2a77245..000000000 Binary files a/doc/manual/en/images/MLDonkey-icon_en_V01.png and /dev/null differ diff --git a/doc/manual/en/images/create_wiki_or_blog.png b/doc/manual/en/images/create_wiki_or_blog.png new file mode 100644 index 000000000..8a6c50083 Binary files /dev/null and b/doc/manual/en/images/create_wiki_or_blog.png differ diff --git a/doc/manual/en/images/create_wiki_or_blog_step_two.png b/doc/manual/en/images/create_wiki_or_blog_step_two.png new file mode 100644 index 000000000..881747e9b Binary files /dev/null and b/doc/manual/en/images/create_wiki_or_blog_step_two.png differ diff --git a/doc/manual/en/images/ikiwiki_create.png b/doc/manual/en/images/ikiwiki_create.png deleted file mode 100644 index 76c3b771f..000000000 Binary files a/doc/manual/en/images/ikiwiki_create.png and /dev/null differ diff --git a/doc/manual/en/images/ikiwiki_manage.png b/doc/manual/en/images/ikiwiki_manage.png deleted file mode 100644 index 56e5f616f..000000000 Binary files a/doc/manual/en/images/ikiwiki_manage.png and /dev/null differ diff --git a/doc/manual/en/images/ikiwiki_site_list.png b/doc/manual/en/images/ikiwiki_site_list.png new file mode 100644 index 000000000..dd03ffb93 Binary files /dev/null and b/doc/manual/en/images/ikiwiki_site_list.png differ diff --git a/doc/manual/en/images/matrix_with_coturn.png b/doc/manual/en/images/matrix_with_coturn.png new file mode 100644 index 000000000..58be7e5b9 Binary files /dev/null and b/doc/manual/en/images/matrix_with_coturn.png differ diff --git a/doc/manual/en/images/mldonkey.jpg b/doc/manual/en/images/mldonkey.jpg deleted file mode 100644 index bad7549c9..000000000 Binary files a/doc/manual/en/images/mldonkey.jpg and /dev/null differ diff --git a/doc/manual/es/BeagleBone.raw.wiki b/doc/manual/es/BeagleBone.raw.wiki index 6484da94d..68948c78c 100644 --- a/doc/manual/es/BeagleBone.raw.wiki +++ b/doc/manual/es/BeagleBone.raw.wiki @@ -10,7 +10,7 @@ !FreedomBox SD card [[FreedomBox/Download|images]] are available for this device. Follow the instructions on the [[FreedomBox/Download|download]] page to create a !FreedomBox SD card and boot the device. -Note: This image is for !BeagleBone Black (Revision C.1) only. It will not work on the !BeagleBone Green, and also not on the Revisions A&B. If you have such a device and would like to help getting !FreedomBox to run on it, contact us! +Note: This image is for !BeagleBone Black (Revision C.1) only. It will not work on the !BeagleBone Green, and also not on the Revisions A & B. An alternative to downloading these images is to [[InstallingDebianOn/TI/BeagleBone|install Debian]] on the !BeagleBone and then [[FreedomBox/Hardware/Debian|install FreedomBox]] on it. diff --git a/doc/manual/es/Coturn.raw.wiki b/doc/manual/es/Coturn.raw.wiki index 1f5e80705..57ac9431a 100644 --- a/doc/manual/es/Coturn.raw.wiki +++ b/doc/manual/es/Coturn.raw.wiki @@ -29,18 +29,9 @@ En resumen, un servidor de comunicaciones necesita saber las URLs de los servido === Configurar Matrix Synapse === -El servidor de Matrix Synapse de !FreedomBox se puede configurar para que use el servidor de TURN/STUN Coturn. En el futuro, cuando instales Matrix Synapse !FreedomBox instalará Coturn automáticamente y configurará sus parámetros en Matrix Synapse. Para configurar Matrix Synapse, edita el fichero ''/etc/matrix-synapse/homeserver.yaml'' con las siguientes líneas: +Para configurar Matrix Synapse para que use el servidor de TURN/STUN Coturn tienes que marcar "Gestionar automáticamente el establecimiento de llamadas de audio/video" en la sección de configuración de Matrix Synapse y a continuación clicar en "Actualizar configuración". -{{{ -turn_uris: [ "stun:myfreedombox.example.org:3478?transport=udp", "stun:myfreedombox.example.org:3478?transport=tcp", "turn:myfreedombox.example.org:3478?transport=udp", "turn:myfreedombox.example.org:3478?transport=tcp" ] -turn_shared_secret: "my-freedombox-provided-secret" -turn_user_lifetime: 86400000 -turn_allow_guests: True -}}} - -El valor para `turn_shared_secret` se proporciona como `static-auth-secret` en el archivo `/etc/coturn/freedombox.conf`. - -Y luego reinicia el servidor matrix-synapse deshabilitando y rehabilitando la app de matrix-synapse. +{{attachment:FreedomBox/Manual/Coturn/matrix_with_coturn.png|Matrix with Coturn|width=800}} === Redirección de Puertos === diff --git a/doc/manual/es/Ikiwiki.raw.wiki b/doc/manual/es/Ikiwiki.raw.wiki index 466710d28..11cc4ca9b 100644 --- a/doc/manual/es/Ikiwiki.raw.wiki +++ b/doc/manual/es/Ikiwiki.raw.wiki @@ -12,25 +12,20 @@ === ¿Qué es Ikiwiki? === ''Ikiwiki'' convierte páginas wiki a páginas HTML listas para publicar en un sitio web. En particular, proporciona blogs, podcasts, calendarios y una amplia selección de extensiones (''plugins''). -=== Inicio rápido === - -Tras instalar la app en el interfaz de administración de tu !FreedomBox: - * Ve a la sección ''Crear'' y crea un wiki o un blog. - * Vuelve a la sección ''Configurar'' y haz clic en el enlace /ikiwiki. - * Haz clic en el nombre de tu nuevo wiki o blog bajo ''Directorio Padre''. - * Disfruta de tu nueva página de publicación. - === Crear un wiki o blog === Puedes crear un wiki o blog para albergarlo en tu !FreedomBox mediante la página ''Wiki y Blog (Ikiwiki)''. La primera vez que visites esta página te pedirá instalar paquetes requiridos por Ikiwiki. -Tras completar la instalación de paquetes selecciona la solapa Crear. Puedes elegir el tipo: Wiki o Blog. Teclea también un nombre para el wiki o blog, y el usuario y contraseña para su cuenta de administrador. Al hacer clic en ''Actualizar configuración'' verás el wiki/blog añadido a tu lista. Observa que cada wiki/blog tiene su propia cuenta de administrador. +Tras completar la instalación de paquetes selecciona la solapa Crear. +{{attachment:FreedomBox/Manual/Ikiwiki/create_wiki_or_blog.png|ikiwiki: Administrar|width=800}} -{{attachment:ikiwiki_create.png|ikiwiki: Create|width=800}} +Puedes elegir el tipo: Wiki o Blog. Teclea también un nombre para el wiki o blog, y el usuario y contraseña para su cuenta de administrador. Al hacer clic en ''Actualizar configuración'' verás el wiki/blog añadido a tu lista. Observa que cada wiki/blog tiene su propia cuenta de administrador. + +{{attachment:FreedomBox/Manual/Ikiwiki/create_wiki_or_blog_step_two.png|ikiwiki: Manage|width=800}} === Acceder a tu wiki o blog === -Desde la página de ''Wiki y Blog (Ikiwiki)'' selecciona la solapa ''Administrar'' y verás una lista de tus wikis y blogs. Haz clic en un nombre para navegar a ese wiki o blog. +Tus wikis y blogs se listan en la app de Ikiwiki. Hacer clic en tu sitio web te llevará a su página de inicio. -{{attachment:ikiwiki_manage.png|ikiwiki: Manage|width=800}} +{{attachment:FreedomBox/Manual/Ikiwiki/ikiwiki_site_list.png|ikiwiki: Manage|width=800}} Desde aquí, si le das a ''Editar'' o a ''Preferencias'' se te llevará a una página de ingreso. Para ingresar con la cuenta de administrador que creaste antes selecciona la solapa ''Otros'', introduce el usuario y la contraseña y haz clic en ''Ingresar''. diff --git a/doc/manual/es/MLDonkey.raw.wiki b/doc/manual/es/MLDonkey.raw.wiki deleted file mode 100644 index fe98c0048..000000000 --- a/doc/manual/es/MLDonkey.raw.wiki +++ /dev/null @@ -1,57 +0,0 @@ -## page was renamed from FreedomBox/Manual/MLdonkey -#language es - -<> - -<> - -## BEGIN_INCLUDE - -== MLDonkey (Compartir archivos entre pares) == -|| {{attachment:FreedomBox/Manual/MLDonkey/MLDonkey-icon_en_V01.png|icono de MLDonkey}} || - -'''Disponible desde:''' versión 0.48.0, pero ya no está disponible ni en Bullseye (estable) ni en Bookworm (en pruebas). -=== ¿Qué es MLDonkey? === - -''MLDonkey'' es una aplicación libre y multiprotocolo para compartir archivos entre pares (P2P) que ejecuta un servidor ''back-end'' sobre muchas plataformas. Se puede controlar mediante algún interfaz ''front-end'', ya sea web, telnet o cualquier otro de entre una docena de programas cliente nativos. - -Originalmente era un cliente Linux para el protocolo eDonkey pero ahora se ejecuta en multiples sabores de Unix y derivados, OS X, Microsoft Windows y MorphOS. Y soporta muchos protocolos P2P, incluyendo ED2K (y Kademlia sobre Overnet), !BitTorrent, DC++ y más. - -Más información acerca de MLDonkey en [[http://mldonkey.sourceforge.net/Main_Page|el Wiki del Proyecto MLDonkey]] - -=== Captura de Pantalla === - -{{attachment:mldonkey.jpg|MLDonkey Web Interface|width=800}} - -=== Usar el Interfaz Web MLDonkey === - -Tras instalar MLDonkey su interfaz web está accesible a los usuarios de los grupos ''ed2k'' y ''admin'' en {{{https:///mldonkey}}}. - -=== Usar el Interfaz para Escritorio/Móvil === - -Se pueden usar muchas [[http://mldonkey.sourceforge.net/Gui|aplicaciones de escritorio y móviles]] para controlar a MLDonkey. El servidor MLDonkey estará ejecutándose siempre en la !FreedomBox y (cargará o) descargará archivos y los mantendrá almacenados incluso cuando tu máquina local esté apagada o desconectada del MLDonkey de !FreedomBox. Por restricciones de acceso via SSH a la !FreedomBox solo los usuarios del grupo ''admin'' pueden acceder a su MLDonkey. - - 1. Crea un usuario nuevo en el grupo admin o usa uno que ya esté allí. - - 1. En tu máquina de escritorio abre una terminal y ejecuta el siguiente comando. Para este paso se recomienda que configures y uses claves SSH en vez de contraseñas. - {{{ -$ ssh -L 4001:localhost:4001 -N usuario_de_ejemplo@ejemplo.freedombox.mola - }}} - 1. Arranca la aplicación gráfica y conéctala a MLDonkey como si MLDonkey se estuviera ejecutando en la máquina local de escritorio. Cuando hayas terminado mata el proceso SSH pulsando Control-C. - -Para más información lee acerca de los [[http://mldonkey.sourceforge.net/SshTunnel|túneles SSH]] en la documentación MLDonkey. - - -=== Enlaces externos === - - * Sitio web: http://mldonkey.sourceforge.net/Main_Page - - -## END_INCLUDE - -Volver a la [[es/FreedomBox/Features|descripción de Funcionalidades]] o a las páginas del [[es/FreedomBox/Manual|manual]]. - -<> - ----- -CategoryFreedomBox diff --git a/doc/manual/es/Manual.raw.wiki b/doc/manual/es/Manual.raw.wiki index 86d2f3512..1ec9d42b2 100644 --- a/doc/manual/es/Manual.raw.wiki +++ b/doc/manual/es/Manual.raw.wiki @@ -30,7 +30,6 @@ <> <> <> -<> <> <> <> @@ -97,6 +96,8 @@ <> <> += Release Notes = + <> = Contributing = diff --git a/doc/manual/es/ReleaseNotes.raw.wiki b/doc/manual/es/ReleaseNotes.raw.wiki index 5e4ad0b42..c333e573b 100644 --- a/doc/manual/es/ReleaseNotes.raw.wiki +++ b/doc/manual/es/ReleaseNotes.raw.wiki @@ -6,10 +6,36 @@ For more technical details, see the [[https://salsa.debian.org/freedombox-team/f ## BEGIN_INCLUDE -= Release Notes = - The following are the release notes for each !FreedomBox version. +== FreedomBox 22.4 (2022-01-31) == + +=== Highlights === + + * coturn: Use wildcard listening address to fix startup issues + * sso, users: Redirect to home page after logout + +=== Other Changes === + + * apache: Don't redirect to HTTPS for .onion domains + * apache: Don't set HSTS for .onion domain + * cockpit: Explicitly redirect to HTTPS as needed for !WebSockets + * doc: Fail when downloading images from Debian wiki fails + * email_server: Drop showing diagnostics/repair and roundcube config + * email_server: Drop some unused code + * locale: Update translations for Bulgarian, Dutch, French, German, Hungarian, Russian, Swedish, Ukrainian + * matrixsynapse: Add !FluffyChat to client list + * mldonkey: Drop app not available in Debian Bullseye and Bookworm + * power: Add a link to power app in the system menu + * roundcube: Add setting for local connection only + * shaarli: Add android app to description + * shaarli: Add backup component + * shaarli: Add functional tests + * snapshots: Clarify that snapshots are take during updates too + * tests: functional: Implement a workaround for issue with screenshots + * users: Clarify help message for authorization password + * wireguard: tests: Add functional tests + == FreedomBox 22.3 (2022-01-17) == === Highlights === diff --git a/doc/manual/es/Sharing.raw.wiki b/doc/manual/es/Sharing.raw.wiki index 0b9a05f4c..64edde0e4 100644 --- a/doc/manual/es/Sharing.raw.wiki +++ b/doc/manual/es/Sharing.raw.wiki @@ -37,7 +37,7 @@ No hay que ser administrador para provisionar el contenido. Cualquier usuario co Varias comparticiones podrían apuntar al mismo contenido. -Si eres usuario de !FreedomBox y tu administrador se niega a crearte comparticiones, y no necesitas restringir el acceso a tu contenido, todavía puedes recurrir al mecanismo de [[es/FreedomBox/Manual/Apache_userdir|Sitios web de Usuario]] o a las redes entre pares (P2P) ([[es/FreedomBox/Manual/Deluge|Deluge]] o [[es/FreedomBox/Manual/Transmission|Transmission]] para Torrent, o [[es/FreedomBox/Manual/MLDonkey|MLDonkey]]) para publicar tus archivos. +Si eres usuario de !FreedomBox y tu administrador se niega a crearte comparticiones, y no necesitas restringir el acceso a tu contenido, todavía puedes recurrir al mecanismo de [[es/FreedomBox/Manual/Apache_userdir|Sitios web de Usuario]] o a las redes entre pares (P2P) ([[es/FreedomBox/Manual/Deluge|Deluge]] o [[es/FreedomBox/Manual/Transmission|Transmission]] para Torrent) para publicar tus archivos. === Tecnicismos === ''Sharing'' compartirá el contenido usando el servidor web Apache que viene de serie. diff --git a/doc/manual/es/freedombox-manual.raw.wiki b/doc/manual/es/freedombox-manual.raw.wiki index 53700ce78..15cf33344 100644 --- a/doc/manual/es/freedombox-manual.raw.wiki +++ b/doc/manual/es/freedombox-manual.raw.wiki @@ -29,7 +29,6 @@ <> <> <> -<> <> <> <> @@ -96,6 +95,8 @@ <> <> += Release Notes = + <> = Contribuir = diff --git a/doc/manual/es/images/MLDonkey-icon_en_V01.png b/doc/manual/es/images/MLDonkey-icon_en_V01.png deleted file mode 100644 index 0d2a77245..000000000 Binary files a/doc/manual/es/images/MLDonkey-icon_en_V01.png and /dev/null differ diff --git a/doc/manual/es/images/create_wiki_or_blog.png b/doc/manual/es/images/create_wiki_or_blog.png new file mode 100644 index 000000000..8a6c50083 Binary files /dev/null and b/doc/manual/es/images/create_wiki_or_blog.png differ diff --git a/doc/manual/es/images/create_wiki_or_blog_step_two.png b/doc/manual/es/images/create_wiki_or_blog_step_two.png new file mode 100644 index 000000000..881747e9b Binary files /dev/null and b/doc/manual/es/images/create_wiki_or_blog_step_two.png differ diff --git a/doc/manual/es/images/ikiwiki_create.png b/doc/manual/es/images/ikiwiki_create.png deleted file mode 100644 index 76c3b771f..000000000 Binary files a/doc/manual/es/images/ikiwiki_create.png and /dev/null differ diff --git a/doc/manual/es/images/ikiwiki_manage.png b/doc/manual/es/images/ikiwiki_manage.png deleted file mode 100644 index 56e5f616f..000000000 Binary files a/doc/manual/es/images/ikiwiki_manage.png and /dev/null differ diff --git a/doc/manual/es/images/ikiwiki_site_list.png b/doc/manual/es/images/ikiwiki_site_list.png new file mode 100644 index 000000000..dd03ffb93 Binary files /dev/null and b/doc/manual/es/images/ikiwiki_site_list.png differ diff --git a/doc/manual/es/images/matrix_with_coturn.png b/doc/manual/es/images/matrix_with_coturn.png new file mode 100644 index 000000000..58be7e5b9 Binary files /dev/null and b/doc/manual/es/images/matrix_with_coturn.png differ diff --git a/doc/manual/es/images/mldonkey.jpg b/doc/manual/es/images/mldonkey.jpg deleted file mode 100644 index bad7549c9..000000000 Binary files a/doc/manual/es/images/mldonkey.jpg and /dev/null differ diff --git a/plinth/__init__.py b/plinth/__init__.py index 24b808a96..fc2011a64 100644 --- a/plinth/__init__.py +++ b/plinth/__init__.py @@ -3,4 +3,4 @@ Package init file. """ -__version__ = '22.3' +__version__ = '22.4' diff --git a/plinth/locale/ar_SA/LC_MESSAGES/django.po b/plinth/locale/ar_SA/LC_MESSAGES/django.po index 6d88588fe..e65885428 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: 2022-01-11 19:11-0500\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" "PO-Revision-Date: 2020-06-10 15:41+0000\n" "Last-Translator: aiman an \n" "Language-Team: Arabic (Saudi Arabia) ." msgstr "" -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -4816,10 +4739,21 @@ msgid "" "a>)." msgstr "" -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 msgid "Email Client" msgstr "" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -5142,24 +5076,28 @@ msgstr "" msgid "Updated security configuration" msgstr "" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "" -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." msgstr "" -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 msgid "Bookmarks" msgstr "" +#: plinth/modules/shaarli/manifest.py:12 +msgid "Shaarlier" +msgstr "" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -5366,7 +5304,9 @@ msgid "Software Installation Snapshots" msgstr "" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "" #: plinth/modules/snapshot/forms.py:32 @@ -5584,6 +5524,10 @@ msgstr "" msgid "Login" msgstr "" +#: plinth/modules/sso/views.py:101 +msgid "Logged out successfully." +msgstr "" + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -6317,15 +6261,17 @@ msgstr "" msgid "Authorization Password" msgstr "" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, python-brace-format +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "" -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 msgid "Invalid password." msgstr "" -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 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 " @@ -6334,62 +6280,62 @@ msgid "" "SSH and have administrative privileges (sudo)." msgstr "" -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, python-brace-format msgid "Creating LDAP user failed: {error}" msgstr "" -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, python-brace-format msgid "Failed to add new user to {group} group: {error}" msgstr "" -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " "line. Blank lines and lines starting with # will be ignored." msgstr "" -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "" -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "" -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "" -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "" -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 msgid "Failed to change user status." msgstr "" -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "" -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, python-brace-format msgid "Failed to add new user to admin group: {error}" msgstr "" -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, python-brace-format msgid "Failed to restrict console access: {error}" msgstr "" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "" @@ -6673,15 +6619,15 @@ msgstr "" msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "" diff --git a/plinth/locale/bg/LC_MESSAGES/django.po b/plinth/locale/bg/LC_MESSAGES/django.po index f5ac0bdc7..ecd91fe8a 100644 --- a/plinth/locale/bg/LC_MESSAGES/django.po +++ b/plinth/locale/bg/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-11 19:11-0500\n" -"PO-Revision-Date: 2021-10-19 15:13+0000\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" +"PO-Revision-Date: 2022-01-22 21:55+0000\n" "Last-Translator: 109247019824 \n" "Language-Team: Bulgarian \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.9-dev\n" +"X-Generator: Weblate 4.11-dev\n" #: doc/dev/_templates/layout.html:11 msgid "Page source" @@ -165,7 +165,7 @@ msgid "" "remote backup location or an extra attached disk." msgstr "" "Направете график за автоматично архивиране за безопасност на данните. " -"Предпочитайте шифровано местоположение за отдалечено архивиране или " +"Предпочетете шифровано местоположение за отдалечено архивиране или " "допълнително свързан диск." #: plinth/modules/backups/__init__.py:205 @@ -327,7 +327,7 @@ msgid "" "\"Key in Repository\" means that a password-protected key is stored with the " "backup." msgstr "" -"„Ключ в хранилището“ означава, че ключ защитен с парола се съхранява заедно " +"„Ключ в хранилището“ означава, че защитен с парола ключ се съхранява заедно " "с резервното копие." #: plinth/modules/backups/forms.py:176 @@ -429,8 +429,8 @@ msgstr "Достъпът през SSH е отказан" #: plinth/modules/backups/repository.py:64 msgid "Repository path is neither empty nor is an existing backups repository." msgstr "" -"Пътят до хранилището не е празен, нито е съществуващо хранилище за резервни " -"копия." +"Папката на хранилището не е празна, а и не е съществуващо хранилище за " +"резервни копия." #: plinth/modules/backups/repository.py:143 msgid "Existing repository is not encrypted." @@ -460,19 +460,19 @@ msgstr "Качване и възстановяване" #: plinth/modules/backups/templates/backups.html:31 msgid "Add a backup location" -msgstr "Добавяне на местоположение за архивиране" +msgstr "Добавяне на хранилище за резервни копия" #: plinth/modules/backups/templates/backups.html:35 msgid "Add Backup Location" -msgstr "Добавяне на местоположение за резервни копия" +msgstr "Добавяне на хранилище за резервни копия" #: plinth/modules/backups/templates/backups.html:38 msgid "Add a remote backup location" -msgstr "Добавяне на отдалечено местоположение за резервни копия" +msgstr "Добавяне на отдалечено хранилище за резервни копия" #: plinth/modules/backups/templates/backups.html:42 msgid "Add Remote Backup Location" -msgstr "Добавяне на отдалечено местоположение за резервни копия" +msgstr "Добавяне на отдалечено хранилище за резервни копия" #: plinth/modules/backups/templates/backups.html:46 msgid "Existing Backups" @@ -485,15 +485,18 @@ msgid "" "To restore a backup on a new %(box_name)s you need the SSH credentials and, " "if chosen, the encryption passphrase." msgstr "" +"Данните за достъп до хранилището се съхраняват в устройство „%(box_name)s“." +"
За да възстановите от архивно копие на %(box_name)s са ви е необходими " +"данните за достъп през SSH и, ако е избрано шифроване, шифроващата фраза." #: plinth/modules/backups/templates/backups_add_remote_repository.html:28 msgid "Create Location" -msgstr "" +msgstr "Добавяне на хранилище" #: plinth/modules/backups/templates/backups_add_repository.html:19 #: plinth/modules/gitweb/views.py:50 msgid "Create Repository" -msgstr "" +msgstr "Създаване на хранилище" #: plinth/modules/backups/templates/backups_delete.html:12 msgid "Delete this archive permanently?" @@ -531,15 +534,17 @@ msgstr "График" #: plinth/modules/backups/templates/backups_repository.html:40 msgid "Unmount Location" -msgstr "" +msgstr "Изключване на хранилище" #: plinth/modules/backups/templates/backups_repository.html:51 msgid "Mount Location" -msgstr "" +msgstr "Включване на хранилище" #: plinth/modules/backups/templates/backups_repository.html:62 msgid "Remove Backup Location. This will not delete the remote backup." msgstr "" +"Премахване на хранилище за резервни копия. Данните в хранилището няма да " +"бъдат премахнати." #: plinth/modules/backups/templates/backups_repository.html:83 msgid "Download" @@ -557,17 +562,20 @@ msgstr "" #: plinth/modules/backups/templates/backups_repository_remove.html:13 msgid "Are you sure that you want to remove this repository?" -msgstr "" +msgstr "Сигурни ли сте, че желаете да премахнете хранилището?" #: plinth/modules/backups/templates/backups_repository_remove.html:19 msgid "" "The remote repository will not be deleted. This just removes the repository " "from the listing on the backup page, you can add it again later on." msgstr "" +"Отдалеченото хранилище не е премахнато. Това действие го премахва само от " +"списъка на страницата за резервни копия, така че по-късно можете да го " +"добавите отново." #: plinth/modules/backups/templates/backups_repository_remove.html:31 msgid "Remove Location" -msgstr "" +msgstr "Премахване на хранилище" #: plinth/modules/backups/templates/backups_restore.html:15 msgid "Restore data from" @@ -669,15 +677,15 @@ msgstr "" #: plinth/modules/backups/views.py:289 msgid "No additional disks available to add a repository." -msgstr "" +msgstr "Няма допълнителни дискове, на които да бъде създадено хранилище." #: plinth/modules/backups/views.py:297 msgid "Create backup repository" -msgstr "" +msgstr "Създаване на хранилище за резервни копия" #: plinth/modules/backups/views.py:324 msgid "Create remote backup repository" -msgstr "" +msgstr "Създаване на отдалечено хранилище за резервни копия" #: plinth/modules/backups/views.py:344 msgid "Added new remote SSH repository." @@ -797,7 +805,7 @@ msgstr "" #: plinth/modules/bepasty/forms.py:27 #: plinth/modules/bepasty/templates/bepasty.html:30 -#: plinth/modules/users/forms.py:102 plinth/modules/users/forms.py:228 +#: plinth/modules/users/forms.py:108 plinth/modules/users/forms.py:234 msgid "Permissions" msgstr "" @@ -880,7 +888,7 @@ msgstr "" msgid "Configuration updated." msgstr "" -#: plinth/modules/bepasty/views.py:93 plinth/modules/email_server/views.py:107 +#: plinth/modules/bepasty/views.py:93 plinth/modules/email_server/views.py:41 #: plinth/modules/gitweb/views.py:117 plinth/modules/searx/views.py:41 #: plinth/modules/searx/views.py:52 plinth/modules/tor/views.py:159 #: plinth/modules/zoph/views.py:72 @@ -970,10 +978,10 @@ msgstr "" #: plinth/modules/bind/views.py:71 plinth/modules/coturn/views.py:39 #: plinth/modules/deluge/views.py:42 plinth/modules/dynamicdns/views.py:169 -#: plinth/modules/ejabberd/views.py:85 plinth/modules/email_server/views.py:104 +#: plinth/modules/ejabberd/views.py:85 plinth/modules/email_server/views.py:38 #: plinth/modules/matrixsynapse/views.py:124 plinth/modules/mumble/views.py:28 #: plinth/modules/pagekite/forms.py:78 plinth/modules/quassel/views.py:28 -#: plinth/modules/shadowsocks/views.py:59 +#: plinth/modules/roundcube/views.py:32 plinth/modules/shadowsocks/views.py:59 #: plinth/modules/transmission/views.py:47 plinth/modules/ttrss/views.py:26 #: plinth/modules/wordpress/views.py:37 msgid "Configuration updated" @@ -1377,18 +1385,15 @@ msgid "Diagnostics" msgstr "" #: plinth/modules/diagnostics/__init__.py:97 -#: plinth/modules/email_server/templates/email_server.html:37 msgid "passed" msgstr "" #: plinth/modules/diagnostics/__init__.py:98 -#: plinth/modules/email_server/templates/email_server.html:35 #: plinth/modules/networks/views.py:49 msgid "failed" msgstr "" #: plinth/modules/diagnostics/__init__.py:99 -#: plinth/modules/email_server/templates/email_server.html:33 msgid "error" msgstr "" @@ -1843,76 +1848,56 @@ msgstr "Пощенски сървър" msgid "Powered by Postfix, Dovecot & Rspamd" msgstr "" -#: plinth/modules/email_server/audit/ldap.py:69 +#: plinth/modules/email_server/audit/ldap.py:68 msgid "Postfix-Dovecot SASL integration" msgstr "" -#: plinth/modules/email_server/audit/ldap.py:70 +#: plinth/modules/email_server/audit/ldap.py:69 msgid "Postfix alias maps" msgstr "" -#: plinth/modules/email_server/audit/rcube.py:31 -msgid "RoundCube availability" -msgstr "" - -#: plinth/modules/email_server/audit/rcube.py:32 -msgid "RoundCube configured for FreedomBox email" -msgstr "" - #: plinth/modules/email_server/audit/spam.py:87 msgid "Inbound and outbound mail filters" msgstr "" -#: plinth/modules/email_server/forms.py:17 -msgid "Enter a valid domain" -msgstr "" - -#: plinth/modules/email_server/forms.py:20 -msgid "Enter a valid destination" -msgstr "" - #: plinth/modules/email_server/forms.py:24 -msgid "domain" -msgstr "" - -#: plinth/modules/email_server/forms.py:38 msgid "Primary domain" msgstr "" -#: plinth/modules/email_server/forms.py:40 +#: plinth/modules/email_server/forms.py:26 msgid "" "Mails are received for all domains configured in the system. Among these, " "select the most important one." msgstr "" -#: plinth/modules/email_server/forms.py:48 +#: plinth/modules/email_server/forms.py:34 msgid "New alias (without @domain)" msgstr "" -#: plinth/modules/email_server/forms.py:55 +#: plinth/modules/email_server/forms.py:41 msgid "Contains illegal characters" msgstr "" -#: plinth/modules/email_server/forms.py:58 +#: plinth/modules/email_server/forms.py:44 msgid "Must start and end with a-z or 0-9" msgstr "" -#: plinth/modules/email_server/forms.py:61 +#: plinth/modules/email_server/forms.py:47 msgid "Cannot be a number" msgstr "" -#: plinth/modules/email_server/forms.py:71 +#: plinth/modules/email_server/forms.py:57 msgid "Aliases" msgstr "" -#: plinth/modules/email_server/forms.py:83 +#: plinth/modules/email_server/forms.py:69 #: 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 +#: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:29 msgid "Enabled" msgstr "" -#: plinth/modules/email_server/forms.py:86 +#: plinth/modules/email_server/forms.py:72 #: plinth/modules/firewall/templates/firewall.html:57 #: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:29 @@ -1921,7 +1906,7 @@ msgid "Disabled" msgstr "" #: plinth/modules/email_server/manifest.py:8 -#: plinth/modules/roundcube/__init__.py:52 +#: plinth/modules/roundcube/__init__.py:54 #: plinth/modules/roundcube/manifest.py:6 msgid "Roundcube" msgstr "" @@ -1940,7 +1925,7 @@ msgid "FairEmail" msgstr "" #: plinth/modules/email_server/templates/email_alias.html:13 -#: plinth/modules/email_server/templates/email_server.html:20 +#: plinth/modules/email_server/templates/email_server.html:15 msgid "Manage Aliases" msgstr "" @@ -1964,27 +1949,10 @@ msgstr "" msgid "Add" msgstr "" -#: plinth/modules/email_server/templates/email_server.html:15 +#: plinth/modules/email_server/templates/email_server.html:10 msgid "Manage Spam" msgstr "" -#: plinth/modules/email_server/templates/email_server.html:26 -msgid "Service Alert" -msgstr "" - -#: plinth/modules/email_server/templates/email_server.html:46 -msgid "Repair" -msgstr "" - -#: plinth/modules/email_server/views.py:73 -#, python-brace-format -msgid "Internal error in {0}" -msgstr "" - -#: plinth/modules/email_server/views.py:76 -msgid "Check syslog for more information" -msgstr "" - #: plinth/modules/firewall/__init__.py:26 #, python-brace-format msgid "" @@ -2879,10 +2847,14 @@ msgid "" "TURN server." msgstr "" -#: plinth/modules/matrixsynapse/manifest.py:12 +#: plinth/modules/matrixsynapse/manifest.py:14 msgid "Element" msgstr "" +#: plinth/modules/matrixsynapse/manifest.py:48 +msgid "FluffyChat" +msgstr "" + #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 #: plinth/modules/snapshot/templates/snapshot.html:12 #: plinth/templates/app.html:46 @@ -3181,47 +3153,6 @@ msgstr "" msgid "Updated media directory" msgstr "" -#: plinth/modules/mldonkey/__init__.py:23 -msgid "" -"MLDonkey is a peer-to-peer file sharing application used to exchange large " -"files. It can participate in multiple peer-to-peer networks including " -"eDonkey, Kademlia, Overnet, BitTorrent and DirectConnect." -msgstr "" - -#: plinth/modules/mldonkey/__init__.py:26 -msgid "" -"Users belonging to admin and ed2k group can control it through the web " -"interface. Users in the admin group can also control it through any of the " -"separate mobile or desktop front-ends or a telnet interface. See manual." -msgstr "" - -#: plinth/modules/mldonkey/__init__.py:31 -#, python-brace-format -msgid "" -"On {box_name}, downloaded files can be found in /var/lib/mldonkey/ directory." -msgstr "" - -#: plinth/modules/mldonkey/__init__.py:53 -msgid "Download files using eDonkey applications" -msgstr "" - -#: plinth/modules/mldonkey/__init__.py:56 -#: plinth/modules/mldonkey/manifest.py:11 -msgid "MLDonkey" -msgstr "" - -#: plinth/modules/mldonkey/__init__.py:58 -msgid "Peer-to-peer File Sharing" -msgstr "" - -#: plinth/modules/mldonkey/manifest.py:18 -msgid "KMLDonkey" -msgstr "" - -#: plinth/modules/mldonkey/manifest.py:30 -msgid "AMLDonkey" -msgstr "" - #: plinth/modules/mumble/__init__.py:26 msgid "" "Mumble is an open source, low-latency, encrypted, high quality voice chat " @@ -4618,11 +4549,11 @@ msgstr "" msgid "System Monitoring" msgstr "" -#: plinth/modules/power/__init__.py:13 +#: plinth/modules/power/__init__.py:14 msgid "Restart or shut down the system." msgstr "" -#: plinth/modules/power/__init__.py:30 +#: plinth/modules/power/__init__.py:31 msgid "Power" msgstr "" @@ -4821,7 +4752,7 @@ msgstr "" msgid "Access rights configuration updated" msgstr "" -#: plinth/modules/roundcube/__init__.py:19 +#: plinth/modules/roundcube/__init__.py:21 msgid "" "Roundcube webmail is a browser-based multilingual IMAP client with an " "application-like user interface. It provides full functionality you expect " @@ -4829,7 +4760,7 @@ msgid "" "manipulation, message searching and spell checking." msgstr "" -#: plinth/modules/roundcube/__init__.py:24 +#: plinth/modules/roundcube/__init__.py:26 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 " @@ -4838,7 +4769,7 @@ msgid "" "code>." msgstr "" -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -4848,10 +4779,21 @@ msgid "" "a>)." msgstr "" -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 msgid "Email Client" msgstr "" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -5174,24 +5116,28 @@ msgstr "" msgid "Updated security configuration" msgstr "" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "" -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." msgstr "" -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 msgid "Bookmarks" msgstr "" +#: plinth/modules/shaarli/manifest.py:12 +msgid "Shaarlier" +msgstr "" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -5398,7 +5344,9 @@ msgid "Software Installation Snapshots" msgstr "" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "" #: plinth/modules/snapshot/forms.py:32 @@ -5616,6 +5564,10 @@ msgstr "" msgid "Login" msgstr "" +#: plinth/modules/sso/views.py:101 +msgid "Logged out successfully." +msgstr "" + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -6351,15 +6303,17 @@ msgstr "" msgid "Authorization Password" msgstr "" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, python-brace-format +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "" -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 msgid "Invalid password." msgstr "" -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 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 " @@ -6368,62 +6322,62 @@ msgid "" "SSH and have administrative privileges (sudo)." msgstr "" -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, python-brace-format msgid "Creating LDAP user failed: {error}" msgstr "" -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, python-brace-format msgid "Failed to add new user to {group} group: {error}" msgstr "" -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " "line. Blank lines and lines starting with # will be ignored." msgstr "" -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "" -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "" -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "" -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "" -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 msgid "Failed to change user status." msgstr "" -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "" -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, python-brace-format msgid "Failed to add new user to admin group: {error}" msgstr "" -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, python-brace-format msgid "Failed to restrict console access: {error}" msgstr "" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "" @@ -6707,15 +6661,15 @@ msgstr "" msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "" diff --git a/plinth/locale/bn/LC_MESSAGES/django.po b/plinth/locale/bn/LC_MESSAGES/django.po index 2f53efed1..962150852 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: 2022-01-11 19:11-0500\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" "PO-Revision-Date: 2021-06-16 07:33+0000\n" "Last-Translator: Oymate \n" "Language-Team: Bengali ." msgstr "" -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -4828,10 +4747,21 @@ msgid "" "a>)." msgstr "" -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 msgid "Email Client" msgstr "" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -5156,24 +5086,28 @@ msgstr "" msgid "Updated security configuration" msgstr "" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "" -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." msgstr "" -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 msgid "Bookmarks" msgstr "" +#: plinth/modules/shaarli/manifest.py:12 +msgid "Shaarlier" +msgstr "" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -5380,7 +5314,9 @@ msgid "Software Installation Snapshots" msgstr "" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "" #: plinth/modules/snapshot/forms.py:32 @@ -5598,6 +5534,10 @@ msgstr "" msgid "Login" msgstr "" +#: plinth/modules/sso/views.py:101 +msgid "Logged out successfully." +msgstr "" + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -6331,15 +6271,17 @@ msgstr "" msgid "Authorization Password" msgstr "" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, python-brace-format +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "" -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 msgid "Invalid password." msgstr "" -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 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 " @@ -6348,62 +6290,62 @@ msgid "" "SSH and have administrative privileges (sudo)." msgstr "" -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, python-brace-format msgid "Creating LDAP user failed: {error}" msgstr "" -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, python-brace-format msgid "Failed to add new user to {group} group: {error}" msgstr "" -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " "line. Blank lines and lines starting with # will be ignored." msgstr "" -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "" -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "" -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "" -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "" -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 msgid "Failed to change user status." msgstr "" -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "" -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, python-brace-format msgid "Failed to add new user to admin group: {error}" msgstr "" -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, python-brace-format msgid "Failed to restrict console access: {error}" msgstr "" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "" @@ -6687,15 +6629,15 @@ msgstr "" msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "" @@ -7312,6 +7254,16 @@ msgstr "" msgid "Gujarati" msgstr "" +#, fuzzy +#~| msgid "Domain" +#~ msgid "domain" +#~ msgstr "ডোমেন" + +#, fuzzy +#~| msgid "Service/Port" +#~ msgid "Service Alert" +#~ msgstr "সেবা/পোর্ট" + #~ msgid "diaspora*" #~ msgstr "ডায়াসপোরা*" diff --git a/plinth/locale/cs/LC_MESSAGES/django.po b/plinth/locale/cs/LC_MESSAGES/django.po index 6b4ef0fdc..f21759755 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: 2022-01-11 19:11-0500\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" "PO-Revision-Date: 2022-01-15 16:56+0000\n" "Last-Translator: Jiří Podhorecký \n" "Language-Team: Czech Výběr typu připojení k internetu." +"veřejnou IP adresu“ v Výběr typu připojení k internetu." #: plinth/modules/networks/templates/router_configuration_content.html:39 msgid "Choose How You Wish to Configure Your Router" @@ -5222,11 +5137,11 @@ msgstr "" msgid "System Monitoring" msgstr "Monitoring systému" -#: plinth/modules/power/__init__.py:13 +#: plinth/modules/power/__init__.py:14 msgid "Restart or shut down the system." msgstr "Restartovat nebo vypnout systém." -#: plinth/modules/power/__init__.py:30 +#: plinth/modules/power/__init__.py:31 msgid "Power" msgstr "Napájení" @@ -5475,7 +5390,7 @@ msgstr "" msgid "Access rights configuration updated" msgstr "Nastavení přístupových práv aktualizováno" -#: plinth/modules/roundcube/__init__.py:19 +#: plinth/modules/roundcube/__init__.py:21 msgid "" "Roundcube webmail is a browser-based multilingual IMAP client with an " "application-like user interface. It provides full functionality you expect " @@ -5488,7 +5403,7 @@ msgstr "" "klienta, včetně podpory MIME, adresáře kontaktů, manipulace se složkami, " "vyhledávání ve zprávách a kontrolou pravopisu." -#: plinth/modules/roundcube/__init__.py:24 +#: plinth/modules/roundcube/__init__.py:26 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 " @@ -5502,7 +5417,7 @@ msgstr "" "protokolu IMAP přes SSL (doporučeno) vyplňte pole serveru například " "imaps://imap.example.com." -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -5518,10 +5433,21 @@ msgstr "" "lesssecureapps\">https://www.google.com/settings/security/lesssecureapps)." -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 msgid "Email Client" msgstr "E-mailový klient" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -5894,11 +5820,11 @@ msgstr "Chyba při nastavování omezeného přístupu: {exception}" msgid "Updated security configuration" msgstr "Nastavení zabezpečení aktualizováno" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "Shaarli umožňuje ukládat a sdílet záložky." -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." @@ -5906,14 +5832,20 @@ msgstr "" "Všimněte si, že Shaarli podporuje pouze jeden uživatelský účet, který je " "třeba nastavit při první návštěvě." -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "Shaarli" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 msgid "Bookmarks" msgstr "Záložky" +#: plinth/modules/shaarli/manifest.py:12 +#, fuzzy +#| msgid "Shaarli" +msgid "Shaarlier" +msgstr "Shaarli" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -6156,7 +6088,11 @@ msgid "Software Installation Snapshots" msgstr "Zachycené stavy instalace software" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +#, fuzzy +#| msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "" "Zapnout nebo vypnout pořizování zachycených stavů před a po instalaci " "software" @@ -6394,6 +6330,12 @@ msgstr "Sdružené přihlášení (SSO)" msgid "Login" msgstr "Přihlášení" +#: plinth/modules/sso/views.py:101 +#, fuzzy +#| msgid "Password changed successfully." +msgid "Logged out successfully." +msgstr "Heslo úspěšně změněno." + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -7230,15 +7172,18 @@ msgstr "" msgid "Authorization Password" msgstr "Autorizační heslo" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, fuzzy, python-brace-format +#| msgid "Enter your current password to authorize account modifications." +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "Zadejte své aktuální heslo a autorizujte změny účtu." -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 msgid "Invalid password." msgstr "Neplatné heslo." -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 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 " @@ -7252,21 +7197,21 @@ msgstr "" "skupině admin se budou moci přihlásit ke všem službám. Mohou se také " "přihlašovat do systému prostřednictvím SSH a mají práva správce (sudo)." -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, python-brace-format msgid "Creating LDAP user failed: {error}" msgstr "Vytvoření uživatele LDAP se nezdařilo: {error}" -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, python-brace-format msgid "Failed to add new user to {group} group: {error}" msgstr "Nepodařilo se přidat nového uživatele do skupiny {group}: {error}" -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "Pověřené SSH klíče" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " @@ -7276,41 +7221,41 @@ msgstr "" "systému i bez zadávání hesla. Klíčů je možné vložit vícero, každý na vlastní " "řádek. Prázdné řádky a ty, které začínají na znak # budou ignorovány." -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "Přejmenování LDAP uživatele se nezdařilo." -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "Odebrání uživatele ze skupiny se nezdařilo." -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "Přidání uživatele do skupiny se nezdařilo." -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "Nepodařilo se vložit SSH klíče." -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 msgid "Failed to change user status." msgstr "Nepodařilo se změnit stav uživatele." -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "Změna hesla LDAP uživatele se nezdařila." -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, python-brace-format msgid "Failed to add new user to admin group: {error}" msgstr "Nepodařilo se přidat nového uživatele do skupiny admin: {error}" -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, python-brace-format msgid "Failed to restrict console access: {error}" msgstr "Nepodařilo se omezit přístup ke konzole: {error}" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "Uživatelský účet vytvořen, není jste jím přihlášeni" @@ -7625,15 +7570,15 @@ msgstr "Servery, ke kterým se %(box_name)s připojí:" msgid "Endpoint" msgstr "Koncový bod" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 msgid "No connections to remote servers are configured yet." msgstr "Zatím nejsou nakonfigurována žádná připojení ke vzdáleným serverům." -#: plinth/modules/wireguard/templates/wireguard.html:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "Přidat nový server" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "Přidat připojení k serveru" @@ -8327,6 +8272,76 @@ msgstr "%(percentage)s%% dokončeno" msgid "Gujarati" msgstr "gudžarátština" +#~ msgid "RoundCube availability" +#~ msgstr "Dostupnost RoundCube" + +#~ msgid "RoundCube configured for FreedomBox email" +#~ msgstr "RoundCube nakonfigurovaný pro e-mailovou schránku FreedomBox" + +#~ msgid "Enter a valid domain" +#~ msgstr "Zadejte platnou doménu" + +#~ msgid "Enter a valid destination" +#~ msgstr "Zadejte platný cíl" + +#~ msgid "domain" +#~ msgstr "doména" + +#~ msgid "Service Alert" +#~ msgstr "Servisní upozornění" + +#~ msgid "Repair" +#~ msgstr "Oprava" + +#, python-brace-format +#~ msgid "Internal error in {0}" +#~ msgstr "Vnitřní chyba v {0}" + +#~ msgid "Check syslog for more information" +#~ msgstr "Další informace získáte v syslog" + +#~ msgid "" +#~ "MLDonkey is a peer-to-peer file sharing application used to exchange " +#~ "large files. It can participate in multiple peer-to-peer networks " +#~ "including eDonkey, Kademlia, Overnet, BitTorrent and DirectConnect." +#~ msgstr "" +#~ "MLDonkey je aplikace pro peer-to-peer sdílení souborů sloužící pro výměnu " +#~ "velkých souborů. Může se účastnit vícero peer-to-peer sítí, včetně " +#~ "eDonkey, Kademlia, Overnet, BitTorrent a DirectConnect." + +#~ msgid "" +#~ "Users belonging to admin and ed2k group can control it through the web " +#~ "interface. Users in the admin group can also control it through any of " +#~ "the separate mobile or desktop front-ends or a telnet interface. See " +#~ "manual." +#~ msgstr "" +#~ "Uživatelé, kteří jsou členy skupin admin a ed2k ho mohou ovládat " +#~ "prostřednictvím webového rozhraní. Uživatelé ze skupiny admin ho také " +#~ "mohou ovládat prostřednictvím libovolné mobilní či desktopové nadstavby " +#~ "nebo přes rozhraní telnet. Viz příručka." + +#, python-brace-format +#~ msgid "" +#~ "On {box_name}, downloaded files can be found in /var/lib/mldonkey/ " +#~ "directory." +#~ msgstr "" +#~ "Na {box_name}, stažené soubory se nacházejí ve složce /var/lib/mldonkey/ ." + +#~ msgid "Download files using eDonkey applications" +#~ msgstr "Stahovat soubory pomocí eDonkey aplikací" + +#~ msgid "MLDonkey" +#~ msgstr "MLDonkey" + +#~ msgid "Peer-to-peer File Sharing" +#~ msgstr "Pee-to-peer sdílení souborů" + +#~ msgid "KMLDonkey" +#~ msgstr "KMLDonkey" + +#~ msgid "AMLDonkey" +#~ msgstr "AMLDonkey" + #~ msgid "Mozilla Thunderbird" #~ msgstr "Mozilla Thunderbird" diff --git a/plinth/locale/da/LC_MESSAGES/django.po b/plinth/locale/da/LC_MESSAGES/django.po index 0d055f650..e1220f4ac 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: 2022-01-11 19:11-0500\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" "PO-Revision-Date: 2021-01-18 12:32+0000\n" "Last-Translator: ikmaak \n" "Language-Team: Danish /roundcube. " @@ -5567,7 +5472,7 @@ msgstr "" "example.com. Vil du bruge IMAP over SSL (hvilket anbefales) skal du " "også angive protokollen således imaps://imap.example.com." -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -5584,12 +5489,23 @@ msgstr "" "lesssecureapps\">https://www.google.com/settings/security/lesssecureapps)." -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 #, fuzzy #| msgid "Email Client (Roundcube)" msgid "Email Client" msgstr "Emailklient (Roundcube)" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -5959,11 +5875,11 @@ msgstr "Kunne ikke sætte tidszone: {exception}" msgid "Updated security configuration" msgstr "Generel Konfiguration" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "Shaarli tillader dig at gemme og dele bogmærker." -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 #, fuzzy #| msgid "" #| "When enabled, Shaarli will be available from /" @@ -5977,16 +5893,22 @@ msgstr "" "shaarli på webserveren. Bemærk at Shaarli kun understøtter en enkelt " "brugerkonto, som skal sættes op ved det første besøg." -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "Shaarli" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 #, fuzzy #| msgid "Bookmarks (Shaarli)" msgid "Bookmarks" msgstr "Bogmærker (Shaarli)" +#: plinth/modules/shaarli/manifest.py:12 +#, fuzzy +#| msgid "Shaarli" +msgid "Shaarlier" +msgstr "Shaarli" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -6217,7 +6139,9 @@ msgid "Software Installation Snapshots" msgstr "" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "" #: plinth/modules/snapshot/forms.py:32 @@ -6463,6 +6387,12 @@ msgstr "" msgid "Login" msgstr "Log ind" +#: plinth/modules/sso/views.py:101 +#, fuzzy +#| msgid "Password changed successfully." +msgid "Logged out successfully." +msgstr "Kodeord blev ændret." + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -7323,17 +7253,19 @@ msgstr "" msgid "Authorization Password" msgstr "Administratorkonto" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, python-brace-format +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "" -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 #, fuzzy #| msgid "Show password" msgid "Invalid password." msgstr "Vis kodeord" -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 #, fuzzy #| msgid "" #| "Select which services should be available to the new user. The user will " @@ -7355,23 +7287,23 @@ msgstr "" "tjenester. De kan også logge ind på systemet gennem SSH og har " "administratorprivilegier (sudo)." -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, fuzzy, python-brace-format #| msgid "Creating LDAP user failed." msgid "Creating LDAP user failed: {error}" msgstr "Kunne ikke oprette LDAP-bruger." -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, fuzzy, python-brace-format #| msgid "Failed to add new user to {group} group." msgid "Failed to add new user to {group} group: {error}" msgstr "Kunne ikke tilføje ny bruger til gruppen {group}." -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " @@ -7381,46 +7313,46 @@ msgstr "" "sikkert ind på systemet uden et kodeord. Der kan defineres flere nøgler, en " "på hver linje. Tomme linjer og linjer som starter med # bliver ignoreret." -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "Kunne ikke omdøbe LDAP-bruger." -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "Kunne ikke fjerne bruger fra gruppe." -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "Kunne ikke tilføje bruger til gruppe." -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "" -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 #, fuzzy #| msgid "Failed to add user to group." msgid "Failed to change user status." msgstr "Kunne ikke tilføje bruger til gruppe." -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "Kunne ikke ændre LDAP-kodeord." -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, fuzzy, python-brace-format #| msgid "Failed to add new user to admin group." msgid "Failed to add new user to admin group: {error}" msgstr "Kunne ikke tilføje ny bruger til admin-gruppen." -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, fuzzy, python-brace-format #| msgid "Failed to obtain certificate for domain {domain}: {error}" msgid "Failed to restrict console access: {error}" msgstr "" "Fejl ved forsøg på at erhverve certifikatet for domænet {domain}: {error}" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "Brugerkonto oprettet, du er nu logget ind" @@ -7725,15 +7657,15 @@ msgstr "" msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 #, fuzzy #| msgid "Add Connection" @@ -8437,6 +8369,51 @@ msgstr "%(percentage)s%% færdig" msgid "Gujarati" msgstr "" +#, fuzzy +#~| msgid "Available Domains" +#~ msgid "RoundCube availability" +#~ msgstr "Tilgængelige Domæner" + +#, fuzzy +#~| msgid "Invalid server name" +#~ msgid "Enter a valid domain" +#~ msgstr "Ugyldigt servernavn" + +#, fuzzy +#~| msgid "Invalid server name" +#~ msgid "Enter a valid destination" +#~ msgstr "Ugyldigt servernavn" + +#, fuzzy +#~| msgid "Domain" +#~ msgid "domain" +#~ msgstr "Domæne" + +#, fuzzy +#~| msgid "Service Type" +#~ msgid "Service Alert" +#~ msgstr "Servicetype" + +#, fuzzy +#~| msgid "Monkeysphere" +#~ msgid "MLDonkey" +#~ msgstr "Monkeysphere" + +#, fuzzy +#~| msgid "Enable Shaarli" +#~ msgid "Peer-to-peer File Sharing" +#~ msgstr "Aktiver Shaarli" + +#, fuzzy +#~| msgid "Monkeysphere" +#~ msgid "KMLDonkey" +#~ msgstr "Monkeysphere" + +#, fuzzy +#~| msgid "Monkeysphere" +#~ msgid "AMLDonkey" +#~ msgstr "Monkeysphere" + #, fuzzy #~| msgid "Update" #~ msgid "Updates" diff --git a/plinth/locale/de/LC_MESSAGES/django.po b/plinth/locale/de/LC_MESSAGES/django.po index a4bb03412..c3d706260 100644 --- a/plinth/locale/de/LC_MESSAGES/django.po +++ b/plinth/locale/de/LC_MESSAGES/django.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: FreedomBox UI\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-11 19:11-0500\n" -"PO-Revision-Date: 2022-01-13 18:58+0000\n" -"Last-Translator: nautilusx \n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" +"PO-Revision-Date: 2022-01-19 09:56+0000\n" +"Last-Translator: ikmaak \n" "Language-Team: German \n" "Language: de\n" @@ -19,7 +19,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.10.1\n" +"X-Generator: Weblate 4.11-dev\n" #: doc/dev/_templates/layout.html:11 msgid "Page source" @@ -846,7 +846,7 @@ msgstr "" #: plinth/modules/bepasty/forms.py:27 #: plinth/modules/bepasty/templates/bepasty.html:30 -#: plinth/modules/users/forms.py:102 plinth/modules/users/forms.py:228 +#: plinth/modules/users/forms.py:108 plinth/modules/users/forms.py:234 msgid "Permissions" msgstr "Berechtigungen" @@ -933,7 +933,7 @@ msgstr "Admin" msgid "Configuration updated." msgstr "Konfiguration aktualisiert." -#: plinth/modules/bepasty/views.py:93 plinth/modules/email_server/views.py:107 +#: plinth/modules/bepasty/views.py:93 plinth/modules/email_server/views.py:41 #: plinth/modules/gitweb/views.py:117 plinth/modules/searx/views.py:41 #: plinth/modules/searx/views.py:52 plinth/modules/tor/views.py:159 #: plinth/modules/zoph/views.py:72 @@ -1031,10 +1031,10 @@ msgstr "IP-Adresse und Domänen aktualisieren" #: plinth/modules/bind/views.py:71 plinth/modules/coturn/views.py:39 #: plinth/modules/deluge/views.py:42 plinth/modules/dynamicdns/views.py:169 -#: plinth/modules/ejabberd/views.py:85 plinth/modules/email_server/views.py:104 +#: plinth/modules/ejabberd/views.py:85 plinth/modules/email_server/views.py:38 #: plinth/modules/matrixsynapse/views.py:124 plinth/modules/mumble/views.py:28 #: plinth/modules/pagekite/forms.py:78 plinth/modules/quassel/views.py:28 -#: plinth/modules/shadowsocks/views.py:59 +#: plinth/modules/roundcube/views.py:32 plinth/modules/shadowsocks/views.py:59 #: plinth/modules/transmission/views.py:47 plinth/modules/ttrss/views.py:26 #: plinth/modules/wordpress/views.py:37 msgid "Configuration updated" @@ -1506,18 +1506,15 @@ msgid "Diagnostics" msgstr "Diagnose" #: plinth/modules/diagnostics/__init__.py:97 -#: plinth/modules/email_server/templates/email_server.html:37 msgid "passed" msgstr "bestanden" #: plinth/modules/diagnostics/__init__.py:98 -#: plinth/modules/email_server/templates/email_server.html:35 #: plinth/modules/networks/views.py:49 msgid "failed" msgstr "gescheitert" #: plinth/modules/diagnostics/__init__.py:99 -#: plinth/modules/email_server/templates/email_server.html:33 msgid "error" msgstr "Fehler" @@ -2063,43 +2060,23 @@ msgstr "E-Mail Server" msgid "Powered by Postfix, Dovecot & Rspamd" msgstr "Betrieben mit Postfix, Dovecot und Rspamd" -#: plinth/modules/email_server/audit/ldap.py:69 +#: plinth/modules/email_server/audit/ldap.py:68 msgid "Postfix-Dovecot SASL integration" msgstr "Postfix-Dovecot SASL-Integration" -#: plinth/modules/email_server/audit/ldap.py:70 +#: plinth/modules/email_server/audit/ldap.py:69 msgid "Postfix alias maps" msgstr "Postfix-Alias-Maps" -#: plinth/modules/email_server/audit/rcube.py:31 -msgid "RoundCube availability" -msgstr "Verfügbarkeit von RoundCube" - -#: plinth/modules/email_server/audit/rcube.py:32 -msgid "RoundCube configured for FreedomBox email" -msgstr "RoundCube konfiguriert für FreedomBox E-Mail" - #: plinth/modules/email_server/audit/spam.py:87 msgid "Inbound and outbound mail filters" msgstr "Filter für eingehende und ausgehende Mails" -#: plinth/modules/email_server/forms.py:17 -msgid "Enter a valid domain" -msgstr "Eine gültige Domain eingeben" - -#: plinth/modules/email_server/forms.py:20 -msgid "Enter a valid destination" -msgstr "Ein gültiges Ziel eingeben" - #: plinth/modules/email_server/forms.py:24 -msgid "domain" -msgstr "Domain" - -#: plinth/modules/email_server/forms.py:38 msgid "Primary domain" msgstr "Primäre Domain" -#: plinth/modules/email_server/forms.py:40 +#: plinth/modules/email_server/forms.py:26 msgid "" "Mails are received for all domains configured in the system. Among these, " "select the most important one." @@ -2107,34 +2084,34 @@ msgstr "" "E-Mails werden für alle im System konfigurierten Domänen empfangen. Wählen " "Sie unter diesen die wichtigste aus." -#: plinth/modules/email_server/forms.py:48 +#: plinth/modules/email_server/forms.py:34 msgid "New alias (without @domain)" msgstr "Neuer Alias (ohne @Domäne)" -#: plinth/modules/email_server/forms.py:55 +#: plinth/modules/email_server/forms.py:41 msgid "Contains illegal characters" msgstr "Enthält unzulässige Zeichen" -#: plinth/modules/email_server/forms.py:58 +#: plinth/modules/email_server/forms.py:44 msgid "Must start and end with a-z or 0-9" msgstr "Muss mit a-z oder 0-9 beginnen und enden" -#: plinth/modules/email_server/forms.py:61 +#: plinth/modules/email_server/forms.py:47 msgid "Cannot be a number" msgstr "Kann keine Zahl sein" -#: plinth/modules/email_server/forms.py:71 +#: plinth/modules/email_server/forms.py:57 msgid "Aliases" msgstr "Aliase" -#: plinth/modules/email_server/forms.py:83 +#: plinth/modules/email_server/forms.py:69 #: 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 +#: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:29 msgid "Enabled" msgstr "Aktiviert" -#: plinth/modules/email_server/forms.py:86 +#: plinth/modules/email_server/forms.py:72 #: plinth/modules/firewall/templates/firewall.html:57 #: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:29 @@ -2143,7 +2120,7 @@ msgid "Disabled" msgstr "Deaktiviert" #: plinth/modules/email_server/manifest.py:8 -#: plinth/modules/roundcube/__init__.py:52 +#: plinth/modules/roundcube/__init__.py:54 #: plinth/modules/roundcube/manifest.py:6 msgid "Roundcube" msgstr "Roundcube" @@ -2162,7 +2139,7 @@ msgid "FairEmail" msgstr "FairEmail" #: plinth/modules/email_server/templates/email_alias.html:13 -#: plinth/modules/email_server/templates/email_server.html:20 +#: plinth/modules/email_server/templates/email_server.html:15 msgid "Manage Aliases" msgstr "Aliase verwalten" @@ -2186,27 +2163,10 @@ msgstr "Einen neuen E-Mail-Alias erstellen" msgid "Add" msgstr "Hinzufügen" -#: plinth/modules/email_server/templates/email_server.html:15 +#: plinth/modules/email_server/templates/email_server.html:10 msgid "Manage Spam" msgstr "Spam verwalten" -#: plinth/modules/email_server/templates/email_server.html:26 -msgid "Service Alert" -msgstr "Service-Warnung" - -#: plinth/modules/email_server/templates/email_server.html:46 -msgid "Repair" -msgstr "Reparieren" - -#: plinth/modules/email_server/views.py:73 -#, python-brace-format -msgid "Internal error in {0}" -msgstr "Interner Fehler in {0}" - -#: plinth/modules/email_server/views.py:76 -msgid "Check syslog for more information" -msgstr "Prüfen Sie das Syslog für weitere Informationen" - #: plinth/modules/firewall/__init__.py:26 #, python-brace-format msgid "" @@ -3273,10 +3233,14 @@ msgstr "" "TURN-Server für Matrix Synapse. Deaktiviere dies, wenn du einen anderen STUN/" "TURN-Server verwenden möchtest." -#: plinth/modules/matrixsynapse/manifest.py:12 +#: plinth/modules/matrixsynapse/manifest.py:14 msgid "Element" msgstr "Element" +#: plinth/modules/matrixsynapse/manifest.py:48 +msgid "FluffyChat" +msgstr "" + #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 #: plinth/modules/snapshot/templates/snapshot.html:12 #: plinth/templates/app.html:46 @@ -3644,56 +3608,6 @@ msgstr "Das angegebene Verzeichnis ist nicht vorhanden." msgid "Updated media directory" msgstr "Aktualisiertes Medienverzeichnis" -#: plinth/modules/mldonkey/__init__.py:23 -msgid "" -"MLDonkey is a peer-to-peer file sharing application used to exchange large " -"files. It can participate in multiple peer-to-peer networks including " -"eDonkey, Kademlia, Overnet, BitTorrent and DirectConnect." -msgstr "" -"MLDonkey ist eine App für Peer-to-Peer Dateitauschbörsen, um große Dateien " -"auszutauschen. Es kann in mehreren Peer-to-Peer-Netzwerken teilnehmen, unter " -"anderem eDonkey, Kademlia, Overnet, BitTorrent und DirectConnect." - -#: plinth/modules/mldonkey/__init__.py:26 -msgid "" -"Users belonging to admin and ed2k group can control it through the web " -"interface. Users in the admin group can also control it through any of the " -"separate mobile or desktop front-ends or a telnet interface. See manual." -msgstr "" -"Benutzer, die zur Gruppe admin und ed2k gehören, können es über die " -"Weboberfläche steuern. Benutzer der Gruppe admin können es auch über eine " -"der separaten mobilen oder Desktop-Frontends oder eine Telnet-Schnittstelle " -"steuern. Siehe Handbuch." - -#: plinth/modules/mldonkey/__init__.py:31 -#, python-brace-format -msgid "" -"On {box_name}, downloaded files can be found in /var/lib/mldonkey/ directory." -msgstr "" -"Auf {box_name} können heruntergeladene Dateien im Verzeichnis /var/lib/" -"mldonkey/ gefunden werden." - -#: plinth/modules/mldonkey/__init__.py:53 -msgid "Download files using eDonkey applications" -msgstr "Dateien mit eDonkey herunterladen" - -#: plinth/modules/mldonkey/__init__.py:56 -#: plinth/modules/mldonkey/manifest.py:11 -msgid "MLDonkey" -msgstr "MLDonkey" - -#: plinth/modules/mldonkey/__init__.py:58 -msgid "Peer-to-peer File Sharing" -msgstr "Peer-to-Peer-Datenaustausch" - -#: plinth/modules/mldonkey/manifest.py:18 -msgid "KMLDonkey" -msgstr "KMLDonkey" - -#: plinth/modules/mldonkey/manifest.py:30 -msgid "AMLDonkey" -msgstr "AMLDonkey" - #: plinth/modules/mumble/__init__.py:26 msgid "" "Mumble is an open source, low-latency, encrypted, high quality voice chat " @@ -3703,11 +3617,6 @@ msgstr "" "Verschlüsselung und geringer Latenz." #: plinth/modules/mumble/__init__.py:28 -#, fuzzy -#| msgid "" -#| "You can connect to your Mumble server on the regular Mumble port 64738. " -#| "Clients to connect to Mumble from your " -#| "desktop and Android devices are available." msgid "" "You can connect to your Mumble server on the regular Mumble port 64738. Clients to connect to Mumble from your " @@ -3715,7 +3624,7 @@ msgid "" msgstr "" "Sie können sich mit Ihrem Mumble-Server auf dem regulären Mumble-Port 64738 " "verbinden. Auf Mumble finden Sie " -"Anwendungen, um sich vom Desktop oder Android-Gerät mit Mumble zu verbinden." +"Anwendungen, um sich vom Desktop oder Mobil-Gerät mit Mumble zu verbinden." #: plinth/modules/mumble/__init__.py:48 plinth/modules/mumble/manifest.py:9 msgid "Mumble" @@ -5324,11 +5233,11 @@ msgstr "" msgid "System Monitoring" msgstr "Systemüberwachung" -#: plinth/modules/power/__init__.py:13 +#: plinth/modules/power/__init__.py:14 msgid "Restart or shut down the system." msgstr "Neu starten oder das System herunterfahren." -#: plinth/modules/power/__init__.py:30 +#: plinth/modules/power/__init__.py:31 msgid "Power" msgstr "Power" @@ -5582,7 +5491,7 @@ msgstr "" msgid "Access rights configuration updated" msgstr "Konfiguration der Zugangsrechte aktualisiert" -#: plinth/modules/roundcube/__init__.py:19 +#: plinth/modules/roundcube/__init__.py:21 msgid "" "Roundcube webmail is a browser-based multilingual IMAP client with an " "application-like user interface. It provides full functionality you expect " @@ -5595,7 +5504,7 @@ msgstr "" "wie zum Beispiel MIME-Unterstützung, Adressbuch, Ordnerverwaltung, Suche in " "den Nachrichten und Rechtschreibprüfung." -#: plinth/modules/roundcube/__init__.py:24 +#: plinth/modules/roundcube/__init__.py:26 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 " @@ -5609,7 +5518,7 @@ msgstr "" "code>. Bei IMAP über SSL (empfohlen) füllen Sie das Server-Feld aus, z. B. " "imaps://imap.beispiel.com." -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -5626,10 +5535,21 @@ msgstr "" "lesssecureapps\">https://www.google.com/settings/security/lesssecureapps)." -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 msgid "Email Client" msgstr "E-Mail-Client" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -6006,11 +5926,11 @@ msgstr "Fehler beim Setzen des eingeschränkten Zugriffs: {exception}" msgid "Updated security configuration" msgstr "Sicherheitskonfiguration aktualisiert" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "Shaarli ermöglicht das Speichern und Teilen von Lesezeichen." -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." @@ -6018,14 +5938,20 @@ msgstr "" "Beachten Sie, dass Shaarli nur ein einziges Benutzerkonto unterstützt, das " "Sie bei Ihrem ersten Besuch einrichten müssen." -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "Shaarli" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 msgid "Bookmarks" msgstr "Lesezeichen" +#: plinth/modules/shaarli/manifest.py:12 +#, fuzzy +#| msgid "Shaarli" +msgid "Shaarlier" +msgstr "Shaarli" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -6273,7 +6199,11 @@ msgid "Software Installation Snapshots" msgstr "Softwareinstallation-Schnappschüsse" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +#, fuzzy +#| msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "" "Schnappschüsse vor und nach Softwareinstallationen ein- oder auschalten" @@ -6513,6 +6443,12 @@ msgstr "Einmal-Anmeldung" msgid "Login" msgstr "Anmelden" +#: plinth/modules/sso/views.py:101 +#, fuzzy +#| msgid "Password changed successfully." +msgid "Logged out successfully." +msgstr "Passwort erfolgreich geändert." + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -7374,16 +7310,19 @@ msgstr "" msgid "Authorization Password" msgstr "Autorisierungs-Passwort" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, fuzzy, python-brace-format +#| msgid "Enter your current password to authorize account modifications." +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "" "Geben Sie Ihr aktuelles Kennwort ein, um Kontoänderungen zu autorisieren." -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 msgid "Invalid password." msgstr "Ungültiges Passwort." -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 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 " @@ -7398,22 +7337,22 @@ msgstr "" "allen Diensten anmelden und sie können sich auch über SSH im System anmelden " "und besitzen Administratorrechte (sudo)." -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, python-brace-format msgid "Creating LDAP user failed: {error}" msgstr "Erstellen des LDAP-Benutzers ist fehlgeschlagen:{error}" -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, python-brace-format msgid "Failed to add new user to {group} group: {error}" msgstr "" "Fehler beim Hinzufügen eines neuen Benutzers zur {group}-Gruppe: {error}" -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "Autorisierte SSH-Schlüssel" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " @@ -7424,42 +7363,42 @@ msgstr "" "eingeben, einen pro Zeile. Leerzeilen und Zeilen, die mit # beginnen, werden " "ignoriert." -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "Umbenennen des LDAP-Benutzers fehlgeschlagen." -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "Entfernen des Benutzers von der Gruppe fehlgeschlagen." -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "Hinzufügen eines Benutzers zur Gruppe ist fehlgeschlagen." -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "SSH-Schlüssel kann nicht gesetzt werden." -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 msgid "Failed to change user status." msgstr "Fehler beim Ändern des Benutzerstatus." -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "Ändern des LDAP-Benutzerpassworts ist fehlgeschlagen." -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, python-brace-format msgid "Failed to add new user to admin group: {error}" msgstr "" "Fehler beim Hinzufügen eines neuen Benutzers zur Administratorgruppe: {error}" -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, python-brace-format msgid "Failed to restrict console access: {error}" msgstr "Fehler beim Einschränken des Konsolenzugriffs: {error}" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "Benutzerkonto wurde erstellt, Sie sind jetzt angemeldet" @@ -7724,9 +7663,6 @@ msgstr "" "senden" #: plinth/modules/wireguard/forms.py:107 -#, fuzzy -#| msgid "" -#| "Typically checked for a VPN service though which all traffic is sent." msgid "Typically checked for a VPN service through which all traffic is sent." msgstr "" "In der Regel auf einem VPN-Dienst überprüft, über den der gesamte " @@ -7788,15 +7724,15 @@ msgstr "Server, mit denen %(box_name)s eine Verbindung herstellen:" msgid "Endpoint" msgstr "Endpunkt" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 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:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "Neuen Server hinzufügen" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "Verbindung zum Server hinzufügen" @@ -8502,6 +8438,78 @@ msgstr "%(percentage)s %% abgeschlossen" msgid "Gujarati" msgstr "Gujarati" +#~ msgid "RoundCube availability" +#~ msgstr "Verfügbarkeit von RoundCube" + +#~ msgid "RoundCube configured for FreedomBox email" +#~ msgstr "RoundCube konfiguriert für FreedomBox E-Mail" + +#~ msgid "Enter a valid domain" +#~ msgstr "Eine gültige Domain eingeben" + +#~ msgid "Enter a valid destination" +#~ msgstr "Ein gültiges Ziel eingeben" + +#~ msgid "domain" +#~ msgstr "Domain" + +#~ msgid "Service Alert" +#~ msgstr "Service-Warnung" + +#~ msgid "Repair" +#~ msgstr "Reparieren" + +#, python-brace-format +#~ msgid "Internal error in {0}" +#~ msgstr "Interner Fehler in {0}" + +#~ msgid "Check syslog for more information" +#~ msgstr "Prüfen Sie das Syslog für weitere Informationen" + +#~ msgid "" +#~ "MLDonkey is a peer-to-peer file sharing application used to exchange " +#~ "large files. It can participate in multiple peer-to-peer networks " +#~ "including eDonkey, Kademlia, Overnet, BitTorrent and DirectConnect." +#~ msgstr "" +#~ "MLDonkey ist eine App für Peer-to-Peer Dateitauschbörsen, um große " +#~ "Dateien auszutauschen. Es kann in mehreren Peer-to-Peer-Netzwerken " +#~ "teilnehmen, unter anderem eDonkey, Kademlia, Overnet, BitTorrent und " +#~ "DirectConnect." + +#~ msgid "" +#~ "Users belonging to admin and ed2k group can control it through the web " +#~ "interface. Users in the admin group can also control it through any of " +#~ "the separate mobile or desktop front-ends or a telnet interface. See " +#~ "manual." +#~ msgstr "" +#~ "Benutzer, die zur Gruppe admin und ed2k gehören, können es über die " +#~ "Weboberfläche steuern. Benutzer der Gruppe admin können es auch über eine " +#~ "der separaten mobilen oder Desktop-Frontends oder eine Telnet-" +#~ "Schnittstelle steuern. Siehe Handbuch." + +#, python-brace-format +#~ msgid "" +#~ "On {box_name}, downloaded files can be found in /var/lib/mldonkey/ " +#~ "directory." +#~ msgstr "" +#~ "Auf {box_name} können heruntergeladene Dateien im Verzeichnis /var/lib/" +#~ "mldonkey/ gefunden werden." + +#~ msgid "Download files using eDonkey applications" +#~ msgstr "Dateien mit eDonkey herunterladen" + +#~ msgid "MLDonkey" +#~ msgstr "MLDonkey" + +#~ msgid "Peer-to-peer File Sharing" +#~ msgstr "Peer-to-Peer-Datenaustausch" + +#~ msgid "KMLDonkey" +#~ msgstr "KMLDonkey" + +#~ msgid "AMLDonkey" +#~ msgstr "AMLDonkey" + #~ msgid "Mozilla Thunderbird" #~ msgstr "Mozilla Thunderbird" diff --git a/plinth/locale/django.pot b/plinth/locale/django.pot index a3b6fb3da..c0397b3c3 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: 2022-01-11 19:11-0500\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -760,7 +760,7 @@ msgstr "" #: plinth/modules/bepasty/forms.py:27 #: plinth/modules/bepasty/templates/bepasty.html:30 -#: plinth/modules/users/forms.py:102 plinth/modules/users/forms.py:228 +#: plinth/modules/users/forms.py:108 plinth/modules/users/forms.py:234 msgid "Permissions" msgstr "" @@ -843,7 +843,7 @@ msgstr "" msgid "Configuration updated." msgstr "" -#: plinth/modules/bepasty/views.py:93 plinth/modules/email_server/views.py:107 +#: plinth/modules/bepasty/views.py:93 plinth/modules/email_server/views.py:41 #: plinth/modules/gitweb/views.py:117 plinth/modules/searx/views.py:41 #: plinth/modules/searx/views.py:52 plinth/modules/tor/views.py:159 #: plinth/modules/zoph/views.py:72 @@ -933,10 +933,10 @@ msgstr "" #: plinth/modules/bind/views.py:71 plinth/modules/coturn/views.py:39 #: plinth/modules/deluge/views.py:42 plinth/modules/dynamicdns/views.py:169 -#: plinth/modules/ejabberd/views.py:85 plinth/modules/email_server/views.py:104 +#: plinth/modules/ejabberd/views.py:85 plinth/modules/email_server/views.py:38 #: plinth/modules/matrixsynapse/views.py:124 plinth/modules/mumble/views.py:28 #: plinth/modules/pagekite/forms.py:78 plinth/modules/quassel/views.py:28 -#: plinth/modules/shadowsocks/views.py:59 +#: plinth/modules/roundcube/views.py:32 plinth/modules/shadowsocks/views.py:59 #: plinth/modules/transmission/views.py:47 plinth/modules/ttrss/views.py:26 #: plinth/modules/wordpress/views.py:37 msgid "Configuration updated" @@ -1340,18 +1340,15 @@ msgid "Diagnostics" msgstr "" #: plinth/modules/diagnostics/__init__.py:97 -#: plinth/modules/email_server/templates/email_server.html:37 msgid "passed" msgstr "" #: plinth/modules/diagnostics/__init__.py:98 -#: plinth/modules/email_server/templates/email_server.html:35 #: plinth/modules/networks/views.py:49 msgid "failed" msgstr "" #: plinth/modules/diagnostics/__init__.py:99 -#: plinth/modules/email_server/templates/email_server.html:33 msgid "error" msgstr "" @@ -1806,76 +1803,56 @@ msgstr "" msgid "Powered by Postfix, Dovecot & Rspamd" msgstr "" -#: plinth/modules/email_server/audit/ldap.py:69 +#: plinth/modules/email_server/audit/ldap.py:68 msgid "Postfix-Dovecot SASL integration" msgstr "" -#: plinth/modules/email_server/audit/ldap.py:70 +#: plinth/modules/email_server/audit/ldap.py:69 msgid "Postfix alias maps" msgstr "" -#: plinth/modules/email_server/audit/rcube.py:31 -msgid "RoundCube availability" -msgstr "" - -#: plinth/modules/email_server/audit/rcube.py:32 -msgid "RoundCube configured for FreedomBox email" -msgstr "" - #: plinth/modules/email_server/audit/spam.py:87 msgid "Inbound and outbound mail filters" msgstr "" -#: plinth/modules/email_server/forms.py:17 -msgid "Enter a valid domain" -msgstr "" - -#: plinth/modules/email_server/forms.py:20 -msgid "Enter a valid destination" -msgstr "" - #: plinth/modules/email_server/forms.py:24 -msgid "domain" -msgstr "" - -#: plinth/modules/email_server/forms.py:38 msgid "Primary domain" msgstr "" -#: plinth/modules/email_server/forms.py:40 +#: plinth/modules/email_server/forms.py:26 msgid "" "Mails are received for all domains configured in the system. Among these, " "select the most important one." msgstr "" -#: plinth/modules/email_server/forms.py:48 +#: plinth/modules/email_server/forms.py:34 msgid "New alias (without @domain)" msgstr "" -#: plinth/modules/email_server/forms.py:55 +#: plinth/modules/email_server/forms.py:41 msgid "Contains illegal characters" msgstr "" -#: plinth/modules/email_server/forms.py:58 +#: plinth/modules/email_server/forms.py:44 msgid "Must start and end with a-z or 0-9" msgstr "" -#: plinth/modules/email_server/forms.py:61 +#: plinth/modules/email_server/forms.py:47 msgid "Cannot be a number" msgstr "" -#: plinth/modules/email_server/forms.py:71 +#: plinth/modules/email_server/forms.py:57 msgid "Aliases" msgstr "" -#: plinth/modules/email_server/forms.py:83 +#: plinth/modules/email_server/forms.py:69 #: 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 +#: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:29 msgid "Enabled" msgstr "" -#: plinth/modules/email_server/forms.py:86 +#: plinth/modules/email_server/forms.py:72 #: plinth/modules/firewall/templates/firewall.html:57 #: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:29 @@ -1884,7 +1861,7 @@ msgid "Disabled" msgstr "" #: plinth/modules/email_server/manifest.py:8 -#: plinth/modules/roundcube/__init__.py:52 +#: plinth/modules/roundcube/__init__.py:54 #: plinth/modules/roundcube/manifest.py:6 msgid "Roundcube" msgstr "" @@ -1903,7 +1880,7 @@ msgid "FairEmail" msgstr "" #: plinth/modules/email_server/templates/email_alias.html:13 -#: plinth/modules/email_server/templates/email_server.html:20 +#: plinth/modules/email_server/templates/email_server.html:15 msgid "Manage Aliases" msgstr "" @@ -1927,27 +1904,10 @@ msgstr "" msgid "Add" msgstr "" -#: plinth/modules/email_server/templates/email_server.html:15 +#: plinth/modules/email_server/templates/email_server.html:10 msgid "Manage Spam" msgstr "" -#: plinth/modules/email_server/templates/email_server.html:26 -msgid "Service Alert" -msgstr "" - -#: plinth/modules/email_server/templates/email_server.html:46 -msgid "Repair" -msgstr "" - -#: plinth/modules/email_server/views.py:73 -#, python-brace-format -msgid "Internal error in {0}" -msgstr "" - -#: plinth/modules/email_server/views.py:76 -msgid "Check syslog for more information" -msgstr "" - #: plinth/modules/firewall/__init__.py:26 #, python-brace-format msgid "" @@ -2840,10 +2800,14 @@ msgid "" "TURN server." msgstr "" -#: plinth/modules/matrixsynapse/manifest.py:12 +#: plinth/modules/matrixsynapse/manifest.py:14 msgid "Element" msgstr "" +#: plinth/modules/matrixsynapse/manifest.py:48 +msgid "FluffyChat" +msgstr "" + #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 #: plinth/modules/snapshot/templates/snapshot.html:12 #: plinth/templates/app.html:46 @@ -3142,47 +3106,6 @@ msgstr "" msgid "Updated media directory" msgstr "" -#: plinth/modules/mldonkey/__init__.py:23 -msgid "" -"MLDonkey is a peer-to-peer file sharing application used to exchange large " -"files. It can participate in multiple peer-to-peer networks including " -"eDonkey, Kademlia, Overnet, BitTorrent and DirectConnect." -msgstr "" - -#: plinth/modules/mldonkey/__init__.py:26 -msgid "" -"Users belonging to admin and ed2k group can control it through the web " -"interface. Users in the admin group can also control it through any of the " -"separate mobile or desktop front-ends or a telnet interface. See manual." -msgstr "" - -#: plinth/modules/mldonkey/__init__.py:31 -#, python-brace-format -msgid "" -"On {box_name}, downloaded files can be found in /var/lib/mldonkey/ directory." -msgstr "" - -#: plinth/modules/mldonkey/__init__.py:53 -msgid "Download files using eDonkey applications" -msgstr "" - -#: plinth/modules/mldonkey/__init__.py:56 -#: plinth/modules/mldonkey/manifest.py:11 -msgid "MLDonkey" -msgstr "" - -#: plinth/modules/mldonkey/__init__.py:58 -msgid "Peer-to-peer File Sharing" -msgstr "" - -#: plinth/modules/mldonkey/manifest.py:18 -msgid "KMLDonkey" -msgstr "" - -#: plinth/modules/mldonkey/manifest.py:30 -msgid "AMLDonkey" -msgstr "" - #: plinth/modules/mumble/__init__.py:26 msgid "" "Mumble is an open source, low-latency, encrypted, high quality voice chat " @@ -4579,11 +4502,11 @@ msgstr "" msgid "System Monitoring" msgstr "" -#: plinth/modules/power/__init__.py:13 +#: plinth/modules/power/__init__.py:14 msgid "Restart or shut down the system." msgstr "" -#: plinth/modules/power/__init__.py:30 +#: plinth/modules/power/__init__.py:31 msgid "Power" msgstr "" @@ -4782,7 +4705,7 @@ msgstr "" msgid "Access rights configuration updated" msgstr "" -#: plinth/modules/roundcube/__init__.py:19 +#: plinth/modules/roundcube/__init__.py:21 msgid "" "Roundcube webmail is a browser-based multilingual IMAP client with an " "application-like user interface. It provides full functionality you expect " @@ -4790,7 +4713,7 @@ msgid "" "manipulation, message searching and spell checking." msgstr "" -#: plinth/modules/roundcube/__init__.py:24 +#: plinth/modules/roundcube/__init__.py:26 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 " @@ -4799,7 +4722,7 @@ msgid "" "code>." msgstr "" -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -4809,10 +4732,21 @@ msgid "" "a>)." msgstr "" -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 msgid "Email Client" msgstr "" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -5135,24 +5069,28 @@ msgstr "" msgid "Updated security configuration" msgstr "" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "" -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." msgstr "" -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 msgid "Bookmarks" msgstr "" +#: plinth/modules/shaarli/manifest.py:12 +msgid "Shaarlier" +msgstr "" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -5359,7 +5297,9 @@ msgid "Software Installation Snapshots" msgstr "" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "" #: plinth/modules/snapshot/forms.py:32 @@ -5577,6 +5517,10 @@ msgstr "" msgid "Login" msgstr "" +#: plinth/modules/sso/views.py:101 +msgid "Logged out successfully." +msgstr "" + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -6310,15 +6254,17 @@ msgstr "" msgid "Authorization Password" msgstr "" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, python-brace-format +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "" -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 msgid "Invalid password." msgstr "" -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 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 " @@ -6327,62 +6273,62 @@ msgid "" "SSH and have administrative privileges (sudo)." msgstr "" -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, python-brace-format msgid "Creating LDAP user failed: {error}" msgstr "" -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, python-brace-format msgid "Failed to add new user to {group} group: {error}" msgstr "" -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " "line. Blank lines and lines starting with # will be ignored." msgstr "" -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "" -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "" -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "" -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "" -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 msgid "Failed to change user status." msgstr "" -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "" -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, python-brace-format msgid "Failed to add new user to admin group: {error}" msgstr "" -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, python-brace-format msgid "Failed to restrict console access: {error}" msgstr "" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "" @@ -6666,15 +6612,15 @@ msgstr "" msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "" diff --git a/plinth/locale/el/LC_MESSAGES/django.po b/plinth/locale/el/LC_MESSAGES/django.po index 65c2c5313..f12f5dcd4 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: 2022-01-11 19:11-0500\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" "PO-Revision-Date: 2021-04-14 04:27+0000\n" "Last-Translator: Michalis \n" "Language-Team: Greek imaps://imap." "παράδειγμα.com." -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -5691,10 +5594,21 @@ msgstr "" "settings/security/lesssecureapps\">https://www.google.com/settings/security/" "lesssecureapps )." -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 msgid "Email Client" msgstr "Πρόγραμμα-πελάτης ηλεκτρονικού ταχυδρομείου" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -6087,12 +6001,12 @@ msgstr "Σφάλμα κατά τη ρύθμιση περιορισμένης π msgid "Updated security configuration" msgstr "Ενημερώθηκαν οι ρυθμίσεις παραμέτρων ασφαλείας" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "" "To Shaarli σας επιτρέπει να αποθηκεύσετε και να μοιραστείτε σελιδοδείκτες." -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 #, fuzzy #| msgid "" #| "When enabled, Shaarli will be available from \n" "Language-Team: Spanish imaps://" "imap.ejemplo.com." -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -5602,10 +5510,21 @@ msgstr "" "google.com/settings/security/lesssecureapps\">https://www.google.com/" "settings/security/lesssecureapps)." -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 msgid "Email Client" msgstr "Cliente de correo" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -5983,11 +5902,11 @@ msgstr "Error al definir el acceso restringido: {exception}" msgid "Updated security configuration" msgstr "Configuración de seguridad actualizada" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "Shaarli le permite guardar y compartir marcadores." -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." @@ -5995,14 +5914,20 @@ msgstr "" "Note que Shaarli solo soporta una cuenta de usuaria/o, que debe configurar " "en el primer acceso." -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "Shaarli" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 msgid "Bookmarks" msgstr "Marcadores" +#: plinth/modules/shaarli/manifest.py:12 +#, fuzzy +#| msgid "Shaarli" +msgid "Shaarlier" +msgstr "Shaarli" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -6245,7 +6170,11 @@ msgid "Software Installation Snapshots" msgstr "Instantáneas de instalación de software" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +#, fuzzy +#| msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "" "Active o desactive las instantáneas antes y después de la instalación del " "software" @@ -6482,6 +6411,12 @@ msgstr "Inicio de sesión único" msgid "Login" msgstr "Inicio de sesión" +#: plinth/modules/sso/views.py:101 +#, fuzzy +#| msgid "Password changed successfully." +msgid "Logged out successfully." +msgstr "Clave de acceso cambiada con éxito." + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -7338,16 +7273,19 @@ msgstr "Obligatorio. Hasta 150 caracteres. Solo letras, números y @/./-/_ ." msgid "Authorization Password" msgstr "Contraseña de autorización" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, fuzzy, python-brace-format +#| msgid "Enter your current password to authorize account modifications." +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "" "Introduce tu contraseña actual para autorizar modificaciones en la cuenta." -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 msgid "Invalid password." msgstr "Contraseña no válida." -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 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 " @@ -7362,21 +7300,21 @@ msgstr "" "servicios, también podrán acceder al sistema por SSH con privilegios de " "administración (sudo)." -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, python-brace-format msgid "Creating LDAP user failed: {error}" msgstr "Ha fallado la creación de usuaria/o LDAP: {error}" -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, python-brace-format msgid "Failed to add new user to {group} group: {error}" msgstr "Ha fallado añadir usuaria/o nuevo al grupo {group}: {error}" -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "Claves de SSH autorizadas" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " @@ -7386,41 +7324,41 @@ msgstr "" "de una clave. Puede introducir más de una clave, cada una en una línea. Las " "líneas en blanco y las que empiecen por # se ignorarán." -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "Ha fallado renombrar al o la usuaria LDAP." -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "Ha fallado la eliminación del o de la usuaria del grupo." -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "Ha fallado añadir al o la usuaria al grupo." -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "No es posible configurar las claves SSH." -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 msgid "Failed to change user status." msgstr "Ha fallado al cambiar el estado del usuario." -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "Ha fallado cambiar la clave del o de la usuaria LDAP." -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, python-brace-format msgid "Failed to add new user to admin group: {error}" msgstr "Ha fallado añadir usuaria/o nueva/o al grupo admin: {error}" -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, python-brace-format msgid "Failed to restrict console access: {error}" msgstr "Falló al restringir el acceso a la consola: {error}" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "Creada cuenta de usuaria/o, ya está usted en el sistema" @@ -7740,15 +7678,15 @@ msgstr "Servidores a los que se conectará %(box_name)s:" msgid "Endpoint" msgstr "Extremo" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 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:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "Añadir nuevo servidor" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "Añadir conexión a servidor" @@ -8448,6 +8386,85 @@ msgstr "%(percentage)s%% completado" msgid "Gujarati" msgstr "Gujarati" +#, fuzzy +#~| msgid "unavailable" +#~ msgid "RoundCube availability" +#~ msgstr "indisponible" + +#~ msgid "RoundCube configured for FreedomBox email" +#~ msgstr "RoundCube configurado para FreedomBox" + +#~ msgid "Enter a valid domain" +#~ msgstr "Indique un nombre de dominio válido" + +#~ msgid "Enter a valid destination" +#~ msgstr "Indique un destino válido" + +#, fuzzy +#~| msgid "Domain" +#~ msgid "domain" +#~ msgstr "Dominio" + +#, fuzzy +#~| msgid "Service Type" +#~ msgid "Service Alert" +#~ msgstr "Tipo de servicio" + +#~ msgid "Repair" +#~ msgstr "Reparar" + +#, python-brace-format +#~ msgid "Internal error in {0}" +#~ msgstr "Fallo interno en {0}" + +#~ msgid "Check syslog for more information" +#~ msgstr "Más información en syslog" + +#~ msgid "" +#~ "MLDonkey is a peer-to-peer file sharing application used to exchange " +#~ "large files. It can participate in multiple peer-to-peer networks " +#~ "including eDonkey, Kademlia, Overnet, BitTorrent and DirectConnect." +#~ msgstr "" +#~ "MLDonkey es una aplicación para compartir archivos entre pares que se usa " +#~ "para intercambiar archivos grandes. Puede participar en múltiples redes " +#~ "de pares, incluyendo eDonkey, Kademlia, Overnet, BitTorrent y " +#~ "DirectConnect." + +#~ msgid "" +#~ "Users belonging to admin and ed2k group can control it through the web " +#~ "interface. Users in the admin group can also control it through any of " +#~ "the separate mobile or desktop front-ends or a telnet interface. See " +#~ "manual." +#~ msgstr "" +#~ "Los usuarios pertenecientes a los grupos «admin» y «ed2k» pueden " +#~ "controlarla usando la interfaz web. Los usuarios en el grupo «admin» " +#~ "pueden controlarla también a través de cualquiera de las interfaces " +#~ "externas para móvil o escritorio, o de una interfaz «telnet». Vea el " +#~ "manual." + +#, python-brace-format +#~ msgid "" +#~ "On {box_name}, downloaded files can be found in /var/lib/mldonkey/ " +#~ "directory." +#~ msgstr "" +#~ "Los archivos descargados en {box_name} se encuentran en el directorio «/" +#~ "var/lib/mldonkey/»." + +#~ msgid "Download files using eDonkey applications" +#~ msgstr "Descargar archivos usando aplicaciones para eDonkey" + +#~ msgid "MLDonkey" +#~ msgstr "MLDonkey" + +#~ msgid "Peer-to-peer File Sharing" +#~ msgstr "Compartir archivos entre pares" + +#~ msgid "KMLDonkey" +#~ msgstr "KMLDonkey" + +#~ msgid "AMLDonkey" +#~ msgstr "AMLDonkey" + #~ msgid "Mozilla Thunderbird" #~ msgstr "Mozilla Thunderbird" diff --git a/plinth/locale/fa/LC_MESSAGES/django.po b/plinth/locale/fa/LC_MESSAGES/django.po index 84cb3c0b9..5fd894e3b 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: 2022-01-11 19:11-0500\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" "PO-Revision-Date: 2021-09-07 11:34+0000\n" "Last-Translator: Seyed mohammad ali Hosseinifard \n" "Language-Team: Persian ." msgstr "" -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -5357,11 +5267,22 @@ msgid "" "a>)." msgstr "" -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 #, fuzzy msgid "Email Client" msgstr "برنامهٔ DNS متغیر (Dynamic DNS Client)" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -5725,24 +5646,28 @@ msgstr "خطا در هنگام تنظیم منطقهٔ زمانی: {exception}" msgid "Updated security configuration" msgstr "پیکربندی عمومی" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "" -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." msgstr "" -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 msgid "Bookmarks" msgstr "" +#: plinth/modules/shaarli/manifest.py:12 +msgid "Shaarlier" +msgstr "" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -5971,7 +5896,9 @@ msgid "Software Installation Snapshots" msgstr "" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "" #: plinth/modules/snapshot/forms.py:32 @@ -6213,6 +6140,12 @@ msgstr "" msgid "Login" msgstr "" +#: plinth/modules/sso/views.py:101 +#, fuzzy +#| msgid "Partition expanded successfully." +msgid "Logged out successfully." +msgstr "پارتیشن با موفقیت بزرگ شد." + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -6985,17 +6918,19 @@ msgstr "" msgid "Authorization Password" msgstr "حساب مدیر" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, python-brace-format +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "" -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 #, fuzzy #| msgid "Show password" msgid "Invalid password." msgstr "رمز را نشان بده" -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 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 " @@ -7004,68 +6939,68 @@ msgid "" "SSH and have administrative privileges (sudo)." msgstr "" -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, fuzzy, python-brace-format #| msgid "Creating LDAP user failed." msgid "Creating LDAP user failed: {error}" msgstr "ساختن کاربر LDAP شکست خورد." -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, fuzzy, python-brace-format #| msgid "Failed to add new user to admin group." msgid "Failed to add new user to {group} group: {error}" msgstr "افزودن کاربر به گروه مدیران شکست خورد." -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " "line. Blank lines and lines starting with # will be ignored." msgstr "" -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "" -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "" -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "" -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "" -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 #, fuzzy #| msgid "Failed to add new user to admin group." msgid "Failed to change user status." msgstr "افزودن کاربر به گروه مدیران شکست خورد." -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "" -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, fuzzy, python-brace-format #| msgid "Failed to add new user to admin group." msgid "Failed to add new user to admin group: {error}" msgstr "افزودن کاربر به گروه مدیران شکست خورد." -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, fuzzy, python-brace-format #| msgid "Failed to obtain certificate for domain {domain}: {error}" msgid "Failed to restrict console access: {error}" msgstr "گرفتن گواهی برای دامنهٔ {domain} شکست خورد: {error}" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "حساب کاربری ساخته شد، شما الان وارد سیستم هستید" @@ -7368,15 +7303,15 @@ msgstr "" msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 #, fuzzy #| msgid "Add Connection" @@ -8039,6 +7974,43 @@ msgstr "" msgid "Gujarati" msgstr "" +#, fuzzy +#~| msgid "Available Domains" +#~ msgid "RoundCube availability" +#~ msgstr "دامنه‌های موجود" + +#, fuzzy +#~| msgid "Invalid server name" +#~ msgid "Enter a valid domain" +#~ msgstr "نام کاربری معتبر نیست" + +#, fuzzy +#~| msgid "Invalid server name" +#~ msgid "Enter a valid destination" +#~ msgstr "نام کاربری معتبر نیست" + +#, fuzzy +#~| msgid "Domain" +#~ msgid "domain" +#~ msgstr "دامنه" + +#, fuzzy +#~| msgid "Service Type" +#~ msgid "Service Alert" +#~ msgstr "نوع سرویس" + +#, fuzzy +#~ msgid "MLDonkey" +#~ msgstr "مانکی‌اسفیر" + +#, fuzzy +#~ msgid "KMLDonkey" +#~ msgstr "مانکی‌اسفیر" + +#, fuzzy +#~ msgid "AMLDonkey" +#~ msgstr "مانکی‌اسفیر" + #, fuzzy #~| msgid "Create..." #~ msgid "Updates" diff --git a/plinth/locale/fake/LC_MESSAGES/django.po b/plinth/locale/fake/LC_MESSAGES/django.po index 4f3b52529..c718228fa 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: 2022-01-11 19:11-0500\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" "PO-Revision-Date: 2016-01-31 22:24+0530\n" "Last-Translator: Sunil Mohan Adapa \n" "Language-Team: Plinth Developers /roundcube. " @@ -5665,7 +5570,7 @@ msgstr "" "IMAP.EXAMPLE.COM. FOR IMAP OVER SSL (RECOMMENDED), FILL THE " "SERVER FIELD LIKE IMAPS://IMAP.EXAMPLE.COM." -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 #, fuzzy #| msgid "" #| "For Gmail, username will be your Gmail address, password will be your " @@ -5689,12 +5594,23 @@ msgstr "" "lesssecureapps\" >HTTPS://WWW.GOOGLE.COM/SETTINGS/SECURITY/LESSSECUREAPPS)." -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 #, fuzzy #| msgid "Email Client (Roundcube)" msgid "Email Client" msgstr "EMAIL CLIENT (ROUNDCUBE)" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -6066,11 +5982,11 @@ msgstr "ERROR SETTING TIME ZONE: {exception}" msgid "Updated security configuration" msgstr "GENERAL CONFIGURATION" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "SHAARLI ALLOWS YOU TO SAVE AND SHARE BOOKMARKS." -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 #, fuzzy #| msgid "" #| "When enabled, Shaarli will be available from /" @@ -6084,16 +6000,22 @@ msgstr "" "a> PATH ON THE WEB SERVER. NOTE THAT SHAARLI ONLY SUPPORTS A SINGLE USER " "ACCOUNT, WHICH YOU WILL NEED TO SETUP ON THE INITIAL VISIT." -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "SHAARLI" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 #, fuzzy #| msgid "Bookmarks (Shaarli)" msgid "Bookmarks" msgstr "BOOKMARKS (SHAARLI)" +#: plinth/modules/shaarli/manifest.py:12 +#, fuzzy +#| msgid "Shaarli" +msgid "Shaarlier" +msgstr "SHAARLI" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -6324,7 +6246,9 @@ msgid "Software Installation Snapshots" msgstr "" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "" #: plinth/modules/snapshot/forms.py:32 @@ -6570,6 +6494,12 @@ msgstr "" msgid "Login" msgstr "LOGIN" +#: plinth/modules/sso/views.py:101 +#, fuzzy +#| msgid "Password changed successfully." +msgid "Logged out successfully." +msgstr "PASSWORD CHANGED SUCCESSFULLY." + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -7428,17 +7358,19 @@ msgstr "" msgid "Authorization Password" msgstr "ADMINISTRATOR ACCOUNT" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, python-brace-format +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "" -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 #, fuzzy #| msgid "Show password" msgid "Invalid password." msgstr "SHOW PASSWORD" -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 #, fuzzy #| msgid "" #| "Select which services should be available to the new user. The user will " @@ -7459,23 +7391,23 @@ msgstr "" "ABLE TO LOG IN TO ALL SERVICES. THEY CAN ALSO LOG IN TO THE SYSTEM THROUGH " "SSH AND HAVE ADMINISTRATIVE PRIVILEGES (SUDO)." -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, fuzzy, python-brace-format #| msgid "Creating LDAP user failed." msgid "Creating LDAP user failed: {error}" msgstr "CREATING LDAP USER FAILED." -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, fuzzy, python-brace-format #| msgid "Failed to add new user to {group} group." msgid "Failed to add new user to {group} group: {error}" msgstr "FAILED TO ADD NEW USER TO {group} GROUP." -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " @@ -7485,45 +7417,45 @@ msgstr "" "SYSTEM WITHOUT USING A PASSWORD. YOU MAY ENTER MULTIPLE KEYS, ONE ON EACH " "LINE. BLANK LINES AND LINES STARTING WITH # WILL BE IGNORED." -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "RENAMING LDAP USER FAILED." -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "FAILED TO REMOVE USER FROM GROUP." -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "FAILED TO ADD USER TO GROUP." -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "" -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 #, fuzzy #| msgid "Failed to add user to group." msgid "Failed to change user status." msgstr "FAILED TO ADD USER TO GROUP." -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "CHANGING LDAP USER PASSWORD FAILED." -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, fuzzy, python-brace-format #| msgid "Failed to add new user to admin group." msgid "Failed to add new user to admin group: {error}" msgstr "FAILED TO ADD NEW USER TO ADMIN GROUP." -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, fuzzy, python-brace-format #| msgid "Failed to obtain certificate for domain {domain}: {error}" msgid "Failed to restrict console access: {error}" msgstr "FAILED TO OBTAIN CERTIFICATE FOR DOMAIN {domain}: {error}" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "USER ACCOUNT CREATED, YOU ARE NOW LOGGED IN" @@ -7828,15 +7760,15 @@ msgstr "" msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 #, fuzzy #| msgid "Add Connection" @@ -8553,6 +8485,51 @@ msgstr "%(percentage)s%% COMPLETE" msgid "Gujarati" msgstr "" +#, fuzzy +#~| msgid "Enable Subdomains" +#~ msgid "RoundCube availability" +#~ msgstr "ENABLE SUBDOMAINS" + +#, fuzzy +#~| msgid "Invalid server name" +#~ msgid "Enter a valid domain" +#~ msgstr "INVALID SERVER NAME" + +#, fuzzy +#~| msgid "Invalid server name" +#~ msgid "Enter a valid destination" +#~ msgstr "INVALID SERVER NAME" + +#, fuzzy +#~| msgid "Domain" +#~ msgid "domain" +#~ msgstr "DOMAIN" + +#, fuzzy +#~| msgid "Service type" +#~ msgid "Service Alert" +#~ msgstr "SERVICE TYPE" + +#, fuzzy +#~| msgid "Monkeysphere" +#~ msgid "MLDonkey" +#~ msgstr "MONKEYSPHERE" + +#, fuzzy +#~| msgid "Enable Shaarli" +#~ msgid "Peer-to-peer File Sharing" +#~ msgstr "ENABLE SHAARLI" + +#, fuzzy +#~| msgid "Monkeysphere" +#~ msgid "KMLDonkey" +#~ msgstr "MONKEYSPHERE" + +#, fuzzy +#~| msgid "Monkeysphere" +#~ msgid "AMLDonkey" +#~ msgstr "MONKEYSPHERE" + #, fuzzy #~| msgid "Update URL" #~ msgid "Updates" diff --git a/plinth/locale/fr/LC_MESSAGES/django.po b/plinth/locale/fr/LC_MESSAGES/django.po index 342b911eb..2dbc22e2d 100644 --- a/plinth/locale/fr/LC_MESSAGES/django.po +++ b/plinth/locale/fr/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FreedomBox UI\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-11 19:11-0500\n" -"PO-Revision-Date: 2021-12-18 21:57+0000\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" +"PO-Revision-Date: 2022-01-22 21:55+0000\n" "Last-Translator: Coucouf \n" "Language-Team: French \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.10\n" +"X-Generator: Weblate 4.11-dev\n" #: doc/dev/_templates/layout.html:11 msgid "Page source" @@ -484,20 +484,16 @@ msgid "Existing Backups" msgstr "Sauvegardes existantes" #: plinth/modules/backups/templates/backups_add_remote_repository.html:19 -#, fuzzy, python-format -#| msgid "" -#| "The credentials for this repository are stored on your %(box_name)s.
To restore a backup on a new %(box_name)s you need the ssh credentials " -#| "and, if chosen, the encryption passphrase." +#, python-format msgid "" "The credentials for this repository are stored on your %(box_name)s.
" "To restore a backup on a new %(box_name)s you need the SSH credentials and, " "if chosen, the encryption passphrase." msgstr "" -"Les informations d’identification pour ce dépôt sont stockées sur votre " -"%(box_name)s.
Pour restaurer une sauvegarde sur une nouvelle " -"%(box_name)s, vous devrez disposer des informations d’identification SSH et, " -"le cas échéant, de la phrase secrète de chiffrement." +"Les informations de connexion à ce dépôt sont stockées sur votre " +"%(box_name)s.
Pour restaurer une sauvegarde sur une nouvelle " +"%(box_name)s, vous aurez besoin de ces informations de connexion SSH et, le " +"cas échéant, de la phrase secrète de chiffrement." #: plinth/modules/backups/templates/backups_add_remote_repository.html:28 msgid "Create Location" @@ -652,20 +648,15 @@ msgid "How to verify?" msgstr "Comment vérifier ?" #: plinth/modules/backups/templates/verify_ssh_hostkey.html:45 -#, fuzzy -#| msgid "" -#| "Run the following command on the SSH host machine. The output should " -#| "match one of the provided options. You can also use dsa, ecdsa, ed25519 " -#| "etc. instead of rsa, by choosing the corresponding file." msgid "" "Run the following command on the SSH host machine. The output should match " "one of the provided options. You can also use DSA, ECDSA, Ed25519 etc. " "instead of RSA, by choosing the corresponding file." msgstr "" "Lancez la commande suivante sur la machine hébergeant le serveur SSH. La " -"sortie devrait correspondre à l’une des valeurs affichées ci-dessus. Vous " -"pouvez également utiliser dsa, ecdsa, ed25519, etc. à la place de rsa en " -"sélectionnant le fichier correspondant dans la commande." +"sortie doit correspondre à l’une des valeurs affichées ci-dessus. Vous " +"pouvez également utiliser DSA, ECDSA, Ed25519, etc. à la place de RSA en " +"indiquant le chemin du fichier correspondant dans la commande." #: plinth/modules/backups/templates/verify_ssh_hostkey.html:60 msgid "Verify Host" @@ -854,7 +845,7 @@ msgstr "" #: plinth/modules/bepasty/forms.py:27 #: plinth/modules/bepasty/templates/bepasty.html:30 -#: plinth/modules/users/forms.py:102 plinth/modules/users/forms.py:228 +#: plinth/modules/users/forms.py:108 plinth/modules/users/forms.py:234 msgid "Permissions" msgstr "Permissions" @@ -940,7 +931,7 @@ msgstr "Admin" msgid "Configuration updated." msgstr "Configuration mise à jour." -#: plinth/modules/bepasty/views.py:93 plinth/modules/email_server/views.py:107 +#: plinth/modules/bepasty/views.py:93 plinth/modules/email_server/views.py:41 #: plinth/modules/gitweb/views.py:117 plinth/modules/searx/views.py:41 #: plinth/modules/searx/views.py:52 plinth/modules/tor/views.py:159 #: plinth/modules/zoph/views.py:72 @@ -1038,10 +1029,10 @@ msgstr "Actualiser l’adresse IP et les domaines" #: plinth/modules/bind/views.py:71 plinth/modules/coturn/views.py:39 #: plinth/modules/deluge/views.py:42 plinth/modules/dynamicdns/views.py:169 -#: plinth/modules/ejabberd/views.py:85 plinth/modules/email_server/views.py:104 +#: plinth/modules/ejabberd/views.py:85 plinth/modules/email_server/views.py:38 #: plinth/modules/matrixsynapse/views.py:124 plinth/modules/mumble/views.py:28 #: plinth/modules/pagekite/forms.py:78 plinth/modules/quassel/views.py:28 -#: plinth/modules/shadowsocks/views.py:59 +#: plinth/modules/roundcube/views.py:32 plinth/modules/shadowsocks/views.py:59 #: plinth/modules/transmission/views.py:47 plinth/modules/ttrss/views.py:26 #: plinth/modules/wordpress/views.py:37 msgid "Configuration updated" @@ -1522,18 +1513,15 @@ msgid "Diagnostics" msgstr "Diagnostics" #: plinth/modules/diagnostics/__init__.py:97 -#: plinth/modules/email_server/templates/email_server.html:37 msgid "passed" msgstr "réussi" #: plinth/modules/diagnostics/__init__.py:98 -#: plinth/modules/email_server/templates/email_server.html:35 #: plinth/modules/networks/views.py:49 msgid "failed" msgstr "échoué" #: plinth/modules/diagnostics/__init__.py:99 -#: plinth/modules/email_server/templates/email_server.html:33 msgid "error" msgstr "erreur" @@ -2085,43 +2073,23 @@ msgstr "Serveur de courriel" msgid "Powered by Postfix, Dovecot & Rspamd" msgstr "Propulsé par Postfix, Dovecot & Rspamd" -#: plinth/modules/email_server/audit/ldap.py:69 +#: plinth/modules/email_server/audit/ldap.py:68 msgid "Postfix-Dovecot SASL integration" msgstr "Intégration de l'authentification SASL Postfix-Dovecot" -#: plinth/modules/email_server/audit/ldap.py:70 +#: plinth/modules/email_server/audit/ldap.py:69 msgid "Postfix alias maps" msgstr "Table d’alias Postfix" -#: plinth/modules/email_server/audit/rcube.py:31 -msgid "RoundCube availability" -msgstr "Disponibilité de RoundCube" - -#: plinth/modules/email_server/audit/rcube.py:32 -msgid "RoundCube configured for FreedomBox email" -msgstr "Roundcube est configuré pour la gestion de courriels de la FreedomBox" - #: plinth/modules/email_server/audit/spam.py:87 msgid "Inbound and outbound mail filters" msgstr "Filtres de courriels entrants et sortants" -#: plinth/modules/email_server/forms.py:17 -msgid "Enter a valid domain" -msgstr "Entrez un nom de domaine valide" - -#: plinth/modules/email_server/forms.py:20 -msgid "Enter a valid destination" -msgstr "Entrez une destination valide" - #: plinth/modules/email_server/forms.py:24 -msgid "domain" -msgstr "domaine" - -#: plinth/modules/email_server/forms.py:38 msgid "Primary domain" msgstr "Domaine principal" -#: plinth/modules/email_server/forms.py:40 +#: plinth/modules/email_server/forms.py:26 msgid "" "Mails are received for all domains configured in the system. Among these, " "select the most important one." @@ -2129,34 +2097,34 @@ msgstr "" "Les courriels sont reçus pour tous les domaines configurés sur ce système. " "Parmi ces domaines, choisissez le domaine par défaut." -#: plinth/modules/email_server/forms.py:48 +#: plinth/modules/email_server/forms.py:34 msgid "New alias (without @domain)" msgstr "Nouvel alias (sans le @domaine)" -#: plinth/modules/email_server/forms.py:55 +#: plinth/modules/email_server/forms.py:41 msgid "Contains illegal characters" msgstr "Contient des caractères interdits" -#: plinth/modules/email_server/forms.py:58 +#: plinth/modules/email_server/forms.py:44 msgid "Must start and end with a-z or 0-9" msgstr "Doit commencer par a-z ou 0-9" -#: plinth/modules/email_server/forms.py:61 +#: plinth/modules/email_server/forms.py:47 msgid "Cannot be a number" msgstr "Ne peut être un nombre" -#: plinth/modules/email_server/forms.py:71 +#: plinth/modules/email_server/forms.py:57 msgid "Aliases" msgstr "Liste d’alias" -#: plinth/modules/email_server/forms.py:83 +#: plinth/modules/email_server/forms.py:69 #: 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 +#: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:29 msgid "Enabled" msgstr "Activé" -#: plinth/modules/email_server/forms.py:86 +#: plinth/modules/email_server/forms.py:72 #: plinth/modules/firewall/templates/firewall.html:57 #: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:29 @@ -2165,7 +2133,7 @@ msgid "Disabled" msgstr "Désactivé" #: plinth/modules/email_server/manifest.py:8 -#: plinth/modules/roundcube/__init__.py:52 +#: plinth/modules/roundcube/__init__.py:54 #: plinth/modules/roundcube/manifest.py:6 msgid "Roundcube" msgstr "Roundcube" @@ -2184,7 +2152,7 @@ msgid "FairEmail" msgstr "FairEmail" #: plinth/modules/email_server/templates/email_alias.html:13 -#: plinth/modules/email_server/templates/email_server.html:20 +#: plinth/modules/email_server/templates/email_server.html:15 msgid "Manage Aliases" msgstr "Configurer des alias" @@ -2208,27 +2176,10 @@ msgstr "Créer un nouvel alias de courriel" msgid "Add" msgstr "Ajouter" -#: plinth/modules/email_server/templates/email_server.html:15 +#: plinth/modules/email_server/templates/email_server.html:10 msgid "Manage Spam" msgstr "Configurer le filtrage des pourriels" -#: plinth/modules/email_server/templates/email_server.html:26 -msgid "Service Alert" -msgstr "Alertes sur le service" - -#: plinth/modules/email_server/templates/email_server.html:46 -msgid "Repair" -msgstr "Réparer" - -#: plinth/modules/email_server/views.py:73 -#, python-brace-format -msgid "Internal error in {0}" -msgstr "Erreur interne dans le module {0}" - -#: plinth/modules/email_server/views.py:76 -msgid "Check syslog for more information" -msgstr "Veuillez consulter les journaux système pour plus d’information" - #: plinth/modules/firewall/__init__.py:26 #, python-brace-format msgid "" @@ -2902,11 +2853,6 @@ msgid "Anonymous Torrents" msgstr "Torrents anonymes" #: plinth/modules/i2p/views.py:16 -#, fuzzy -#| msgid "" -#| "I2P lets you browse the Internet and hidden services (eepsites) " -#| "anonymously. For this, your browser, preferably a Tor Browser, needs to " -#| "be configured for a proxy." msgid "" "I2P lets you browse the Internet and hidden services (eepsites) anonymously. " "For this, your browser, preferably the Tor Browser, needs to be configured " @@ -3311,10 +3257,14 @@ msgstr "" "serveur STUN/TURN pour Matrix Synapse. Désactivez cette option si vous " "souhaitez utiliser un serveur STUN/TURN différent." -#: plinth/modules/matrixsynapse/manifest.py:12 +#: plinth/modules/matrixsynapse/manifest.py:14 msgid "Element" msgstr "Element" +#: plinth/modules/matrixsynapse/manifest.py:48 +msgid "FluffyChat" +msgstr "" + #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 #: plinth/modules/snapshot/templates/snapshot.html:12 #: plinth/templates/app.html:46 @@ -3684,56 +3634,6 @@ msgstr "Le répertoire indiqué n’existe pas." msgid "Updated media directory" msgstr "Répertoire multimédia mis à jour" -#: plinth/modules/mldonkey/__init__.py:23 -msgid "" -"MLDonkey is a peer-to-peer file sharing application used to exchange large " -"files. It can participate in multiple peer-to-peer networks including " -"eDonkey, Kademlia, Overnet, BitTorrent and DirectConnect." -msgstr "" -"MLDonkey est une application de partage de fichiers en pair à pair utilisée " -"pour s'échanger de gros fichiers. Elle peut participer à de nombreux réseaux " -"de pair à pair dont eDonkey, Kademlia, Overnet, BitTorrent et DirectConnect." - -#: plinth/modules/mldonkey/__init__.py:26 -msgid "" -"Users belonging to admin and ed2k group can control it through the web " -"interface. Users in the admin group can also control it through any of the " -"separate mobile or desktop front-ends or a telnet interface. See manual." -msgstr "" -"Les utilisateurs membres des groupes admin ou ed2k peuvent l’utiliser au " -"travers de l’interface web. Les utilisateurs du groupe admin peuvent " -"également l’utiliser depuis n’importe quel client sur téléphone ou " -"ordinateur, ou depuis une interface telnet. Consultez le manuel." - -#: plinth/modules/mldonkey/__init__.py:31 -#, python-brace-format -msgid "" -"On {box_name}, downloaded files can be found in /var/lib/mldonkey/ directory." -msgstr "" -"Sur la {box_name}, les fichiers sont téléchargés dans le répertoire /var/lib/" -"mldonkey/." - -#: plinth/modules/mldonkey/__init__.py:53 -msgid "Download files using eDonkey applications" -msgstr "Téléchargement de fichiers avec les applications eDonkey" - -#: plinth/modules/mldonkey/__init__.py:56 -#: plinth/modules/mldonkey/manifest.py:11 -msgid "MLDonkey" -msgstr "MLDonkey" - -#: plinth/modules/mldonkey/__init__.py:58 -msgid "Peer-to-peer File Sharing" -msgstr "Partage de fichiers de pair à pair" - -#: plinth/modules/mldonkey/manifest.py:18 -msgid "KMLDonkey" -msgstr "KMLDonkey" - -#: plinth/modules/mldonkey/manifest.py:30 -msgid "AMLDonkey" -msgstr "AMLDonkey" - #: plinth/modules/mumble/__init__.py:26 msgid "" "Mumble is an open source, low-latency, encrypted, high quality voice chat " @@ -3743,20 +3643,14 @@ msgstr "" "et à faible temps de latence." #: plinth/modules/mumble/__init__.py:28 -#, fuzzy -#| msgid "" -#| "You can connect to your Mumble server on the regular Mumble port 64738. " -#| "
Clients to connect to Mumble from your " -#| "desktop and Android devices are available." msgid "" "You can connect to your Mumble server on the regular Mumble port 64738. Clients to connect to Mumble from your " "desktop and mobile devices are available." msgstr "" "Vous pouvez vous connecter au serveur Mumble sur le port Mumble habituel " -"64738. Utilisez l’un des clients " -"permettant de se connecter à Mumble depuis votre ordinateur ou votre " -"appareil Android." +"64738. Utilisez l’un des clients Mumble " +"pour vous connecter depuis votre ordinateur ou un appareil mobile." #: plinth/modules/mumble/__init__.py:48 plinth/modules/mumble/manifest.py:9 msgid "Mumble" @@ -4725,21 +4619,17 @@ msgstr "" "%(box_name)s puisse fournir ses services." #: plinth/modules/networks/templates/router_configuration_content.html:32 -#, fuzzy -#| msgid "" -#| "If you don't have control over your router, choose not to configure it. " -#| "To see options to overcome this limitation, choose 'no public address' " -#| "option in Internet connection type selection." msgid "" "If you don't have control over your router, choose not to configure it. To " "see options to overcome this limitation, choose 'I dont have a public IP " "address' option in Internet connection type selection." msgstr "" -"Si vous n’avez pas le contrôle de votre routeur, choisissez de ne pas le " -"configurer. Pour voir les options permettant de surmonter cette limitation, " -"choisissez l’option « pas d’adresses publique » dans la sélection du type de " -"connexion à Internet." +"Si vous n’avez pas le contrôle de votre routeur, choisissez l’option de ne " +"pas le configurer. Pour plus d’informations sur les manières de contourner " +"cette limitation, choisissez l’option « Je n’ai d’adresse IP publique » dans " +"la sélection du type de connexion à Internet." #: plinth/modules/networks/templates/router_configuration_content.html:39 msgid "Choose How You Wish to Configure Your Router" @@ -5378,11 +5268,11 @@ msgstr "" msgid "System Monitoring" msgstr "Surveillance du système" -#: plinth/modules/power/__init__.py:13 +#: plinth/modules/power/__init__.py:14 msgid "Restart or shut down the system." msgstr "Redémarrer ou éteindre le système." -#: plinth/modules/power/__init__.py:30 +#: plinth/modules/power/__init__.py:31 msgid "Power" msgstr "Alimentation" @@ -5642,7 +5532,7 @@ msgstr "" msgid "Access rights configuration updated" msgstr "Configuration des droits d’accès mise à jour" -#: plinth/modules/roundcube/__init__.py:19 +#: plinth/modules/roundcube/__init__.py:21 msgid "" "Roundcube webmail is a browser-based multilingual IMAP client with an " "application-like user interface. It provides full functionality you expect " @@ -5656,7 +5546,7 @@ msgstr "" "carnet d’adresses, une gestion des dossiers, un outil de recherche dans les " "messages et un correcteur orthographique." -#: plinth/modules/roundcube/__init__.py:24 +#: plinth/modules/roundcube/__init__.py:26 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 " @@ -5671,7 +5561,7 @@ msgstr "" "(recommandé), remplissez le champ serveur avec une adresse du type " "imaps://imap.example.com." -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -5687,10 +5577,21 @@ msgstr "" "settings/security/lesssecureapps\">https://www.google.com/settings/security/" "lesssecureapps)." -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 msgid "Email Client" msgstr "Client de courriel" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -6073,11 +5974,11 @@ msgstr "Erreur lors de la mise en place de l’accès restreint : {exception}" msgid "Updated security configuration" msgstr "Configuration de sécurité mise à jour" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "Shaarli permet de sauvegarder et de partager vos signets." -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." @@ -6085,14 +5986,20 @@ msgstr "" "Notez que Shaarli ne sait gérer qu’un unique compte utilisateur, que vous " "devrez configurer lors de votre première visite." -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "Shaarli" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 msgid "Bookmarks" msgstr "Signets" +#: plinth/modules/shaarli/manifest.py:12 +#, fuzzy +#| msgid "Shaarli" +msgid "Shaarlier" +msgstr "Shaarli" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -6341,7 +6248,11 @@ msgid "Software Installation Snapshots" msgstr "Instantanés d’installation de logiciels" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +#, fuzzy +#| msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "" "Active ou désactive la prise d’instantanés avant et après l’installation de " "logiciels" @@ -6579,6 +6490,12 @@ msgstr "Authentification unique" msgid "Login" msgstr "S’identifier" +#: plinth/modules/sso/views.py:101 +#, fuzzy +#| msgid "Password changed successfully." +msgid "Logged out successfully." +msgstr "Le mot de passe a été changé." + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -7088,8 +7005,6 @@ msgstr "" "l’utilisation de BitTorrent n’est pas anonyme." #: plinth/modules/transmission/__init__.py:27 -#, fuzzy -#| msgid "Please do not change the default port of the transmission daemon." msgid "Please do not change the default port of the Transmission daemon." msgstr "Veuillez ne pas changer le port par défaut du démon de Transmission." @@ -7168,10 +7083,8 @@ msgstr "" #: plinth/modules/upgrades/__init__.py:129 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:11 #: plinth/modules/upgrades/templates/update-firstboot.html:11 -#, fuzzy -#| msgid "Software Upgrades" msgid "Software Update" -msgstr "Mises à Niveau Logiciels" +msgstr "Mise à jour du système" #: plinth/modules/upgrades/__init__.py:132 msgid "FreedomBox Updated" @@ -7279,8 +7192,7 @@ msgstr "" " " #: plinth/modules/upgrades/templates/upgrades-new-release.html:9 -#, fuzzy, python-format -#| msgid "%(box_name)s Updated" +#, python-format msgid "%(box_name)s updated" msgstr "%(box_name)s mise à jour" @@ -7452,17 +7364,20 @@ msgstr "" msgid "Authorization Password" msgstr "Mot de passe actuel" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, fuzzy, python-brace-format +#| msgid "Enter your current password to authorize account modifications." +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "" "Veuillez saisir votre mot de passe actuel pour confirmer ces modifications " "de compte." -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 msgid "Invalid password." msgstr "Mot de passe incorrect." -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 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 " @@ -7477,21 +7392,21 @@ msgstr "" "peuvent également se connecter au système avec Secure Shell (SSH) et obtenir " "les privilèges d’administrateur (sudo)." -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, python-brace-format msgid "Creating LDAP user failed: {error}" msgstr "La création de l’utilisateur LDAP a échoué : {error}" -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, python-brace-format msgid "Failed to add new user to {group} group: {error}" msgstr "L’ajout du nouvel utilisateur au groupe {group} a échoué : {error}" -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "Clés SSH autorisées" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " @@ -7502,42 +7417,42 @@ msgstr "" "plusieurs clefs, une sur chaque ligne. Les lignes vides et celles commençant " "par # sont ignorées." -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "Le changement du nom de l’utilisateur LDAP a échoué." -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "Échec du retrait de l’utilisateur du groupe." -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "Échec de l’ajout de l’utilisateur au groupe." -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "Échec du paramétrage des clefs SSH." -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 msgid "Failed to change user status." msgstr "Échec du changement de statut de l’utilisateur." -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "Le changement du mot de passe de l’utilisateur LDAP a échoué." -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, python-brace-format msgid "Failed to add new user to admin group: {error}" msgstr "L’ajout du nouvel utilisateur au groupe admin a échoué : {error}" -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, python-brace-format msgid "Failed to restrict console access: {error}" msgstr "" "La mise en place des restrictions d’accès à la console à échoué : {error}" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "Compte utilisateur créé, vous êtes maintenant connecté" @@ -7801,9 +7716,6 @@ msgid "Use this connection to send all outgoing traffic" msgstr "Utiliser cette connexion pour y envoyer tout le trafic sortant" #: plinth/modules/wireguard/forms.py:107 -#, fuzzy -#| msgid "" -#| "Typically checked for a VPN service though which all traffic is sent." msgid "Typically checked for a VPN service through which all traffic is sent." msgstr "" "À activer en général pour un service de réseau privé virtuel VPN à travers " @@ -7865,15 +7777,15 @@ msgstr "Serveurs auxquels la %(box_name)s va se connecter :" msgid "Endpoint" msgstr "Serveur distant" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 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:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "Ajouter un nouveau serveur" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "Ajouter une connexion à un serveur" @@ -8178,7 +8090,7 @@ msgstr "Générique" #: plinth/package.py:94 #, python-brace-format msgid "Package {package_name} is the latest version ({latest_version})" -msgstr "" +msgstr "Le paquet {package_name} est à la dernière version ({latest_version})" #: plinth/package.py:245 msgid "Error during installation" @@ -8580,6 +8492,79 @@ msgstr "%(percentage)s%% effectué" msgid "Gujarati" msgstr "Gujarati" +#~ msgid "RoundCube availability" +#~ msgstr "Disponibilité de RoundCube" + +#~ msgid "RoundCube configured for FreedomBox email" +#~ msgstr "" +#~ "Roundcube est configuré pour la gestion de courriels de la FreedomBox" + +#~ msgid "Enter a valid domain" +#~ msgstr "Entrez un nom de domaine valide" + +#~ msgid "Enter a valid destination" +#~ msgstr "Entrez une destination valide" + +#~ msgid "domain" +#~ msgstr "domaine" + +#~ msgid "Service Alert" +#~ msgstr "Alertes sur le service" + +#~ msgid "Repair" +#~ msgstr "Réparer" + +#, python-brace-format +#~ msgid "Internal error in {0}" +#~ msgstr "Erreur interne dans le module {0}" + +#~ msgid "Check syslog for more information" +#~ msgstr "Veuillez consulter les journaux système pour plus d’information" + +#~ msgid "" +#~ "MLDonkey is a peer-to-peer file sharing application used to exchange " +#~ "large files. It can participate in multiple peer-to-peer networks " +#~ "including eDonkey, Kademlia, Overnet, BitTorrent and DirectConnect." +#~ msgstr "" +#~ "MLDonkey est une application de partage de fichiers en pair à pair " +#~ "utilisée pour s'échanger de gros fichiers. Elle peut participer à de " +#~ "nombreux réseaux de pair à pair dont eDonkey, Kademlia, Overnet, " +#~ "BitTorrent et DirectConnect." + +#~ msgid "" +#~ "Users belonging to admin and ed2k group can control it through the web " +#~ "interface. Users in the admin group can also control it through any of " +#~ "the separate mobile or desktop front-ends or a telnet interface. See " +#~ "manual." +#~ msgstr "" +#~ "Les utilisateurs membres des groupes admin ou ed2k peuvent l’utiliser au " +#~ "travers de l’interface web. Les utilisateurs du groupe admin peuvent " +#~ "également l’utiliser depuis n’importe quel client sur téléphone ou " +#~ "ordinateur, ou depuis une interface telnet. Consultez le manuel." + +#, python-brace-format +#~ msgid "" +#~ "On {box_name}, downloaded files can be found in /var/lib/mldonkey/ " +#~ "directory." +#~ msgstr "" +#~ "Sur la {box_name}, les fichiers sont téléchargés dans le répertoire /var/" +#~ "lib/mldonkey/." + +#~ msgid "Download files using eDonkey applications" +#~ msgstr "Téléchargement de fichiers avec les applications eDonkey" + +#~ msgid "MLDonkey" +#~ msgstr "MLDonkey" + +#~ msgid "Peer-to-peer File Sharing" +#~ msgstr "Partage de fichiers de pair à pair" + +#~ msgid "KMLDonkey" +#~ msgstr "KMLDonkey" + +#~ msgid "AMLDonkey" +#~ msgstr "AMLDonkey" + #~ msgid "Mozilla Thunderbird" #~ msgstr "Mozilla Thunderbird" diff --git a/plinth/locale/gl/LC_MESSAGES/django.po b/plinth/locale/gl/LC_MESSAGES/django.po index 655d3d50d..1687f1588 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: 2022-01-11 19:11-0500\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" "PO-Revision-Date: 2021-01-18 12:32+0000\n" "Last-Translator: ikmaak \n" "Language-Team: Galician ." msgstr "" -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -4827,10 +4748,21 @@ msgid "" "a>)." msgstr "" -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 msgid "Email Client" msgstr "" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -5157,24 +5089,28 @@ msgstr "" msgid "Updated security configuration" msgstr "" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "" -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." msgstr "" -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 msgid "Bookmarks" msgstr "" +#: plinth/modules/shaarli/manifest.py:12 +msgid "Shaarlier" +msgstr "" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -5381,7 +5317,9 @@ msgid "Software Installation Snapshots" msgstr "" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "" #: plinth/modules/snapshot/forms.py:32 @@ -5601,6 +5539,10 @@ msgstr "" msgid "Login" msgstr "" +#: plinth/modules/sso/views.py:101 +msgid "Logged out successfully." +msgstr "" + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -6340,15 +6282,17 @@ msgstr "" msgid "Authorization Password" msgstr "" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, python-brace-format +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "" -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 msgid "Invalid password." msgstr "" -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 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 " @@ -6357,62 +6301,62 @@ msgid "" "SSH and have administrative privileges (sudo)." msgstr "" -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, python-brace-format msgid "Creating LDAP user failed: {error}" msgstr "" -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, python-brace-format msgid "Failed to add new user to {group} group: {error}" msgstr "" -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " "line. Blank lines and lines starting with # will be ignored." msgstr "" -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "" -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "" -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "" -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "" -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 msgid "Failed to change user status." msgstr "" -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "" -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, python-brace-format msgid "Failed to add new user to admin group: {error}" msgstr "" -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, python-brace-format msgid "Failed to restrict console access: {error}" msgstr "" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "" @@ -6698,15 +6642,15 @@ msgstr "" msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "" @@ -7323,6 +7267,11 @@ msgstr "" msgid "Gujarati" msgstr "" +#, fuzzy +#~| msgid "Service Discovery" +#~ msgid "Service Alert" +#~ msgstr "Descubrimento de servizo" + #, fuzzy #~| msgid "Manual" #~ msgid "Updates" diff --git a/plinth/locale/gu/LC_MESSAGES/django.po b/plinth/locale/gu/LC_MESSAGES/django.po index 081dd0293..3d4317fc7 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: 2022-01-11 19:11-0500\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" "PO-Revision-Date: 2021-01-18 12:32+0000\n" "Last-Translator: ikmaak \n" "Language-Team: Gujarati ." msgstr "" -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -5086,10 +5001,21 @@ msgid "" "a>)." msgstr "" -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 msgid "Email Client" msgstr "" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -5418,24 +5344,28 @@ msgstr "" msgid "Updated security configuration" msgstr "" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "" -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." msgstr "" -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 msgid "Bookmarks" msgstr "" +#: plinth/modules/shaarli/manifest.py:12 +msgid "Shaarlier" +msgstr "" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -5642,7 +5572,9 @@ msgid "Software Installation Snapshots" msgstr "" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "" #: plinth/modules/snapshot/forms.py:32 @@ -5867,6 +5799,10 @@ msgstr "" msgid "Login" msgstr "" +#: plinth/modules/sso/views.py:101 +msgid "Logged out successfully." +msgstr "" + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -6626,17 +6562,19 @@ msgstr "" msgid "Authorization Password" msgstr "" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, python-brace-format +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "" -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 #, fuzzy #| msgid "Show password" msgid "Invalid password." msgstr "પાસવર્ડ બતાવો" -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 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 " @@ -6645,62 +6583,62 @@ msgid "" "SSH and have administrative privileges (sudo)." msgstr "" -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, python-brace-format msgid "Creating LDAP user failed: {error}" msgstr "" -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, python-brace-format msgid "Failed to add new user to {group} group: {error}" msgstr "" -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " "line. Blank lines and lines starting with # will be ignored." msgstr "" -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "" -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "" -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "" -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "" -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 msgid "Failed to change user status." msgstr "" -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "" -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, python-brace-format msgid "Failed to add new user to admin group: {error}" msgstr "" -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, python-brace-format msgid "Failed to restrict console access: {error}" msgstr "" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "" @@ -6990,15 +6928,15 @@ msgstr "" msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "" @@ -7650,6 +7588,26 @@ msgstr "" msgid "Gujarati" msgstr "" +#, fuzzy +#~| msgid "Invalid server name" +#~ msgid "Enter a valid domain" +#~ msgstr "અમાન્ય સર્વર નામ" + +#, fuzzy +#~| msgid "Invalid server name" +#~ msgid "Enter a valid destination" +#~ msgstr "અમાન્ય સર્વર નામ" + +#, fuzzy +#~| msgid "Service Type" +#~ msgid "Service Alert" +#~ msgstr "સેવા પ્રકાર" + +#, fuzzy +#~| msgid "Download files using BitTorrent applications" +#~ msgid "Download files using eDonkey applications" +#~ msgstr "BitTorrent કાર્યક્રમોનો ઉપયોગ કરીને ફાઇલો ડાઉનલોડ કરો" + #, fuzzy #~| msgid "Update URL" #~ msgid "Updates" diff --git a/plinth/locale/hi/LC_MESSAGES/django.po b/plinth/locale/hi/LC_MESSAGES/django.po index 9429dd14c..1fef45a43 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: 2022-01-11 19:11-0500\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" "PO-Revision-Date: 2021-01-18 12:32+0000\n" "Last-Translator: ikmaak \n" "Language-Team: Hindi /roundcube. " @@ -5531,7 +5434,7 @@ msgstr "" "SSL पर IMAP के लिए (अनुशंसित), imaps://imap.example.com जैसे सर्वर " "फ़ील्ड भरें." -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -5546,10 +5449,21 @@ msgstr "" "security/lesssecureapps\">https://www.google.com/settings/security/" "lesssecureapps)." -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 msgid "Email Client" msgstr "ईमेल क्लाइंट" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -5924,11 +5838,11 @@ msgstr "त्रुटि सेटिंग एक्सेस प्रति msgid "Updated security configuration" msgstr "सुरक्षा कॉंफ़िगरेशन अपडेट किया गया" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "शारली आप को बुकमार्क्स बचाने और साझा करने के लिए अनुमति देता है." -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 #, fuzzy #| msgid "" #| "When enabled, Shaarli will be available from /" @@ -5942,14 +5856,20 @@ msgstr "" "होगा. नोट करिये शारली सिर्फ एकल यूसर अकाउंट का समर्थन करता है जो आपको प्रारंभिक " "यात्रा पर सेटअप करने की जरुरत होगा." -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "शारली" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 msgid "Bookmarks" msgstr "बुकमार्क्स" +#: plinth/modules/shaarli/manifest.py:12 +#, fuzzy +#| msgid "Shaarli" +msgid "Shaarlier" +msgstr "शारली" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -6186,7 +6106,11 @@ msgid "Software Installation Snapshots" msgstr "सॉफ़्टवेयर इंस्टालेशन स्नैपशॉटस" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +#, fuzzy +#| msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "सॉफ़्टवेयर इंस्टालेशन से पहले और के बाद स्नैपशॉटस सक्षम या अक्षम करें" #: plinth/modules/snapshot/forms.py:32 @@ -6422,6 +6346,12 @@ msgstr "एकल साइन-ऑन" msgid "Login" msgstr "लॉगिन" +#: plinth/modules/sso/views.py:101 +#, fuzzy +#| msgid "Password changed successfully." +msgid "Logged out successfully." +msgstr "पासवर्ड सफलतापूर्वक बदल गया." + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -7295,17 +7225,19 @@ msgstr "" msgid "Authorization Password" msgstr "व्यवस्थापक पासवर्ड" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, python-brace-format +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "" -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 #, fuzzy #| msgid "Show password" msgid "Invalid password." msgstr "शो पासवर्ड" -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 #, fuzzy #| msgid "" #| "Select which services should be available to the new user. The user will " @@ -7325,23 +7257,23 @@ msgstr "" "

एडमिन ग्रुप के यूसरस सब सर्विसस पर लॉग इन कर सकेगें. SSH के माध्यम से भी " "सिस्टम पर लॉग इन कर सकते है अाैर उनको प्रशासनिक विशेषाधिकार (sudo) है." -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, fuzzy, python-brace-format #| msgid "Creating LDAP user failed." msgid "Creating LDAP user failed: {error}" msgstr "एलडीएपी यूसर बनाना विफल रहा." -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, fuzzy, python-brace-format #| msgid "Failed to add new user to {group} group." msgid "Failed to add new user to {group} group: {error}" msgstr "{group} समूह में नया यूसर जोड़ने में विफल." -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " @@ -7351,45 +7283,45 @@ msgstr "" "बिना सिस्टम में प्रवेश करने की अनुमति देगा. आप एकाधिक कीज़ दर्ज कर सकते हैं, हर लाइन रक " "एक. खाली लाइनस या # से प्रारंभ होने वाले लाइनस अनदेखा कर दिया जाएगा." -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "एलडीएपी यूसर का नाम बदलना विफल रहा." -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "समूह से यूसर को हटाने में विफल." -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "समूह से यूसर को जोड़ने में विफल." -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "एसएसएच कीज़ सेट करने में असमर्थ." -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 #, fuzzy #| msgid "Failed to add user to group." msgid "Failed to change user status." msgstr "समूह से यूसर को जोड़ने में विफल." -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "एलडीएपी यूसर का पासवर्ड बदलना विफल रहा." -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, fuzzy, python-brace-format #| msgid "Failed to add new user to admin group." msgid "Failed to add new user to admin group: {error}" msgstr "व्यवस्थापक समूह में नया यूसर जोड़ने में विफल." -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, fuzzy, python-brace-format #| msgid "Failed to restrict console access." msgid "Failed to restrict console access: {error}" msgstr "कंसोल एक्सेस प्रतिबंधित करने में विफल." -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "युसर अकाउंट बनाया, अब आप लॉगड इन हैं" @@ -7700,17 +7632,17 @@ msgstr "" msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 #, fuzzy #| msgid "Add new introducer" msgid "Add a new server" msgstr "नया इंट्रोड्यूसर जोड़ें" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 #, fuzzy #| msgid "Add Connection" @@ -8415,6 +8347,56 @@ msgstr "%(percentage)s%% पूर्ण" msgid "Gujarati" msgstr "" +#, fuzzy +#~| msgid "Available Domains" +#~ msgid "RoundCube availability" +#~ msgstr "उपलब्ध वाले डोमेन्स" + +#, fuzzy +#~| msgid "Invalid server name" +#~ msgid "Enter a valid domain" +#~ msgstr "सर्वर नाम अमान्य है" + +#, fuzzy +#~| msgid "Invalid server name" +#~ msgid "Enter a valid destination" +#~ msgstr "सर्वर नाम अमान्य है" + +#, fuzzy +#~| msgid "Domain" +#~ msgid "domain" +#~ msgstr "डोमेन" + +#, fuzzy +#~| msgid "Service Type" +#~ msgid "Service Alert" +#~ msgstr "सेवा टाइप" + +#, fuzzy +#~| msgid "Download files using BitTorrent applications" +#~ msgid "Download files using eDonkey applications" +#~ msgstr "बिटटोरेंट एप्लिकेशन उपयोग कर फ़ाइल डाउनलोड करें" + +#, fuzzy +#~| msgid "Monkeysphere" +#~ msgid "MLDonkey" +#~ msgstr "मंकीसफीर" + +#, fuzzy +#~| msgid "File Sharing" +#~ msgid "Peer-to-peer File Sharing" +#~ msgstr "फ़ाइल शेयरइंग" + +#, fuzzy +#~| msgid "Monkeysphere" +#~ msgid "KMLDonkey" +#~ msgstr "मंकीसफीर" + +#, fuzzy +#~| msgid "Monkeysphere" +#~ msgid "AMLDonkey" +#~ msgstr "मंकीसफीर" + #~ msgid "Mozilla Thunderbird" #~ msgstr "मोज़िला थंडरबर्ड" diff --git a/plinth/locale/hu/LC_MESSAGES/django.po b/plinth/locale/hu/LC_MESSAGES/django.po index 860cde1e9..2c3a19b98 100644 --- a/plinth/locale/hu/LC_MESSAGES/django.po +++ b/plinth/locale/hu/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-11 19:11-0500\n" -"PO-Revision-Date: 2022-01-16 22:55+0000\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" +"PO-Revision-Date: 2022-01-29 13:55+0000\n" "Last-Translator: Benedek Nagy \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.10.1\n" +"X-Generator: Weblate 4.11-dev\n" #: doc/dev/_templates/layout.html:11 msgid "Page source" @@ -557,7 +557,7 @@ msgstr "Letöltés" #: plinth/modules/backups/templates/backups_restore.html:27 #: plinth/modules/backups/views.py:206 msgid "Restore" -msgstr "Visszaállít" +msgstr "Visszaállítás" #: plinth/modules/backups/templates/backups_repository.html:109 msgid "No archives currently exist." @@ -838,7 +838,7 @@ msgstr "" #: plinth/modules/bepasty/forms.py:27 #: plinth/modules/bepasty/templates/bepasty.html:30 -#: plinth/modules/users/forms.py:102 plinth/modules/users/forms.py:228 +#: plinth/modules/users/forms.py:108 plinth/modules/users/forms.py:234 msgid "Permissions" msgstr "Engedélyek" @@ -923,7 +923,7 @@ msgstr "Adminisztrál" msgid "Configuration updated." msgstr "Beállítások frissítve." -#: plinth/modules/bepasty/views.py:93 plinth/modules/email_server/views.py:107 +#: plinth/modules/bepasty/views.py:93 plinth/modules/email_server/views.py:41 #: plinth/modules/gitweb/views.py:117 plinth/modules/searx/views.py:41 #: plinth/modules/searx/views.py:52 plinth/modules/tor/views.py:159 #: plinth/modules/zoph/views.py:72 @@ -1021,10 +1021,10 @@ msgstr "IP-címek és tartományok frissítése" #: plinth/modules/bind/views.py:71 plinth/modules/coturn/views.py:39 #: plinth/modules/deluge/views.py:42 plinth/modules/dynamicdns/views.py:169 -#: plinth/modules/ejabberd/views.py:85 plinth/modules/email_server/views.py:104 +#: plinth/modules/ejabberd/views.py:85 plinth/modules/email_server/views.py:38 #: plinth/modules/matrixsynapse/views.py:124 plinth/modules/mumble/views.py:28 #: plinth/modules/pagekite/forms.py:78 plinth/modules/quassel/views.py:28 -#: plinth/modules/shadowsocks/views.py:59 +#: plinth/modules/roundcube/views.py:32 plinth/modules/shadowsocks/views.py:59 #: plinth/modules/transmission/views.py:47 plinth/modules/ttrss/views.py:26 #: plinth/modules/wordpress/views.py:37 msgid "Configuration updated" @@ -1492,18 +1492,15 @@ msgid "Diagnostics" msgstr "Hibaellenőrzés" #: plinth/modules/diagnostics/__init__.py:97 -#: plinth/modules/email_server/templates/email_server.html:37 msgid "passed" msgstr "sikerült" #: plinth/modules/diagnostics/__init__.py:98 -#: plinth/modules/email_server/templates/email_server.html:35 #: plinth/modules/networks/views.py:49 msgid "failed" msgstr "sikertelen" #: plinth/modules/diagnostics/__init__.py:99 -#: plinth/modules/email_server/templates/email_server.html:33 msgid "error" msgstr "hiba" @@ -2045,43 +2042,23 @@ msgstr "E-mail-szerver" msgid "Powered by Postfix, Dovecot & Rspamd" msgstr "Postfix, Dovecot & Rspamd által működtetve" -#: plinth/modules/email_server/audit/ldap.py:69 +#: plinth/modules/email_server/audit/ldap.py:68 msgid "Postfix-Dovecot SASL integration" msgstr "Postfix-Dovecot SASL integráció" -#: plinth/modules/email_server/audit/ldap.py:70 +#: plinth/modules/email_server/audit/ldap.py:69 msgid "Postfix alias maps" msgstr "Postfix álnév leképezések" -#: plinth/modules/email_server/audit/rcube.py:31 -msgid "RoundCube availability" -msgstr "A RoundCube rendelkezésre állása" - -#: plinth/modules/email_server/audit/rcube.py:32 -msgid "RoundCube configured for FreedomBox email" -msgstr "A RoundCube be van állítva a FreedomBox e-mailhez" - #: plinth/modules/email_server/audit/spam.py:87 msgid "Inbound and outbound mail filters" msgstr "Bejövő és kimenő levélszűrők" -#: plinth/modules/email_server/forms.py:17 -msgid "Enter a valid domain" -msgstr "Adj meg egy érvényes domaint" - -#: plinth/modules/email_server/forms.py:20 -msgid "Enter a valid destination" -msgstr "Adj meg egy érvényes célállományt" - #: plinth/modules/email_server/forms.py:24 -msgid "domain" -msgstr "domain" - -#: plinth/modules/email_server/forms.py:38 msgid "Primary domain" msgstr "Elsődleges domain" -#: plinth/modules/email_server/forms.py:40 +#: plinth/modules/email_server/forms.py:26 msgid "" "Mails are received for all domains configured in the system. Among these, " "select the most important one." @@ -2089,34 +2066,34 @@ msgstr "" "A rendszerben konfigurált összes domain számára érkeznek levelek. Ezek közül " "válaszd ki a legfontosabbat." -#: plinth/modules/email_server/forms.py:48 +#: plinth/modules/email_server/forms.py:34 msgid "New alias (without @domain)" msgstr "Új álnév (@domain nélkül)" -#: plinth/modules/email_server/forms.py:55 +#: plinth/modules/email_server/forms.py:41 msgid "Contains illegal characters" msgstr "Nem megengedett karaktereket tartalmaz" -#: plinth/modules/email_server/forms.py:58 +#: plinth/modules/email_server/forms.py:44 msgid "Must start and end with a-z or 0-9" msgstr "A-z vagy 0-9 karakterekkel kell kezdődnie és végződnie" -#: plinth/modules/email_server/forms.py:61 +#: plinth/modules/email_server/forms.py:47 msgid "Cannot be a number" msgstr "Nem lehet szám" -#: plinth/modules/email_server/forms.py:71 +#: plinth/modules/email_server/forms.py:57 msgid "Aliases" msgstr "Álnevek" -#: plinth/modules/email_server/forms.py:83 +#: plinth/modules/email_server/forms.py:69 #: 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 +#: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:29 msgid "Enabled" msgstr "Engedélyezve" -#: plinth/modules/email_server/forms.py:86 +#: plinth/modules/email_server/forms.py:72 #: plinth/modules/firewall/templates/firewall.html:57 #: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:29 @@ -2125,7 +2102,7 @@ msgid "Disabled" msgstr "Letiltva" #: plinth/modules/email_server/manifest.py:8 -#: plinth/modules/roundcube/__init__.py:52 +#: plinth/modules/roundcube/__init__.py:54 #: plinth/modules/roundcube/manifest.py:6 msgid "Roundcube" msgstr "Roundcube" @@ -2144,7 +2121,7 @@ msgid "FairEmail" msgstr "FairEmail" #: plinth/modules/email_server/templates/email_alias.html:13 -#: plinth/modules/email_server/templates/email_server.html:20 +#: plinth/modules/email_server/templates/email_server.html:15 msgid "Manage Aliases" msgstr "Álnevek kezelése" @@ -2168,27 +2145,10 @@ msgstr "Új e-mail álnév létrehozása" msgid "Add" msgstr "Hozzáadás" -#: plinth/modules/email_server/templates/email_server.html:15 +#: plinth/modules/email_server/templates/email_server.html:10 msgid "Manage Spam" msgstr "Spam kezelése" -#: plinth/modules/email_server/templates/email_server.html:26 -msgid "Service Alert" -msgstr "Szolgáltatási riasztás" - -#: plinth/modules/email_server/templates/email_server.html:46 -msgid "Repair" -msgstr "Javítás" - -#: plinth/modules/email_server/views.py:73 -#, python-brace-format -msgid "Internal error in {0}" -msgstr "Belső hiba {0}" - -#: plinth/modules/email_server/views.py:76 -msgid "Check syslog for more information" -msgstr "További információért vizsgáld meg a rendszernaplót" - #: plinth/modules/firewall/__init__.py:26 #, python-brace-format msgid "" @@ -3250,10 +3210,14 @@ msgstr "" "TURN-szervernek a Matrix Synapse számára. Ha más STUN/TURN-szervert " "szeretnél használni, tiltsd le ezt a beállítást." -#: plinth/modules/matrixsynapse/manifest.py:12 +#: plinth/modules/matrixsynapse/manifest.py:14 msgid "Element" msgstr "Element" +#: plinth/modules/matrixsynapse/manifest.py:48 +msgid "FluffyChat" +msgstr "" + #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 #: plinth/modules/snapshot/templates/snapshot.html:12 #: plinth/templates/app.html:46 @@ -3616,57 +3580,6 @@ msgstr "A megadott könyvtár nem létezik." msgid "Updated media directory" msgstr "Médiakönyvtár frissítve" -#: plinth/modules/mldonkey/__init__.py:23 -msgid "" -"MLDonkey is a peer-to-peer file sharing application used to exchange large " -"files. It can participate in multiple peer-to-peer networks including " -"eDonkey, Kademlia, Overnet, BitTorrent and DirectConnect." -msgstr "" -"Az MLDonkey egy peer-to-peer fájlmegosztó alkalmazás, amelyet nagyméretű " -"fájlok cseréjére használnak. Több peer-to-peer hálózatban is képes részt " -"venni, beleértve az eDonkey, Kademlia, Overnet, BitTorrent és DirectConnect " -"hálózatokat." - -#: plinth/modules/mldonkey/__init__.py:26 -msgid "" -"Users belonging to admin and ed2k group can control it through the web " -"interface. Users in the admin group can also control it through any of the " -"separate mobile or desktop front-ends or a telnet interface. See manual." -msgstr "" -"Az admin és az ed2k csoporthoz tartozó felhasználók a webes felületen " -"keresztül vezérelhetik. Az admin csoporthoz tartozó felhasználók a különálló " -"mobil vagy asztali frontendek bármelyikén vagy egy telnet-felületen " -"keresztül is vezérelhetik. Lásd a kézikönyvet." - -#: plinth/modules/mldonkey/__init__.py:31 -#, python-brace-format -msgid "" -"On {box_name}, downloaded files can be found in /var/lib/mldonkey/ directory." -msgstr "" -"{box_name} eszközön a letöltött fájlok a /var/lib/mldonkey/ könyvtárban " -"találhatók." - -#: plinth/modules/mldonkey/__init__.py:53 -msgid "Download files using eDonkey applications" -msgstr "Fájlok letöltése eDonkey alkalmazások használatával" - -#: plinth/modules/mldonkey/__init__.py:56 -#: plinth/modules/mldonkey/manifest.py:11 -msgid "MLDonkey" -msgstr "MLDonkey" - -#: plinth/modules/mldonkey/__init__.py:58 -msgid "Peer-to-peer File Sharing" -msgstr "P2P-fájlmegosztás" - -#: plinth/modules/mldonkey/manifest.py:18 -msgid "KMLDonkey" -msgstr "KMLDonkey" - -#: plinth/modules/mldonkey/manifest.py:30 -msgid "AMLDonkey" -msgstr "AMLDonkey" - #: plinth/modules/mumble/__init__.py:26 msgid "" "Mumble is an open source, low-latency, encrypted, high quality voice chat " @@ -5280,11 +5193,11 @@ msgstr "" msgid "System Monitoring" msgstr "Rendszerfigyelés" -#: plinth/modules/power/__init__.py:13 +#: plinth/modules/power/__init__.py:14 msgid "Restart or shut down the system." msgstr "Újraindítás vagy leállítás." -#: plinth/modules/power/__init__.py:30 +#: plinth/modules/power/__init__.py:31 msgid "Power" msgstr "Leállítás" @@ -5536,7 +5449,7 @@ msgstr "" msgid "Access rights configuration updated" msgstr "Hozzáférési jogok beállításai frissítve" -#: plinth/modules/roundcube/__init__.py:19 +#: plinth/modules/roundcube/__init__.py:21 msgid "" "Roundcube webmail is a browser-based multilingual IMAP client with an " "application-like user interface. It provides full functionality you expect " @@ -5548,7 +5461,7 @@ msgstr "" "teljes funkcionalitást biztosítja, beleértve a MIME-támogatást, " "címjegyzéket, mappakezelést, üzenetkeresést és helyesírás-ellenőrzést." -#: plinth/modules/roundcube/__init__.py:24 +#: plinth/modules/roundcube/__init__.py:26 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 " @@ -5562,7 +5475,7 @@ msgstr "" "SSL-en kersztüli IMAP-hez (ez az ajánlott), töltsd ki a kiszolgáló mezőt " "ezen minta alapján: imaps://imap.pelda.com." -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -5579,10 +5492,21 @@ msgstr "" "lesssecureapps\">https://www.google.com/settings/security/lesssecureapps)." -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 msgid "Email Client" msgstr "E-mail kliens" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -5961,11 +5885,11 @@ msgstr "Hiba a korlátozott hozzáférés beállítása során: {exception}" msgid "Updated security configuration" msgstr "Biztonsági beállítás frissítve" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 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:18 +#: plinth/modules/shaarli/__init__.py:19 msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." @@ -5973,14 +5897,20 @@ msgstr "" "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:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "Shaarli" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 msgid "Bookmarks" msgstr "Könyvjelzők" +#: plinth/modules/shaarli/manifest.py:12 +#, fuzzy +#| msgid "Shaarli" +msgid "Shaarlier" +msgstr "Shaarli" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -6226,7 +6156,11 @@ msgid "Software Installation Snapshots" msgstr "Szoftvertelepítési pillanatképek" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +#, fuzzy +#| msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "" "Pillanatképek készítésének engedélyezése vagy letiltása szoftver telepítése " "előtt és után" @@ -6465,6 +6399,12 @@ msgstr "Egyszeri bejelentkezés" msgid "Login" msgstr "Bejelentkezés" +#: plinth/modules/sso/views.py:101 +#, fuzzy +#| msgid "Password changed successfully." +msgid "Logged out successfully." +msgstr "A jelszó módosítása sikeres." + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -7161,8 +7101,8 @@ msgid "" "%(box_name)s has been updated to version %(version)s. See the
release announcement." msgstr "" -"A %(box_name)s eszközöd a(z) %(version)s verzióra frissült. Lásd a kiadási közleményt." +"A %(box_name)s eszközöd a(z) %(version)s verzióra frissült. Lásd a kiadási közleményt." #: plinth/modules/upgrades/templates/upgrades-new-release.html:22 #: plinth/templates/notifications.html:44 @@ -7318,15 +7258,18 @@ msgstr "" msgid "Authorization Password" msgstr "Hitelesítési jelszó" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, fuzzy, python-brace-format +#| msgid "Enter your current password to authorize account modifications." +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "A fiókmódosítások engedélyezéséhez add meg az aktuális jelszavadat." -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 msgid "Invalid password." msgstr "Érvénytelen jelszó." -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 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 " @@ -7342,22 +7285,22 @@ msgstr "" "képesek bejelentkezni a rendszerbe, ahol adminisztrátori jogosultságokkal " "rendelkeznek (sudo)." -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, python-brace-format msgid "Creating LDAP user failed: {error}" msgstr "LDAP-felhasználó létrehozása sikertelen: {error}" -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, python-brace-format msgid "Failed to add new user to {group} group: {error}" msgstr "" "Az új felhasználó hozzáadása a(z) {group} csoporthoz nem sikerült: {error}" -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "Engedélyezett SSH-kulcsok" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " @@ -7367,43 +7310,43 @@ msgstr "" "jelszó nélkül jelentkezzen be. Több kulcs is megadható; soronként egy. Az " "üres, illetve # jellel kezdődő sorok nem számítanak." -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "LDAP-felhasználó átnevezése sikertelen." -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "Nem sikerült eltávolítani a felhasználót a csoportból." -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "Nem sikerült hozzáadni a felhasználót a csoporthoz." -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "SSH-kulcsok beállítása sikertelen." -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 msgid "Failed to change user status." msgstr "Nem sikerült a felhasználói állapot megváltoztatása." -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "LDAP-felhasználó jelszavának megváltoztatása sikertelen." -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, 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 rendszergazdai csoporthoz: " "{error}" -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, python-brace-format msgid "Failed to restrict console access: {error}" msgstr "Nem sikerült a konzolos hozzáférés korlátozása: {error}" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "Felhasználói fiók létrehozva, bejelentkezés sikeres" @@ -7721,15 +7664,15 @@ msgstr "Szerverek, amelyekhez a %(box_name)s csatlakozni fog:" msgid "Endpoint" msgstr "Végpont" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 msgid "No connections to remote servers are configured yet." msgstr "A távoli szerverekhez még nincsenek konfigurálva kapcsolatok." -#: plinth/modules/wireguard/templates/wireguard.html:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "Új szerver hozzáadása" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "Kapcsolat hozzáadása a szerverhez" @@ -8426,6 +8369,78 @@ msgstr "befejezettségi szint: %(percentage)s%%" msgid "Gujarati" msgstr "Gudzsaráti" +#~ msgid "RoundCube availability" +#~ msgstr "A RoundCube rendelkezésre állása" + +#~ msgid "RoundCube configured for FreedomBox email" +#~ msgstr "A RoundCube be van állítva a FreedomBox e-mailhez" + +#~ msgid "Enter a valid domain" +#~ msgstr "Adj meg egy érvényes domaint" + +#~ msgid "Enter a valid destination" +#~ msgstr "Adj meg egy érvényes célállományt" + +#~ msgid "domain" +#~ msgstr "domain" + +#~ msgid "Service Alert" +#~ msgstr "Szolgáltatási riasztás" + +#~ msgid "Repair" +#~ msgstr "Javítás" + +#, python-brace-format +#~ msgid "Internal error in {0}" +#~ msgstr "Belső hiba {0}" + +#~ msgid "Check syslog for more information" +#~ msgstr "További információért vizsgáld meg a rendszernaplót" + +#~ msgid "" +#~ "MLDonkey is a peer-to-peer file sharing application used to exchange " +#~ "large files. It can participate in multiple peer-to-peer networks " +#~ "including eDonkey, Kademlia, Overnet, BitTorrent and DirectConnect." +#~ msgstr "" +#~ "Az MLDonkey egy peer-to-peer fájlmegosztó alkalmazás, amelyet nagyméretű " +#~ "fájlok cseréjére használnak. Több peer-to-peer hálózatban is képes részt " +#~ "venni, beleértve az eDonkey, Kademlia, Overnet, BitTorrent és " +#~ "DirectConnect hálózatokat." + +#~ msgid "" +#~ "Users belonging to admin and ed2k group can control it through the web " +#~ "interface. Users in the admin group can also control it through any of " +#~ "the separate mobile or desktop front-ends or a telnet interface. See " +#~ "manual." +#~ msgstr "" +#~ "Az admin és az ed2k csoporthoz tartozó felhasználók a webes felületen " +#~ "keresztül vezérelhetik. Az admin csoporthoz tartozó felhasználók a " +#~ "különálló mobil vagy asztali frontendek bármelyikén vagy egy telnet-" +#~ "felületen keresztül is vezérelhetik. Lásd a kézikönyvet." + +#, python-brace-format +#~ msgid "" +#~ "On {box_name}, downloaded files can be found in /var/lib/mldonkey/ " +#~ "directory." +#~ msgstr "" +#~ "{box_name} eszközön a letöltött fájlok a /var/lib/mldonkey/ könyvtárban " +#~ "találhatók." + +#~ msgid "Download files using eDonkey applications" +#~ msgstr "Fájlok letöltése eDonkey alkalmazások használatával" + +#~ msgid "MLDonkey" +#~ msgstr "MLDonkey" + +#~ msgid "Peer-to-peer File Sharing" +#~ msgstr "P2P-fájlmegosztás" + +#~ msgid "KMLDonkey" +#~ msgstr "KMLDonkey" + +#~ msgid "AMLDonkey" +#~ msgstr "AMLDonkey" + #~ msgid "Mozilla Thunderbird" #~ msgstr "Thunderbird" diff --git a/plinth/locale/id/LC_MESSAGES/django.po b/plinth/locale/id/LC_MESSAGES/django.po index fa2c5d603..ebe6b4851 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: 2022-01-11 19:11-0500\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" "PO-Revision-Date: 2021-06-24 00:42+0000\n" "Last-Translator: Reza Almanda \n" "Language-Team: Indonesian ." msgstr "" -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -5228,10 +5141,21 @@ msgid "" "a>)." msgstr "" -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 msgid "Email Client" msgstr "Klien Email" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -5566,11 +5490,11 @@ msgstr "" msgid "Updated security configuration" msgstr "Konfigurasi keamanan diperbarui" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "Shaarli memungkinkan Anda untuk menyimpan dan berbagi bookmark." -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." @@ -5578,14 +5502,20 @@ msgstr "" "Catatan Shaarli hanya mendukung satu akun pengguna, yang perlu Anda siapkan " "pada kunjungan awal." -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "Shaarli" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 msgid "Bookmarks" msgstr "Bookmark" +#: plinth/modules/shaarli/manifest.py:12 +#, fuzzy +#| msgid "Shaarli" +msgid "Shaarlier" +msgstr "Shaarli" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -5796,7 +5726,11 @@ msgid "Software Installation Snapshots" msgstr "Snapshot Instalasi Perangkat Lunak" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +#, fuzzy +#| msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "" "Mengaktifkan atau menonaktifkan snapshot sebelum dan sesudah penginstalan " "perangkat lunak" @@ -6022,6 +5956,10 @@ msgstr "" msgid "Login" msgstr "Masuk" +#: plinth/modules/sso/views.py:101 +msgid "Logged out successfully." +msgstr "" + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -6778,15 +6716,17 @@ msgstr "" msgid "Authorization Password" msgstr "Akun Administrator" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, python-brace-format +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "" -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 msgid "Invalid password." msgstr "Kata sandi tidak valid." -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 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 " @@ -6795,64 +6735,64 @@ msgid "" "SSH and have administrative privileges (sudo)." msgstr "" -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, python-brace-format msgid "Creating LDAP user failed: {error}" msgstr "Gagal membuat pengguna LDAP. {error}" -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, python-brace-format msgid "Failed to add new user to {group} group: {error}" msgstr "Gagal menambahkan pengguna baru ke kelompok {group}: {error}" -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " "line. Blank lines and lines starting with # will be ignored." msgstr "" -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "" -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "" -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "" -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "" -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 #, fuzzy #| msgid "Failed to add new user to admin group." msgid "Failed to change user status." msgstr "Gagal menambahkan pengguna baru ke kelompok admin." -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "" -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, python-brace-format msgid "Failed to add new user to admin group: {error}" msgstr "Gagal menambahkan pengguna baru ke kelompok admin. {error}" -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, python-brace-format msgid "Failed to restrict console access: {error}" msgstr "" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "" @@ -7142,15 +7082,15 @@ msgstr "" msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 #, fuzzy #| msgid "Add Connection" @@ -7796,6 +7736,40 @@ msgstr "%(percentage)s %% selesai" msgid "Gujarati" msgstr "Bahasa Gujarat" +#, fuzzy +#~| msgid "unavailable" +#~ msgid "RoundCube availability" +#~ msgstr "tidak tersedia" + +#, fuzzy +#~| msgid "Enter a valid username." +#~ msgid "Enter a valid domain" +#~ msgstr "Masukkan sebuah nama pengguna yang valid." + +#, fuzzy +#~| msgid "Enter a valid username." +#~ msgid "Enter a valid destination" +#~ msgstr "Masukkan sebuah nama pengguna yang valid." + +#, fuzzy +#~| msgid "Domain" +#~ msgid "domain" +#~ msgstr "Domain" + +#, fuzzy +#~| msgid "Service Type" +#~ msgid "Service Alert" +#~ msgstr "Tipe Layanan" + +#~ msgid "MLDonkey" +#~ msgstr "MLDonkey" + +#~ msgid "KMLDonkey" +#~ msgstr "KMLDonkey" + +#~ msgid "AMLDonkey" +#~ msgstr "AMLDonkey" + #~ msgid "Mozilla Thunderbird" #~ msgstr "Mozilla Thunderbird" diff --git a/plinth/locale/it/LC_MESSAGES/django.po b/plinth/locale/it/LC_MESSAGES/django.po index 22225a74a..b7b59e3f0 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: 2022-01-11 19:11-0500\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" "PO-Revision-Date: 2022-01-06 22:41+0000\n" "Last-Translator: Dietmar \n" "Language-Team: Italian ." msgstr "" -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -5362,10 +5283,21 @@ msgid "" "a>)." msgstr "" -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 msgid "Email Client" msgstr "" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -5688,24 +5620,30 @@ msgstr "" msgid "Updated security configuration" msgstr "" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "" -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." msgstr "" -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "Shaarli" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 msgid "Bookmarks" msgstr "" +#: plinth/modules/shaarli/manifest.py:12 +#, fuzzy +#| msgid "Shaarli" +msgid "Shaarlier" +msgstr "Shaarli" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -5912,7 +5850,9 @@ msgid "Software Installation Snapshots" msgstr "" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "" #: plinth/modules/snapshot/forms.py:32 @@ -6131,6 +6071,10 @@ msgstr "" msgid "Login" msgstr "" +#: plinth/modules/sso/views.py:101 +msgid "Logged out successfully." +msgstr "" + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -6870,15 +6814,17 @@ msgstr "" msgid "Authorization Password" msgstr "Password di autorizzazione" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, python-brace-format +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "" -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 msgid "Invalid password." msgstr "Password non valida." -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 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 " @@ -6887,62 +6833,62 @@ msgid "" "SSH and have administrative privileges (sudo)." msgstr "" -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, python-brace-format msgid "Creating LDAP user failed: {error}" msgstr "" -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, python-brace-format msgid "Failed to add new user to {group} group: {error}" msgstr "Fallito l'inserimento di un nuovo utente nel gruppo {group}: {error}" -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " "line. Blank lines and lines starting with # will be ignored." msgstr "" -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "" -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "" -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "" -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "" -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 msgid "Failed to change user status." msgstr "" -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "" -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, python-brace-format msgid "Failed to add new user to admin group: {error}" msgstr "Aggiunta del nuovo utente al gruppo admin fallita: {error}" -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, python-brace-format msgid "Failed to restrict console access: {error}" msgstr "Fallito la limitazione dell'accesso alla console: {error}" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "" @@ -7226,15 +7172,15 @@ msgstr "" msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "Aggiungi Connessione a Server" @@ -7858,6 +7804,35 @@ msgstr "%(percentage)s%% completata" msgid "Gujarati" msgstr "Gujarati" +#~ msgid "Enter a valid domain" +#~ msgstr "Inserisci un dominio valido" + +#~ msgid "Enter a valid destination" +#~ msgstr "Inserisci una destinazione valida" + +#, fuzzy +#~ msgid "domain" +#~ msgstr "Dominio" + +#~ msgid "Service Alert" +#~ msgstr "Avviso di servizio" + +#~ msgid "Download files using eDonkey applications" +#~ msgstr "Scarica file usando applicazioni eDonkey" + +#~ msgid "MLDonkey" +#~ msgstr "MLDonkey" + +#, fuzzy +#~ msgid "Peer-to-peer File Sharing" +#~ msgstr "Condivisione File" + +#~ msgid "KMLDonkey" +#~ msgstr "KMLDonkey" + +#~ msgid "AMLDonkey" +#~ msgstr "AMLDonkey" + #~ msgid "Mozilla Thunderbird" #~ msgstr "Mozilla Thunderbird" diff --git a/plinth/locale/ja/LC_MESSAGES/django.po b/plinth/locale/ja/LC_MESSAGES/django.po index dc1991b0c..34ea9c7d8 100644 --- a/plinth/locale/ja/LC_MESSAGES/django.po +++ b/plinth/locale/ja/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-11 19:11-0500\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" "PO-Revision-Date: 2021-05-20 12:32+0000\n" "Last-Translator: Jacque Fresco \n" "Language-Team: Japanese ." msgstr "" -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -4811,10 +4734,21 @@ msgid "" "a>)." msgstr "" -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 msgid "Email Client" msgstr "" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -5137,24 +5071,28 @@ msgstr "" msgid "Updated security configuration" msgstr "" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "" -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." msgstr "" -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 msgid "Bookmarks" msgstr "" +#: plinth/modules/shaarli/manifest.py:12 +msgid "Shaarlier" +msgstr "" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -5361,7 +5299,9 @@ msgid "Software Installation Snapshots" msgstr "" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "" #: plinth/modules/snapshot/forms.py:32 @@ -5579,6 +5519,10 @@ msgstr "" msgid "Login" msgstr "" +#: plinth/modules/sso/views.py:101 +msgid "Logged out successfully." +msgstr "" + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -6312,15 +6256,17 @@ msgstr "" msgid "Authorization Password" msgstr "" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, python-brace-format +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "" -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 msgid "Invalid password." msgstr "" -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 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 " @@ -6329,62 +6275,62 @@ msgid "" "SSH and have administrative privileges (sudo)." msgstr "" -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, python-brace-format msgid "Creating LDAP user failed: {error}" msgstr "" -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, python-brace-format msgid "Failed to add new user to {group} group: {error}" msgstr "" -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " "line. Blank lines and lines starting with # will be ignored." msgstr "" -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "" -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "" -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "" -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "" -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 msgid "Failed to change user status." msgstr "" -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "" -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, python-brace-format msgid "Failed to add new user to admin group: {error}" msgstr "" -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, python-brace-format msgid "Failed to restrict console access: {error}" msgstr "" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "" @@ -6668,15 +6614,15 @@ msgstr "" msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "" diff --git a/plinth/locale/kn/LC_MESSAGES/django.po b/plinth/locale/kn/LC_MESSAGES/django.po index ac96c2601..f4f5aa190 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: 2022-01-11 19:11-0500\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" "PO-Revision-Date: 2020-07-16 16:41+0000\n" "Last-Translator: Yogesh \n" "Language-Team: Kannada ." msgstr "" -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -4811,10 +4734,21 @@ msgid "" "a>)." msgstr "" -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 msgid "Email Client" msgstr "" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -5139,24 +5073,28 @@ msgstr "" msgid "Updated security configuration" msgstr "" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "" -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." msgstr "" -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 msgid "Bookmarks" msgstr "" +#: plinth/modules/shaarli/manifest.py:12 +msgid "Shaarlier" +msgstr "" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -5363,7 +5301,9 @@ msgid "Software Installation Snapshots" msgstr "" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "" #: plinth/modules/snapshot/forms.py:32 @@ -5581,6 +5521,10 @@ msgstr "" msgid "Login" msgstr "" +#: plinth/modules/sso/views.py:101 +msgid "Logged out successfully." +msgstr "" + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -6314,15 +6258,17 @@ msgstr "" msgid "Authorization Password" msgstr "" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, python-brace-format +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "" -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 msgid "Invalid password." msgstr "" -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 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 " @@ -6331,62 +6277,62 @@ msgid "" "SSH and have administrative privileges (sudo)." msgstr "" -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, python-brace-format msgid "Creating LDAP user failed: {error}" msgstr "" -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, python-brace-format msgid "Failed to add new user to {group} group: {error}" msgstr "" -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " "line. Blank lines and lines starting with # will be ignored." msgstr "" -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "" -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "" -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "" -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "" -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 msgid "Failed to change user status." msgstr "" -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "" -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, python-brace-format msgid "Failed to add new user to admin group: {error}" msgstr "" -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, python-brace-format msgid "Failed to restrict console access: {error}" msgstr "" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "" @@ -6670,15 +6616,15 @@ msgstr "" msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "" diff --git a/plinth/locale/lt/LC_MESSAGES/django.po b/plinth/locale/lt/LC_MESSAGES/django.po index 991d620e1..299a330ae 100644 --- a/plinth/locale/lt/LC_MESSAGES/django.po +++ b/plinth/locale/lt/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-11 19:11-0500\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" "PO-Revision-Date: 2021-02-22 10:50+0000\n" "Last-Translator: Kornelijus Tvarijanavičius \n" "Language-Team: Lithuanian ." msgstr "" -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -4812,10 +4735,21 @@ msgid "" "a>)." msgstr "" -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 msgid "Email Client" msgstr "" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -5138,24 +5072,28 @@ msgstr "" msgid "Updated security configuration" msgstr "" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "" -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." msgstr "" -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 msgid "Bookmarks" msgstr "" +#: plinth/modules/shaarli/manifest.py:12 +msgid "Shaarlier" +msgstr "" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -5362,7 +5300,9 @@ msgid "Software Installation Snapshots" msgstr "" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "" #: plinth/modules/snapshot/forms.py:32 @@ -5580,6 +5520,10 @@ msgstr "" msgid "Login" msgstr "" +#: plinth/modules/sso/views.py:101 +msgid "Logged out successfully." +msgstr "" + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -6313,15 +6257,17 @@ msgstr "" msgid "Authorization Password" msgstr "" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, python-brace-format +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "" -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 msgid "Invalid password." msgstr "" -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 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 " @@ -6330,62 +6276,62 @@ msgid "" "SSH and have administrative privileges (sudo)." msgstr "" -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, python-brace-format msgid "Creating LDAP user failed: {error}" msgstr "" -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, python-brace-format msgid "Failed to add new user to {group} group: {error}" msgstr "" -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " "line. Blank lines and lines starting with # will be ignored." msgstr "" -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "" -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "" -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "" -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "" -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 msgid "Failed to change user status." msgstr "" -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "" -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, python-brace-format msgid "Failed to add new user to admin group: {error}" msgstr "" -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, python-brace-format msgid "Failed to restrict console access: {error}" msgstr "" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "" @@ -6669,15 +6615,15 @@ msgstr "" msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "" diff --git a/plinth/locale/nb/LC_MESSAGES/django.po b/plinth/locale/nb/LC_MESSAGES/django.po index 2fd7dd00b..830e573e9 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: 2022-01-11 19:11-0500\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" "PO-Revision-Date: 2021-12-27 05:53+0000\n" "Last-Translator: Petter Reinholdtsen \n" "Language-Team: Norwegian Bokmål imap.example.com. For IMAP over SSL (anbefalt), fyll " "feltet for tjeneren, som imaps://imap.example.com." -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -5611,10 +5517,21 @@ msgstr "" "lesssecureapps\">https://www.google.com/settings/security/lesssecureapps)." -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 msgid "Email Client" msgstr "E-postklient" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -5990,11 +5907,11 @@ msgstr "Feil ved oppsetting av begrenset tilgang: {exception}" msgid "Updated security configuration" msgstr "Oppdaterte sikkerhetsoppsett" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "Shaarli tillater deg å lagre og dele bokmerker." -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." @@ -6002,14 +5919,20 @@ msgstr "" "Merk at Shaarli kun støtter en enkelt brukerkonto, som du må sette opp ved " "det første besøket." -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "Shaarli" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 msgid "Bookmarks" msgstr "Bokmerker" +#: plinth/modules/shaarli/manifest.py:12 +#, fuzzy +#| msgid "Shaarli" +msgid "Shaarlier" +msgstr "Shaarli" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -6246,7 +6169,11 @@ msgid "Software Installation Snapshots" msgstr "Øyeblikksbilder av programvareinstallasjoner" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +#, fuzzy +#| msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "Skru på eller av øyeblikksbilder før og etter programvareinstallasjon" #: plinth/modules/snapshot/forms.py:32 @@ -6496,6 +6423,12 @@ msgstr "Engangspålogging" msgid "Login" msgstr "Login" +#: plinth/modules/sso/views.py:101 +#, fuzzy +#| msgid "Password changed successfully." +msgid "Logged out successfully." +msgstr "Vellykket passordbytte." + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -7360,15 +7293,17 @@ msgstr "" msgid "Authorization Password" msgstr "Administratorpassord" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, python-brace-format +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "" -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 msgid "Invalid password." msgstr "Ugyldig passord." -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 #, fuzzy #| msgid "" #| "Select which services should be available to the new user. The user will " @@ -7389,21 +7324,21 @@ msgstr "" "gruppen kan logge seg på alle tjenester. De kan også logge inn på systemet " "via SSH, og ha administrative rettigheter (sudo)." -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, python-brace-format msgid "Creating LDAP user failed: {error}" msgstr "Oppretting av LDAP-bruker mislyktes: {error}" -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, python-brace-format msgid "Failed to add new user to {group} group: {error}" msgstr "Klarte ikke å legge ny bruker til i {group}-gruppen: {error}" -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "Autoriserte SSH-nøkler" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " @@ -7413,43 +7348,43 @@ msgstr "" "på systemet uten å bruke passord. Du kan legge inn multiple (flere) nøkler, " "én på hver linje. Blanke linjer og linjer som starter med # vil bli ignorert." -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "Klarte ikke å bytte navn på LDAP-bruker." -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "Klarte ikke å slette bruker fra gruppe." -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "Klarte ikke legge bruker til gruppe." -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "Klarte ikke sette SSH-nøkler." -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 #, fuzzy #| msgid "Failed to add user to group." msgid "Failed to change user status." msgstr "Klarte ikke legge bruker til gruppe." -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "Klarte ikke å bytte passord for LDAP-bruker." -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, python-brace-format msgid "Failed to add new user to admin group: {error}" msgstr "Klarte ikke å legge til en ny bruker i admin-gruppen: {error}" -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, python-brace-format msgid "Failed to restrict console access: {error}" msgstr "Klarte ikke å begrense konsolltilgang: {error}" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "Brukerkonto er opprettet, du er nå logget inn" @@ -7769,17 +7704,17 @@ msgstr "Tjenere %(box_name)s kobler seg til:" msgid "Endpoint" msgstr "Sluttpunkt" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 #, 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:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "Legg til ny tjener" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "Legg til tilkobling til tjener" @@ -8468,6 +8403,73 @@ msgstr "%(percentage)s%% fullført" msgid "Gujarati" msgstr "Gujarati" +#, fuzzy +#~| msgid "Available Domains" +#~ msgid "RoundCube availability" +#~ msgstr "Tilgjengelige domener" + +#, fuzzy +#~| msgid "Invalid server name" +#~ msgid "Enter a valid domain" +#~ msgstr "Ugyldig tjenernavn" + +#, fuzzy +#~| msgid "Invalid server name" +#~ msgid "Enter a valid destination" +#~ msgstr "Ugyldig tjenernavn" + +#, fuzzy +#~| msgid "Domain" +#~ msgid "domain" +#~ msgstr "Domene" + +#, fuzzy +#~| msgid "Service Type" +#~ msgid "Service Alert" +#~ msgstr "Type tjeneste" + +#~ msgid "" +#~ "MLDonkey is a peer-to-peer file sharing application used to exchange " +#~ "large files. It can participate in multiple peer-to-peer networks " +#~ "including eDonkey, Kademlia, Overnet, BitTorrent and DirectConnect." +#~ msgstr "" +#~ "MLDonkey er et maskin-til-maskin -fildelingsprogram brukt til utveksling " +#~ "av store filer. Det kan delta i flere maskin-til-maskin -nettverk, " +#~ "inkludert eDonkey, Kademlia, Overnet, BitTorrent og DirectConnect." + +#~ msgid "" +#~ "Users belonging to admin and ed2k group can control it through the web " +#~ "interface. Users in the admin group can also control it through any of " +#~ "the separate mobile or desktop front-ends or a telnet interface. See " +#~ "manual." +#~ msgstr "" +#~ "Brukere som er medlem i gruppene «admin» og «ed2k» kan kontrollere dem " +#~ "gjennom et vevgrensesnitt. Brukere i admin-gruppen kan også kontrollere " +#~ "den gjennom en av de egne mobil- eller skrivebords-grenseflatene, eller " +#~ "et telnet-grensesnitt. Se manualen." + +#, python-brace-format +#~ msgid "" +#~ "On {box_name}, downloaded files can be found in /var/lib/mldonkey/ " +#~ "directory." +#~ msgstr "" +#~ "På {box_name}, finner du nedlastede filer i mappen /var/lib/mldonkey/." + +#~ msgid "Download files using eDonkey applications" +#~ msgstr "Last ned filer ved bruk av eDonkey-programmer" + +#~ msgid "MLDonkey" +#~ msgstr "MLDonkey" + +#~ msgid "Peer-to-peer File Sharing" +#~ msgstr "Maskin til maskin-fildeling" + +#~ msgid "KMLDonkey" +#~ msgstr "KMLDonkey" + +#~ msgid "AMLDonkey" +#~ msgstr "AMLDonkey" + #~ msgid "Mozilla Thunderbird" #~ msgstr "Mozilla Thunderbird" diff --git a/plinth/locale/nl/LC_MESSAGES/django.po b/plinth/locale/nl/LC_MESSAGES/django.po index 0a129ad8c..7dc3d27c7 100644 --- a/plinth/locale/nl/LC_MESSAGES/django.po +++ b/plinth/locale/nl/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-11 19:11-0500\n" -"PO-Revision-Date: 2022-01-13 18:58+0000\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" +"PO-Revision-Date: 2022-01-19 09:56+0000\n" "Last-Translator: ikmaak \n" "Language-Team: Dutch \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.10.1\n" +"X-Generator: Weblate 4.11-dev\n" "X-Language: nl_NL\n" "X-Source-Language: C\n" @@ -838,7 +838,7 @@ msgstr "" #: plinth/modules/bepasty/forms.py:27 #: plinth/modules/bepasty/templates/bepasty.html:30 -#: plinth/modules/users/forms.py:102 plinth/modules/users/forms.py:228 +#: plinth/modules/users/forms.py:108 plinth/modules/users/forms.py:234 msgid "Permissions" msgstr "Toegangsrechten" @@ -923,7 +923,7 @@ msgstr "Admin" msgid "Configuration updated." msgstr "Configuratie bijgewerkt." -#: plinth/modules/bepasty/views.py:93 plinth/modules/email_server/views.py:107 +#: plinth/modules/bepasty/views.py:93 plinth/modules/email_server/views.py:41 #: plinth/modules/gitweb/views.py:117 plinth/modules/searx/views.py:41 #: plinth/modules/searx/views.py:52 plinth/modules/tor/views.py:159 #: plinth/modules/zoph/views.py:72 @@ -1020,10 +1020,10 @@ msgstr "IP adressen en domeinen verversen" #: plinth/modules/bind/views.py:71 plinth/modules/coturn/views.py:39 #: plinth/modules/deluge/views.py:42 plinth/modules/dynamicdns/views.py:169 -#: plinth/modules/ejabberd/views.py:85 plinth/modules/email_server/views.py:104 +#: plinth/modules/ejabberd/views.py:85 plinth/modules/email_server/views.py:38 #: plinth/modules/matrixsynapse/views.py:124 plinth/modules/mumble/views.py:28 #: plinth/modules/pagekite/forms.py:78 plinth/modules/quassel/views.py:28 -#: plinth/modules/shadowsocks/views.py:59 +#: plinth/modules/roundcube/views.py:32 plinth/modules/shadowsocks/views.py:59 #: plinth/modules/transmission/views.py:47 plinth/modules/ttrss/views.py:26 #: plinth/modules/wordpress/views.py:37 msgid "Configuration updated" @@ -1489,18 +1489,15 @@ msgid "Diagnostics" msgstr "Diagnose" #: plinth/modules/diagnostics/__init__.py:97 -#: plinth/modules/email_server/templates/email_server.html:37 msgid "passed" msgstr "geslaagd" #: plinth/modules/diagnostics/__init__.py:98 -#: plinth/modules/email_server/templates/email_server.html:35 #: plinth/modules/networks/views.py:49 msgid "failed" msgstr "mislukt" #: plinth/modules/diagnostics/__init__.py:99 -#: plinth/modules/email_server/templates/email_server.html:33 msgid "error" msgstr "fout" @@ -2039,43 +2036,23 @@ msgstr "E-mailserver" msgid "Powered by Postfix, Dovecot & Rspamd" msgstr "Maakt gebruik van Postfix, Dovecot & Rspamd" -#: plinth/modules/email_server/audit/ldap.py:69 +#: plinth/modules/email_server/audit/ldap.py:68 msgid "Postfix-Dovecot SASL integration" msgstr "Postfix-Dovecot SASL-integratie" -#: plinth/modules/email_server/audit/ldap.py:70 +#: plinth/modules/email_server/audit/ldap.py:69 msgid "Postfix alias maps" msgstr "Postfix aliasverwijzingen" -#: plinth/modules/email_server/audit/rcube.py:31 -msgid "RoundCube availability" -msgstr "RoundCube-beschikbaarheid" - -#: plinth/modules/email_server/audit/rcube.py:32 -msgid "RoundCube configured for FreedomBox email" -msgstr "RoundCube geconfigureerd voor FreedomBox-e-mail" - #: plinth/modules/email_server/audit/spam.py:87 msgid "Inbound and outbound mail filters" msgstr "Filters voor inkomende en uitgaande e-mail" -#: plinth/modules/email_server/forms.py:17 -msgid "Enter a valid domain" -msgstr "Voer een geldig domein in" - -#: plinth/modules/email_server/forms.py:20 -msgid "Enter a valid destination" -msgstr "Voer een geldige bestemming in" - #: plinth/modules/email_server/forms.py:24 -msgid "domain" -msgstr "domein" - -#: plinth/modules/email_server/forms.py:38 msgid "Primary domain" msgstr "Primair domein" -#: plinth/modules/email_server/forms.py:40 +#: plinth/modules/email_server/forms.py:26 msgid "" "Mails are received for all domains configured in the system. Among these, " "select the most important one." @@ -2083,34 +2060,34 @@ msgstr "" "Mails worden ontvangen voor alle domeinen die in het systeem zijn " "geconfigureerd. Selecteer het belangrijkste domein." -#: plinth/modules/email_server/forms.py:48 +#: plinth/modules/email_server/forms.py:34 msgid "New alias (without @domain)" msgstr "Nieuwe alias (zonder @domein)" -#: plinth/modules/email_server/forms.py:55 +#: plinth/modules/email_server/forms.py:41 msgid "Contains illegal characters" msgstr "Bevat ongeldige tekens" -#: plinth/modules/email_server/forms.py:58 +#: plinth/modules/email_server/forms.py:44 msgid "Must start and end with a-z or 0-9" msgstr "Moet beginnen en eindigen met a-z of 0-9" -#: plinth/modules/email_server/forms.py:61 +#: plinth/modules/email_server/forms.py:47 msgid "Cannot be a number" msgstr "Kan geen getal zijn" -#: plinth/modules/email_server/forms.py:71 +#: plinth/modules/email_server/forms.py:57 msgid "Aliases" msgstr "Aliassen" -#: plinth/modules/email_server/forms.py:83 +#: plinth/modules/email_server/forms.py:69 #: 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 +#: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:29 msgid "Enabled" msgstr "Ingeschakeld" -#: plinth/modules/email_server/forms.py:86 +#: plinth/modules/email_server/forms.py:72 #: plinth/modules/firewall/templates/firewall.html:57 #: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:29 @@ -2119,7 +2096,7 @@ msgid "Disabled" msgstr "Uitgeschakeld" #: plinth/modules/email_server/manifest.py:8 -#: plinth/modules/roundcube/__init__.py:52 +#: plinth/modules/roundcube/__init__.py:54 #: plinth/modules/roundcube/manifest.py:6 msgid "Roundcube" msgstr "Roundcube" @@ -2138,7 +2115,7 @@ msgid "FairEmail" msgstr "FairEmail" #: plinth/modules/email_server/templates/email_alias.html:13 -#: plinth/modules/email_server/templates/email_server.html:20 +#: plinth/modules/email_server/templates/email_server.html:15 msgid "Manage Aliases" msgstr "Aliassen beheren" @@ -2162,27 +2139,10 @@ msgstr "Nieuwe e-mailalias maken" msgid "Add" msgstr "Toevoegen" -#: plinth/modules/email_server/templates/email_server.html:15 +#: plinth/modules/email_server/templates/email_server.html:10 msgid "Manage Spam" msgstr "Spam beheren" -#: plinth/modules/email_server/templates/email_server.html:26 -msgid "Service Alert" -msgstr "Servicewaarschuwing" - -#: plinth/modules/email_server/templates/email_server.html:46 -msgid "Repair" -msgstr "Herstellen" - -#: plinth/modules/email_server/views.py:73 -#, python-brace-format -msgid "Internal error in {0}" -msgstr "Interne fout in {0}" - -#: plinth/modules/email_server/views.py:76 -msgid "Check syslog for more information" -msgstr "Controleer syslog voor meer informatie" - #: plinth/modules/firewall/__init__.py:26 #, python-brace-format msgid "" @@ -3245,10 +3205,14 @@ msgstr "" "geconfigureerd als de STUN/TURN-server voor Matrix Synapse. Schakel dit uit " "als een andere STUN/TURN-server gebruikt moet worden." -#: plinth/modules/matrixsynapse/manifest.py:12 +#: plinth/modules/matrixsynapse/manifest.py:14 msgid "Element" msgstr "Element" +#: plinth/modules/matrixsynapse/manifest.py:48 +msgid "FluffyChat" +msgstr "" + #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 #: plinth/modules/snapshot/templates/snapshot.html:12 #: plinth/templates/app.html:46 @@ -3614,57 +3578,6 @@ msgstr "De opgegeven map bestaat niet." msgid "Updated media directory" msgstr "Mediamap bijgewerkt" -#: plinth/modules/mldonkey/__init__.py:23 -msgid "" -"MLDonkey is a peer-to-peer file sharing application used to exchange large " -"files. It can participate in multiple peer-to-peer networks including " -"eDonkey, Kademlia, Overnet, BitTorrent and DirectConnect." -msgstr "" -"MLDonkey is een peer-to-peer-toepassing voor het delen van bestanden die " -"wordt gebruikt om grote bestanden uit te wisselen. Het kan deelnemen aan " -"meerdere peer-to-peer-netwerken, waaronder eDonkey, Kademlia, Overnet, " -"BitTorrent en DirectConnect." - -#: plinth/modules/mldonkey/__init__.py:26 -msgid "" -"Users belonging to admin and ed2k group can control it through the web " -"interface. Users in the admin group can also control it through any of the " -"separate mobile or desktop front-ends or a telnet interface. See manual." -msgstr "" -"Gebruikers die behoren tot de admin en de ed2k groep kunnen deze via de " -"webinterface bedienen. Gebruikers in de admin groep kunnen het ook besturen " -"via een van de afzonderlijke mobiele of desktop front-ends of een telnet " -"interface. Zie handleiding." - -#: plinth/modules/mldonkey/__init__.py:31 -#, python-brace-format -msgid "" -"On {box_name}, downloaded files can be found in /var/lib/mldonkey/ directory." -msgstr "" -"Op {box_name} kunnen de gedownloade bestanden worden gevonden in /var/lib/" -"mldonkey/ map." - -#: plinth/modules/mldonkey/__init__.py:53 -msgid "Download files using eDonkey applications" -msgstr "Bestanden downloaden met eDonkey toepassingen" - -#: plinth/modules/mldonkey/__init__.py:56 -#: plinth/modules/mldonkey/manifest.py:11 -msgid "MLDonkey" -msgstr "MLDonkey" - -#: plinth/modules/mldonkey/__init__.py:58 -msgid "Peer-to-peer File Sharing" -msgstr "Peer-to-peer bestandsdeling" - -#: plinth/modules/mldonkey/manifest.py:18 -msgid "KMLDonkey" -msgstr "KMLDonkey" - -#: plinth/modules/mldonkey/manifest.py:30 -msgid "AMLDonkey" -msgstr "AMLDonkey" - #: plinth/modules/mumble/__init__.py:26 msgid "" "Mumble is an open source, low-latency, encrypted, high quality voice chat " @@ -5276,11 +5189,11 @@ msgstr "" msgid "System Monitoring" msgstr "Systeembewaking" -#: plinth/modules/power/__init__.py:13 +#: plinth/modules/power/__init__.py:14 msgid "Restart or shut down the system." msgstr "Herstarten of uitschakelen van het systeem." -#: plinth/modules/power/__init__.py:30 +#: plinth/modules/power/__init__.py:31 msgid "Power" msgstr "Power" @@ -5532,7 +5445,7 @@ msgstr "" msgid "Access rights configuration updated" msgstr "Configuratie van de toegangsrechten is bijgewerkt" -#: plinth/modules/roundcube/__init__.py:19 +#: plinth/modules/roundcube/__init__.py:21 msgid "" "Roundcube webmail is a browser-based multilingual IMAP client with an " "application-like user interface. It provides full functionality you expect " @@ -5544,7 +5457,7 @@ msgstr "" "een email toepassing verwacht kan worden, inclusief MIME ondersteuning, een " "adresboek, het beheren van mappen, zoeken in berichten en spellingscontrole." -#: plinth/modules/roundcube/__init__.py:24 +#: plinth/modules/roundcube/__init__.py:26 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 " @@ -5558,7 +5471,7 @@ msgstr "" "example.com. Voor IMAP over SSL (aanbevolen): vul het serverveld in, " "bijvoorbeeld imaps://imap.example.com." -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -5573,10 +5486,21 @@ msgstr "" "(https://" "www.google.com/settings/security/lesssecureapps)." -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 msgid "Email Client" msgstr "Email Cliënt" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -5951,11 +5875,11 @@ msgstr "Fout bij beperkte toegang instellen: {exception}" msgid "Updated security configuration" msgstr "Bijgewerkte Beveiligingsconfiguratie" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "Met Shaarli is het mogelijk bookmarks te bewaren en delen." -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." @@ -5963,14 +5887,20 @@ msgstr "" "Houd er rekening mee dat Shaarli maar een gebruiker ondersteunt, die moet " "worden ingesteld bij het eerste gebruik." -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "Shaarli" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 msgid "Bookmarks" msgstr "Bladwijzers" +#: plinth/modules/shaarli/manifest.py:12 +#, fuzzy +#| msgid "Shaarli" +msgid "Shaarlier" +msgstr "Shaarli" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -6210,7 +6140,11 @@ msgid "Software Installation Snapshots" msgstr "Software-installatie Snapshots" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +#, fuzzy +#| msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "" "Snapshots voor en na de installatie van de software in- of uitschakelen" @@ -6447,6 +6381,12 @@ msgstr "Eenmalige aanmelding" msgid "Login" msgstr "Aanmelding" +#: plinth/modules/sso/views.py:101 +#, fuzzy +#| msgid "Password changed successfully." +msgid "Logged out successfully." +msgstr "Wachtwoord succesvol gewijzigd." + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -7298,15 +7238,18 @@ msgstr "Vereist. 150 tekens of minder. Alleen letters, cijfers en @/./-/_ ." msgid "Authorization Password" msgstr "Authorisatie-wachtwoord" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, fuzzy, python-brace-format +#| msgid "Enter your current password to authorize account modifications." +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "Voer je huidige wachtwoord in om accountwijzigingen toe te staan." -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 msgid "Invalid password." msgstr "Ongeldig wachtwoord." -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 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 " @@ -7321,21 +7264,21 @@ msgstr "" "ook op het systeem inloggen met SSH en kunnen systeemadministratie doen " "(sudo)." -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, python-brace-format msgid "Creating LDAP user failed: {error}" msgstr "LDAP gebruiker aanmaken mislukt: {error}" -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, python-brace-format msgid "Failed to add new user to {group} group: {error}" msgstr "Toevoegen van gebruiker aan groep {group} mislukt: {error}" -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "Geautoriseerde SSH-sleutels" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " @@ -7346,41 +7289,41 @@ msgstr "" "meerdere sleutels toevoegen, één op elke regel. Lege regels en regels die " "beginnen met # worden genegeerd." -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "LDAP gebruiker hernoemen mislukt." -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "Gebruiker uit groep verwijderen mislukt." -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "Gebruiker aan groep toevoegen mislukt." -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "Kan de SSH-sleutels niet instellen." -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 msgid "Failed to change user status." msgstr "Gebruikerstatus aanpassen mislukt." -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "Wijzigen LDAP gebruikerswachtwoord mislukt." -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, python-brace-format msgid "Failed to add new user to admin group: {error}" msgstr "Toevoegen van gebruiker aan admin groep mislukt: {error}" -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, python-brace-format msgid "Failed to restrict console access: {error}" msgstr "Consoletoegang beperken is mislukt: {error}" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "Gebruikersaccount aangemaakt, je bent nu ingelogd" @@ -7701,15 +7644,15 @@ msgstr "Servers waar %(box_name)s verbinding mee zal maken:" msgid "Endpoint" msgstr "Eindpunt" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 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:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "Nieuwe server toevoegen" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "Verbinding toevoegen aan server" @@ -7903,6 +7846,9 @@ msgid "" "from administrator interface. Additional plugins or themes may be installed " "and upgraded at your own risk." msgstr "" +"Na een grote versie-upgrade moet u de database-upgrade handmatig uitvoeren " +"vanuit de beheerdersinterface. Extra plug-ins of thema's kunnen op eigen " +"risico worden geïnstalleerd en geüpgraded." #: plinth/modules/wordpress/__init__.py:58 #: plinth/modules/wordpress/manifest.py:6 @@ -7922,6 +7868,9 @@ msgid "" "Allow all visitors. Disabling allows only administrators to view the " "WordPress site or blog. Enable only after performing initial WordPress setup." msgstr "" +"Laat alle bezoekers toe. Als dit is uitschakeld, kunnen alleen beheerders de " +"WordPress-site of blog bekijken. Alleen inschakelen na het uitvoeren van de " +"eerste WordPress-configuratie." #: plinth/modules/zoph/__init__.py:26 #, python-brace-format @@ -8399,6 +8348,78 @@ msgstr "%(percentage)s%% voltooid" msgid "Gujarati" msgstr "Gujarati" +#~ msgid "RoundCube availability" +#~ msgstr "RoundCube-beschikbaarheid" + +#~ msgid "RoundCube configured for FreedomBox email" +#~ msgstr "RoundCube geconfigureerd voor FreedomBox-e-mail" + +#~ msgid "Enter a valid domain" +#~ msgstr "Voer een geldig domein in" + +#~ msgid "Enter a valid destination" +#~ msgstr "Voer een geldige bestemming in" + +#~ msgid "domain" +#~ msgstr "domein" + +#~ msgid "Service Alert" +#~ msgstr "Servicewaarschuwing" + +#~ msgid "Repair" +#~ msgstr "Herstellen" + +#, python-brace-format +#~ msgid "Internal error in {0}" +#~ msgstr "Interne fout in {0}" + +#~ msgid "Check syslog for more information" +#~ msgstr "Controleer syslog voor meer informatie" + +#~ msgid "" +#~ "MLDonkey is a peer-to-peer file sharing application used to exchange " +#~ "large files. It can participate in multiple peer-to-peer networks " +#~ "including eDonkey, Kademlia, Overnet, BitTorrent and DirectConnect." +#~ msgstr "" +#~ "MLDonkey is een peer-to-peer-toepassing voor het delen van bestanden die " +#~ "wordt gebruikt om grote bestanden uit te wisselen. Het kan deelnemen aan " +#~ "meerdere peer-to-peer-netwerken, waaronder eDonkey, Kademlia, Overnet, " +#~ "BitTorrent en DirectConnect." + +#~ msgid "" +#~ "Users belonging to admin and ed2k group can control it through the web " +#~ "interface. Users in the admin group can also control it through any of " +#~ "the separate mobile or desktop front-ends or a telnet interface. See " +#~ "manual." +#~ msgstr "" +#~ "Gebruikers die behoren tot de admin en de ed2k groep kunnen deze via de " +#~ "webinterface bedienen. Gebruikers in de admin groep kunnen het ook " +#~ "besturen via een van de afzonderlijke mobiele of desktop front-ends of " +#~ "een telnet interface. Zie handleiding." + +#, python-brace-format +#~ msgid "" +#~ "On {box_name}, downloaded files can be found in /var/lib/mldonkey/ " +#~ "directory." +#~ msgstr "" +#~ "Op {box_name} kunnen de gedownloade bestanden worden gevonden in /var/lib/" +#~ "mldonkey/ map." + +#~ msgid "Download files using eDonkey applications" +#~ msgstr "Bestanden downloaden met eDonkey toepassingen" + +#~ msgid "MLDonkey" +#~ msgstr "MLDonkey" + +#~ msgid "Peer-to-peer File Sharing" +#~ msgstr "Peer-to-peer bestandsdeling" + +#~ msgid "KMLDonkey" +#~ msgstr "KMLDonkey" + +#~ msgid "AMLDonkey" +#~ msgstr "AMLDonkey" + #~ msgid "Mozilla Thunderbird" #~ msgstr "Mozilla Thunderbird" diff --git a/plinth/locale/pl/LC_MESSAGES/django.po b/plinth/locale/pl/LC_MESSAGES/django.po index cf878716b..fea24030d 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: 2022-01-11 19:11-0500\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" "PO-Revision-Date: 2021-03-03 16:50+0000\n" "Last-Translator: Karol Werner \n" "Language-Team: Polish ." msgstr "" -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -5189,12 +5104,23 @@ msgid "" "a>)." msgstr "" -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 #, fuzzy #| msgid "Dynamic DNS Client" msgid "Email Client" msgstr "Klient Dynamic DNS" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -5535,24 +5461,30 @@ msgstr "Błąd ustawienia ograniczonego dostępu: {exception}" msgid "Updated security configuration" msgstr "Zaktualizowano ustawienia bezpieczeństwa" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "" -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." msgstr "" -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "Shaarli" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 msgid "Bookmarks" msgstr "" +#: plinth/modules/shaarli/manifest.py:12 +#, fuzzy +#| msgid "Shaarli" +msgid "Shaarlier" +msgstr "Shaarli" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -5763,7 +5695,9 @@ msgid "Software Installation Snapshots" msgstr "" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "" #: plinth/modules/snapshot/forms.py:32 @@ -6003,6 +5937,12 @@ msgstr "" msgid "Login" msgstr "" +#: plinth/modules/sso/views.py:101 +#, fuzzy +#| msgid "Partition expanded successfully." +msgid "Logged out successfully." +msgstr "Partycja rozszerzona." + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -6778,17 +6718,19 @@ msgstr "" msgid "Authorization Password" msgstr "Konto Administratora" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, python-brace-format +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "" -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 #, fuzzy #| msgid "Show password" msgid "Invalid password." msgstr "Pokaż hasło" -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 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 " @@ -6797,64 +6739,64 @@ msgid "" "SSH and have administrative privileges (sudo)." msgstr "" -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, python-brace-format msgid "Creating LDAP user failed: {error}" msgstr "Tworzenie użytkownika LDAP nie udało się: {error}" -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, python-brace-format msgid "Failed to add new user to {group} group: {error}" msgstr "Nieudane dodanie użytkownika do {group} grupy:{error}" -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " "line. Blank lines and lines starting with # will be ignored." msgstr "" -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "" -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "" -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "" -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "" -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 #, fuzzy #| msgid "Failed to add new user to admin group." msgid "Failed to change user status." msgstr "Nieudane dodawanie użytkownika do grupy admin." -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "" -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, python-brace-format msgid "Failed to add new user to admin group: {error}" msgstr "Nieudane dodawanie użytkownika do grupy admin: {error}" -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, python-brace-format msgid "Failed to restrict console access: {error}" msgstr "" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "Utworzono konto użytkownika, możesz się teraz zalogować" @@ -7151,17 +7093,17 @@ msgstr "" msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 #, 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:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 #, fuzzy #| msgid "Connection refused" @@ -7869,6 +7811,35 @@ msgstr "" msgid "Gujarati" msgstr "Gujarati" +#, fuzzy +#~| msgid "Invalid server name" +#~ msgid "Enter a valid domain" +#~ msgstr "Niewłaściwa nazwa użytkownika" + +#, fuzzy +#~| msgid "Invalid server name" +#~ msgid "Enter a valid destination" +#~ msgstr "Niewłaściwa nazwa użytkownika" + +#, fuzzy +#~| msgid "Domain" +#~ msgid "domain" +#~ msgstr "Domena" + +#, fuzzy +#~| msgid "Service Type" +#~ msgid "Service Alert" +#~ msgstr "Typ usługi" + +#~ msgid "MLDonkey" +#~ msgstr "MLDonkey" + +#~ msgid "KMLDonkey" +#~ msgstr "KMLDonkey" + +#~ msgid "AMLDonkey" +#~ msgstr "AMLDonkey" + #, fuzzy #~| msgid "Update URL" #~ msgid "Updates" diff --git a/plinth/locale/pt/LC_MESSAGES/django.po b/plinth/locale/pt/LC_MESSAGES/django.po index adb00fb4f..ff0d4cf0d 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: 2022-01-11 19:11-0500\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" "PO-Revision-Date: 2021-05-08 22:33+0000\n" "Last-Translator: ssantos \n" "Language-Team: Portuguese ." msgstr "" -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -5059,10 +4974,21 @@ msgid "" "a>)." msgstr "" -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 msgid "Email Client" msgstr "" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -5406,24 +5332,28 @@ msgstr "Erro ao definir o nome do domínio: {exception}" msgid "Updated security configuration" msgstr "Configuração Geral" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "" -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." msgstr "" -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 msgid "Bookmarks" msgstr "" +#: plinth/modules/shaarli/manifest.py:12 +msgid "Shaarlier" +msgstr "" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -5630,7 +5560,9 @@ msgid "Software Installation Snapshots" msgstr "" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "" #: plinth/modules/snapshot/forms.py:32 @@ -5854,6 +5786,10 @@ msgstr "" msgid "Login" msgstr "" +#: plinth/modules/sso/views.py:101 +msgid "Logged out successfully." +msgstr "" + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -6620,17 +6556,19 @@ msgstr "" msgid "Authorization Password" msgstr "" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, python-brace-format +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "" -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 #, fuzzy #| msgid "Upload Password" msgid "Invalid password." msgstr "Palavra-passe de Envio" -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 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 " @@ -6639,62 +6577,62 @@ msgid "" "SSH and have administrative privileges (sudo)." msgstr "" -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, python-brace-format msgid "Creating LDAP user failed: {error}" msgstr "" -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, python-brace-format msgid "Failed to add new user to {group} group: {error}" msgstr "" -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " "line. Blank lines and lines starting with # will be ignored." msgstr "" -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "" -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "" -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "" -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "" -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 msgid "Failed to change user status." msgstr "" -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "" -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, python-brace-format msgid "Failed to add new user to admin group: {error}" msgstr "" -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, python-brace-format msgid "Failed to restrict console access: {error}" msgstr "" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "" @@ -6983,15 +6921,15 @@ msgstr "" msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 #, fuzzy #| msgid "Connection refused" @@ -7649,6 +7587,26 @@ msgstr "%(percentage)s%% concluída" msgid "Gujarati" msgstr "Gujarati" +#, fuzzy +#~| msgid "Invalid domain name" +#~ msgid "Enter a valid domain" +#~ msgstr "Nome de domínio inválido" + +#, fuzzy +#~| msgid "Invalid domain name" +#~ msgid "Enter a valid destination" +#~ msgstr "Nome de domínio inválido" + +#, fuzzy +#~| msgid "Domain Name" +#~ msgid "domain" +#~ msgstr "Nome de Domínio" + +#, fuzzy +#~| msgid "Service Discovery" +#~ msgid "Service Alert" +#~ msgstr "Descoberta do Serviço" + #, fuzzy #~| msgid "General Configuration" #~ msgid "Updates" diff --git a/plinth/locale/ru/LC_MESSAGES/django.po b/plinth/locale/ru/LC_MESSAGES/django.po index 084aa075f..cd245db8f 100644 --- a/plinth/locale/ru/LC_MESSAGES/django.po +++ b/plinth/locale/ru/LC_MESSAGES/django.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-11 19:11-0500\n" -"PO-Revision-Date: 2021-09-10 07:34+0000\n" -"Last-Translator: Artem \n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" +"PO-Revision-Date: 2022-01-29 13:55+0000\n" +"Last-Translator: Nikita Epifanov \n" "Language-Team: Russian \n" "Language: ru\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.8.1-dev\n" +"X-Generator: Weblate 4.11-dev\n" #: doc/dev/_templates/layout.html:11 msgid "Page source" @@ -107,7 +107,7 @@ msgstr "Ошибка при установке приложения: {error}" #: plinth/modules/apache/__init__.py:33 msgid "Apache HTTP Server" -msgstr "Apache HTTP-сервер" +msgstr "Apache HTTP сервер" #: plinth/modules/apache/__init__.py:41 msgid "Web Server" @@ -173,17 +173,15 @@ msgstr "" "или дополнительный подключенный диск." #: plinth/modules/backups/__init__.py:205 -#, fuzzy msgid "Enable a Backup Schedule" msgstr "Включить расписание резервного копирования" #: plinth/modules/backups/__init__.py:209 #: plinth/modules/backups/__init__.py:256 #: plinth/modules/storage/__init__.py:329 -#, fuzzy, python-brace-format -#| msgid "About {box_name}" +#, python-brace-format msgid "Go to {app_name}" -msgstr "О {box_name}" +msgstr "Перейти в {app_name}" #: plinth/modules/backups/__init__.py:244 #, python-brace-format @@ -196,10 +194,8 @@ msgstr "" "{error_message}" #: plinth/modules/backups/__init__.py:252 -#, fuzzy -#| msgid "Existing Backups" msgid "Error During Backup" -msgstr "Существующие резервные копии" +msgstr "Ошибка во время резервного копирования" #: plinth/modules/backups/forms.py:33 #, python-brace-format @@ -207,12 +203,10 @@ msgid "{app} (No data to backup)" msgstr "{app} (Нет данных для резервного сохранения)" #: plinth/modules/backups/forms.py:53 -#, fuzzy msgid "Enable scheduled backups" msgstr "Включить резервное копирование по расписанию" #: plinth/modules/backups/forms.py:54 -#, fuzzy msgid "" "If enabled, a backup is taken every day, every week and every month. Older " "backups are removed." @@ -221,7 +215,6 @@ msgstr "" "каждую неделю и каждый месяц. Более старые резервные копии удаляются." #: plinth/modules/backups/forms.py:58 -#, fuzzy msgid "Number of daily backups to keep" msgstr "Количество ежедневных резервных копий для хранения" @@ -230,6 +223,9 @@ msgid "" "This many latest backups are kept and the rest are removed. A value of \"0\" " "disables backups of this type. Triggered at specified hour every day." msgstr "" +"Это количество последних резервных копий сохраняется, а остальные удаляются. " +"Значение \"0\" отключает резервное копирование этого типа. Срабатывает в " +"указанный час каждый день." #: plinth/modules/backups/forms.py:64 msgid "Number of weekly backups to keep" @@ -240,10 +236,13 @@ msgid "" "This many latest backups are kept and the rest are removed. A value of \"0\" " "disables backups of this type. Triggered at specified hour every Sunday." msgstr "" +"Это количество последних резервных копий сохраняется, а остальные удаляются. " +"Значение \"0\" отключает резервное копирование этого типа. Срабатывает в " +"указанный час каждое воскресенье." #: plinth/modules/backups/forms.py:71 msgid "Number of monthly backups to keep" -msgstr "" +msgstr "Количество ежемесячных резервных копий для хранения" #: plinth/modules/backups/forms.py:73 msgid "" @@ -251,14 +250,17 @@ msgid "" "disables backups of this type. Triggered at specified hour first day of " "every month." msgstr "" +"Это количество последних резервных копий сохраняется, а остальные удаляются. " +"Значение \"0\" отключает резервное копирование этого типа. Срабатывает в " +"указанный час первого дня каждого месяца." #: plinth/modules/backups/forms.py:78 msgid "Hour of the day to trigger backup operation" -msgstr "" +msgstr "Час дня для запуска операции резервного копирования" #: plinth/modules/backups/forms.py:79 msgid "In 24 hour format." -msgstr "" +msgstr "В 24-часовом формате." #: plinth/modules/backups/forms.py:82 plinth/modules/backups/forms.py:104 msgid "Included apps" @@ -480,17 +482,13 @@ msgid "Existing Backups" msgstr "Существующие резервные копии" #: plinth/modules/backups/templates/backups_add_remote_repository.html:19 -#, fuzzy, python-format -#| msgid "" -#| "The credentials for this repository are stored on your %(box_name)s.
To restore a backup on a new %(box_name)s you need the ssh credentials " -#| "and, if chosen, the encryption passphrase." +#, python-format msgid "" "The credentials for this repository are stored on your %(box_name)s.
" "To restore a backup on a new %(box_name)s you need the SSH credentials and, " "if chosen, the encryption passphrase." msgstr "" -"Данные для входа в этот репозиторий сохранены в вашем %(box_name)s.
" +"Данные для входа в этот репозиторий сохранены в вашем %(box_name)s.
" "Чтобы провести резервное сохранение на %(box_name)s, вы должны ввести данные " "для входа SSH и, если выбрано, парольную фразу шифрования." @@ -535,7 +533,7 @@ msgstr "Репозиторий зашифрован" #: plinth/modules/backups/templates/backups_repository.html:29 msgid "Schedule" -msgstr "" +msgstr "Расписание" #: plinth/modules/backups/templates/backups_repository.html:40 msgid "Unmount Location" @@ -646,19 +644,14 @@ msgid "How to verify?" msgstr "Как проверить?" #: plinth/modules/backups/templates/verify_ssh_hostkey.html:45 -#, fuzzy -#| msgid "" -#| "Run the following command on the SSH host machine. The output should " -#| "match one of the provided options. You can also use dsa, ecdsa, ed25519 " -#| "etc. instead of rsa, by choosing the corresponding file." msgid "" "Run the following command on the SSH host machine. The output should match " "one of the provided options. You can also use DSA, ECDSA, Ed25519 etc. " "instead of RSA, by choosing the corresponding file." msgstr "" "Выполните следующую команду на хост-машине SSH. Вывод должен соответствовать " -"одному из предложенных вариантов. Вы также можете использовать dsa, ecdsa, " -"ed25519 и т.д. вместо rsa, выбрав соответствующий файл." +"одному из предложенных вариантов. Вы также можете использовать DSA, ECDSA, " +"Ed25519 и т.д. вместо RSA, выбрав соответствующий файл." #: plinth/modules/backups/templates/verify_ssh_hostkey.html:60 msgid "Verify Host" @@ -666,13 +659,11 @@ msgstr "Проверить хост" #: plinth/modules/backups/views.py:55 msgid "Backup schedule updated." -msgstr "" +msgstr "Расписание резервного копирования обновлено." #: plinth/modules/backups/views.py:74 -#, fuzzy -#| msgid "Create Backup" msgid "Schedule Backups" -msgstr "Создать резервную копию" +msgstr "Расписание резервного копирования" #: plinth/modules/backups/views.py:106 msgid "Archive created." @@ -844,7 +835,7 @@ msgstr "Разрешения для анонимных пользователе #: plinth/modules/bepasty/forms.py:27 #: plinth/modules/bepasty/templates/bepasty.html:30 -#: plinth/modules/users/forms.py:102 plinth/modules/users/forms.py:228 +#: plinth/modules/users/forms.py:108 plinth/modules/users/forms.py:234 msgid "Permissions" msgstr "Разрешения" @@ -930,7 +921,7 @@ msgstr "Админ" msgid "Configuration updated." msgstr "Конфигурация обновлена." -#: plinth/modules/bepasty/views.py:93 plinth/modules/email_server/views.py:107 +#: plinth/modules/bepasty/views.py:93 plinth/modules/email_server/views.py:41 #: plinth/modules/gitweb/views.py:117 plinth/modules/searx/views.py:41 #: plinth/modules/searx/views.py:52 plinth/modules/tor/views.py:159 #: plinth/modules/zoph/views.py:72 @@ -1026,10 +1017,10 @@ 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:169 -#: plinth/modules/ejabberd/views.py:85 plinth/modules/email_server/views.py:104 +#: plinth/modules/ejabberd/views.py:85 plinth/modules/email_server/views.py:38 #: plinth/modules/matrixsynapse/views.py:124 plinth/modules/mumble/views.py:28 #: plinth/modules/pagekite/forms.py:78 plinth/modules/quassel/views.py:28 -#: plinth/modules/shadowsocks/views.py:59 +#: plinth/modules/roundcube/views.py:32 plinth/modules/shadowsocks/views.py:59 #: plinth/modules/transmission/views.py:47 plinth/modules/ttrss/views.py:26 #: plinth/modules/wordpress/views.py:37 msgid "Configuration updated" @@ -1374,18 +1365,15 @@ msgstr "" "между сторонами, которые иначе не могут подключиться друг к другу." #: plinth/modules/coturn/__init__.py:34 -#, fuzzy, python-brace-format -#| msgid "" -#| "It is not meant to be used directly by users. Servers such as matrix-" -#| "synapse need to be configured with the details provided here." +#, python-brace-format msgid "" "It is not meant to be used directly by users. Servers such as Matrix Synapse or ejabberd need to " "be configured with the details provided here." msgstr "" "Он не предназначен для непосредственного использования пользователями. Такие " -"серверы, как matrix-synapse, должны быть настроены с указанными здесь " -"деталями." +"серверы, как Matrix Synapse или ejabberd, должны быть настроены с указанными здесь деталями." #: plinth/modules/coturn/__init__.py:57 msgid "Coturn" @@ -1397,7 +1385,7 @@ msgstr "VoIP-помощник" #: plinth/modules/coturn/forms.py:22 msgid "Invalid list of STUN/TURN Server URIs" -msgstr "" +msgstr "Неверный список URI серверов STUN/TURN" #: plinth/modules/coturn/templates/coturn.html:15 msgid "Use the following URLs to configure your communication server:" @@ -1498,24 +1486,21 @@ msgid "Diagnostics" msgstr "Диагностика" #: plinth/modules/diagnostics/__init__.py:97 -#: plinth/modules/email_server/templates/email_server.html:37 msgid "passed" msgstr "успешно" #: plinth/modules/diagnostics/__init__.py:98 -#: plinth/modules/email_server/templates/email_server.html:35 #: plinth/modules/networks/views.py:49 msgid "failed" msgstr "сбой" #: plinth/modules/diagnostics/__init__.py:99 -#: plinth/modules/email_server/templates/email_server.html:33 msgid "error" msgstr "ошибка" #: plinth/modules/diagnostics/__init__.py:100 msgid "warning" -msgstr "" +msgstr "предупреждение" #. Translators: This is the unit of computer storage Mebibyte similar to #. Megabyte. @@ -1689,12 +1674,7 @@ msgid "Leave this field empty if you want to keep your current password." msgstr "Оставьте это поле пустым, если вы хотите сохранить ваш текущий пароль." #: plinth/modules/dynamicdns/forms.py:54 -#, fuzzy, python-brace-format -#| msgid "" -#| "Optional Value. If your {box_name} is not connected directly to the " -#| "Internet (i.e. connected to a NAT router) this URL is used to determine " -#| "the real IP address. The URL should simply return the IP where the client " -#| "comes from (example: http://myip.datasystems24.de)." +#, python-brace-format msgid "" "Optional Value. If your {box_name} is not connected directly to the Internet " "(i.e. connected to a NAT router) this URL is used to determine the real IP " @@ -1704,7 +1684,7 @@ msgstr "" "Необязательное значение. Если ваш {box_name} не подключен непосредственно к " "Интернету, (т.е. подключенный к маршрутизатору) этот URL-адрес используется " "для определения настоящего IP адреса. URL-адрес должен просто вернуть IP " -"(пример: http://myip.datasystems24.de)." +"(пример: https://ddns.freedombox.org/ip/)." #: plinth/modules/dynamicdns/forms.py:62 msgid "The username that was used when the account was created." @@ -1780,13 +1760,6 @@ msgid "Please provide a password" msgstr "Введите пароль" #: plinth/modules/dynamicdns/templates/dynamicdns.html:12 -#, fuzzy -#| msgid "" -#| "If you are looking for a free dynamic DNS account, you may find a free " -#| "GnuDIP service at gnudip.datasystems24.net or you may find free update " -#| "URL based services at freedns.afraid.org." msgid "" "If you are looking for a free dynamic DNS account, you may find a free " "GnuDIP service at ddns." @@ -1794,10 +1767,10 @@ msgid "" "href='http://freedns.afraid.org/' target='_blank'> freedns.afraid.org." msgstr "" "Если вы ищете бесплатный сервер динамического DNS, вы можете найти " -"бесплатный сервис GnuDIP на gnudip.datasystems24.net или вы можете найти беслатную " -"службу обновления URL-адреса на freedns.afraid.org." +"бесплатный сервис GnuDIP на ddns.freedombox.org или вы можете найти беслатную службу " +"обновления URL-адреса на freedns.afraid.org." #: plinth/modules/dynamicdns/templates/dynamicdns.html:23 #, python-format @@ -1915,6 +1888,8 @@ msgid "" "ejabberd needs a STUN/TURN server for audio/video calls. Install the Coturn app or configure an external server." msgstr "" +"ejabberd необходим сервер STUN/TURN для аудио/видео звонков. Установите " +"приложение Coturn или настройте внешний сервер." #: plinth/modules/ejabberd/__init__.py:65 msgid "ejabberd" @@ -1944,7 +1919,7 @@ msgstr "" #: plinth/modules/ejabberd/forms.py:27 plinth/modules/matrixsynapse/forms.py:22 msgid "Automatically manage audio/video call setup" -msgstr "" +msgstr "Автоматическое управление настройкой аудио/видео звонков" #: plinth/modules/ejabberd/forms.py:29 #, python-brace-format @@ -1953,24 +1928,25 @@ msgid "" "server for ejabberd. Disable this if you want to use a different STUN/TURN " "server." msgstr "" +"Настраивает локальное приложение coturn в " +"качестве сервера STUN/TURN для ejabberd. Отключите это, если вы хотите " +"использовать другой сервер STUN/TURN." #: plinth/modules/ejabberd/forms.py:36 plinth/modules/matrixsynapse/forms.py:31 msgid "STUN/TURN Server URIs" -msgstr "" +msgstr "URI сервера STUN/TURN" #: plinth/modules/ejabberd/forms.py:38 plinth/modules/matrixsynapse/forms.py:33 msgid "List of public URIs of the STUN/TURN server, one on each line." -msgstr "" +msgstr "Список публичных URI сервера STUN/TURN, по одному в каждой строке." #: plinth/modules/ejabberd/forms.py:42 plinth/modules/matrixsynapse/forms.py:37 -#, fuzzy -#| msgid "Authentication Mode" msgid "Shared Authentication Secret" -msgstr "Режим проверки подлинности" +msgstr "Общие секрет аутентификации" #: plinth/modules/ejabberd/forms.py:43 plinth/modules/matrixsynapse/forms.py:38 msgid "Shared secret used to compute passwords for the TURN server." -msgstr "" +msgstr "Общий секрет, используемый для вычисления паролей для сервера TURN." #: plinth/modules/ejabberd/manifest.py:10 msgid "Conversations" @@ -2032,105 +2008,77 @@ msgid "" "Roundcube app provides web interface " "for users to access email." msgstr "" +"Приложение Roundcube предоставляет " +"пользователям веб-интерфейс для доступа к электронной почте." #: plinth/modules/email_server/__init__.py:33 msgid "" "During installation, any other email servers in the system will be " "uninstalled." msgstr "" +"Во время установки все другие почтовые серверы в системе будут " +"деинсталлированы." #: plinth/modules/email_server/__init__.py:44 -#, fuzzy -#| msgid "Chat Server" msgid "Email Server" -msgstr "Чат-сервер" +msgstr "Сервер электронной почты" #: plinth/modules/email_server/__init__.py:100 msgid "Powered by Postfix, Dovecot & Rspamd" -msgstr "" +msgstr "Работает на Postfix, Dovecot и Rspamd" + +#: plinth/modules/email_server/audit/ldap.py:68 +msgid "Postfix-Dovecot SASL integration" +msgstr "Интеграция SASL в Postfix-Dovecot" #: plinth/modules/email_server/audit/ldap.py:69 -msgid "Postfix-Dovecot SASL integration" -msgstr "" - -#: plinth/modules/email_server/audit/ldap.py:70 msgid "Postfix alias maps" -msgstr "" - -#: plinth/modules/email_server/audit/rcube.py:31 -#, fuzzy -#| msgid "Unavailable Shares" -msgid "RoundCube availability" -msgstr "Недоступный общий доступ" - -#: plinth/modules/email_server/audit/rcube.py:32 -msgid "RoundCube configured for FreedomBox email" -msgstr "" +msgstr "Карты псевдонимов Postfix" #: plinth/modules/email_server/audit/spam.py:87 msgid "Inbound and outbound mail filters" -msgstr "" - -#: plinth/modules/email_server/forms.py:17 -#, fuzzy -#| msgid "Enter a valid username." -msgid "Enter a valid domain" -msgstr "Введите действительное имя пользователя." - -#: plinth/modules/email_server/forms.py:20 -#, fuzzy -#| msgid "Enter a valid username." -msgid "Enter a valid destination" -msgstr "Введите действительное имя пользователя." +msgstr "Фильтры входящей и исходящей почты" #: plinth/modules/email_server/forms.py:24 -#, fuzzy -#| msgid "Domain" -msgid "domain" -msgstr "Домен" - -#: plinth/modules/email_server/forms.py:38 -#, fuzzy -#| msgid "Primary connection" msgid "Primary domain" -msgstr "Основное соединение" +msgstr "Основной домен" -#: plinth/modules/email_server/forms.py:40 +#: plinth/modules/email_server/forms.py:26 msgid "" "Mails are received for all domains configured in the system. Among these, " "select the most important one." msgstr "" +"Почта принимается для всех доменов, настроенных в системе. Среди них " +"выберите наиболее важный." -#: plinth/modules/email_server/forms.py:48 +#: plinth/modules/email_server/forms.py:34 msgid "New alias (without @domain)" -msgstr "" +msgstr "Новый псевдоним (без @домена)" -#: plinth/modules/email_server/forms.py:55 +#: plinth/modules/email_server/forms.py:41 msgid "Contains illegal characters" -msgstr "" +msgstr "Содержит недопустимые символы" -#: plinth/modules/email_server/forms.py:58 +#: plinth/modules/email_server/forms.py:44 msgid "Must start and end with a-z or 0-9" -msgstr "" +msgstr "Должен начинаться и заканчиваться на a-z или 0-9" -#: plinth/modules/email_server/forms.py:61 +#: plinth/modules/email_server/forms.py:47 msgid "Cannot be a number" -msgstr "" +msgstr "Не может быть числом" -#: plinth/modules/email_server/forms.py:71 -#, fuzzy -#| msgid "Manage Libraries" +#: plinth/modules/email_server/forms.py:57 msgid "Aliases" -msgstr "Управление библиотеками" +msgstr "Псевдонимы" -#: plinth/modules/email_server/forms.py:83 +#: plinth/modules/email_server/forms.py:69 #: 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 +#: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:29 msgid "Enabled" msgstr "Включено" -#: plinth/modules/email_server/forms.py:86 +#: plinth/modules/email_server/forms.py:72 #: plinth/modules/firewall/templates/firewall.html:57 #: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:29 @@ -2139,83 +2087,52 @@ msgid "Disabled" msgstr "Выключено" #: plinth/modules/email_server/manifest.py:8 -#: plinth/modules/roundcube/__init__.py:52 +#: plinth/modules/roundcube/__init__.py:54 #: plinth/modules/roundcube/manifest.py:6 msgid "Roundcube" msgstr "Roundcube" #: plinth/modules/email_server/manifest.py:16 #: plinth/modules/radicale/manifest.py:36 -#, fuzzy -#| msgid "Mozilla Thunderbird" msgid "Thunderbird" -msgstr "Mozilla Thunderbird" +msgstr "Thunderbird" #: plinth/modules/email_server/manifest.py:33 msgid "K-9 Mail" -msgstr "" +msgstr "K-9 Mail" #: plinth/modules/email_server/manifest.py:48 msgid "FairEmail" -msgstr "" +msgstr "FairEmail" #: plinth/modules/email_server/templates/email_alias.html:13 -#: plinth/modules/email_server/templates/email_server.html:20 -#, fuzzy -#| msgid "Manage Libraries" +#: plinth/modules/email_server/templates/email_server.html:15 msgid "Manage Aliases" -msgstr "Управление библиотеками" +msgstr "Управление псевдонимами" #: plinth/modules/email_server/templates/email_alias.html:16 msgid "You have no email aliases." -msgstr "" +msgstr "У вас нет псевдонимов электронной почты." #: plinth/modules/email_server/templates/email_alias.html:24 -#, fuzzy -#| msgid "Disabled" msgid "Disable" -msgstr "Выключено" +msgstr "Выключить" #: plinth/modules/email_server/templates/email_alias.html:26 -#, fuzzy -#| msgid "Enabled" msgid "Enable" -msgstr "Включено" +msgstr "Включить" #: plinth/modules/email_server/templates/email_alias.html:32 -#, fuzzy -#| msgid "Create a new backup" msgid "Create a new email alias" -msgstr "Создать новую резервную копию" +msgstr "Создать новый псевдоним электронной почты" #: plinth/modules/email_server/templates/email_alias.html:38 msgid "Add" msgstr "Добавить" -#: plinth/modules/email_server/templates/email_server.html:15 -#, fuzzy -#| msgid "Manage Snapshots" +#: plinth/modules/email_server/templates/email_server.html:10 msgid "Manage Spam" -msgstr "Управление снапшотами" - -#: plinth/modules/email_server/templates/email_server.html:26 -#, fuzzy -#| msgid "Service Type" -msgid "Service Alert" -msgstr "Тип службы" - -#: plinth/modules/email_server/templates/email_server.html:46 -msgid "Repair" -msgstr "Исправление" - -#: plinth/modules/email_server/views.py:73 -#, python-brace-format -msgid "Internal error in {0}" -msgstr "" - -#: plinth/modules/email_server/views.py:76 -msgid "Check syslog for more information" -msgstr "" +msgstr "Управление спамом" #: plinth/modules/firewall/__init__.py:26 #, python-brace-format @@ -2874,11 +2791,6 @@ msgid "Anonymous Torrents" msgstr "Анонимные торренты" #: plinth/modules/i2p/views.py:16 -#, fuzzy -#| msgid "" -#| "I2P lets you browse the Internet and hidden services (eepsites) " -#| "anonymously. For this, your browser, preferably a Tor Browser, needs to " -#| "be configured for a proxy." msgid "" "I2P lets you browse the Internet and hidden services (eepsites) anonymously. " "For this, your browser, preferably the Tor Browser, needs to be configured " @@ -3115,7 +3027,7 @@ msgstr "Сертификаты" #: plinth/modules/letsencrypt/__init__.py:98 msgid "Cannot test: No domains are configured." -msgstr "" +msgstr "Невозможно провести тестирование: Не настроены домены." #: plinth/modules/letsencrypt/templates/letsencrypt.html:24 msgid "Domain" @@ -3241,6 +3153,9 @@ msgid "" "Matrix Synapse needs a STUN/TURN server for audio/video calls. Install the " "Coturn app or configure an external server." msgstr "" +"Matrix Synapse необходим сервер STUN/TURN для аудио/видео звонков. " +"Установите приложение Coturn или настройте " +"внешний сервер." #: plinth/modules/matrixsynapse/__init__.py:70 msgid "Matrix Synapse" @@ -3267,11 +3182,18 @@ msgid "" "server for Matrix Synapse. Disable this if you want to use a different STUN/" "TURN server." msgstr "" +"Настраивает локальное приложение coturn в " +"качестве сервера STUN/TURN для Matrix Synapse. Отключите это, если вы хотите " +"использовать другой сервер STUN/TURN." -#: plinth/modules/matrixsynapse/manifest.py:12 +#: plinth/modules/matrixsynapse/manifest.py:14 msgid "Element" msgstr "Element" +#: plinth/modules/matrixsynapse/manifest.py:48 +msgid "FluffyChat" +msgstr "" + #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 #: plinth/modules/snapshot/templates/snapshot.html:12 #: plinth/templates/app.html:46 @@ -3637,57 +3559,6 @@ msgstr "Указанный каталог не существует." msgid "Updated media directory" msgstr "Обновленный каталог медиа" -#: plinth/modules/mldonkey/__init__.py:23 -msgid "" -"MLDonkey is a peer-to-peer file sharing application used to exchange large " -"files. It can participate in multiple peer-to-peer networks including " -"eDonkey, Kademlia, Overnet, BitTorrent and DirectConnect." -msgstr "" -"MLDonkey — это файлообменный клиент, предназначенный для обмена большими " -"файлами в децентрализованных сетях. Он может использоваться в различных " -"пиринговый сетях, таких, как eDonkey, Kademlia, Overnet, BitTorrent и " -"DirectConnect." - -#: plinth/modules/mldonkey/__init__.py:26 -msgid "" -"Users belonging to admin and ed2k group can control it through the web " -"interface. Users in the admin group can also control it through any of the " -"separate mobile or desktop front-ends or a telnet interface. See manual." -msgstr "" -"Пользователи, входящие в группу админов и группу ed2k, могут контролировать " -"это через веб-интерфейс. Пользователи из группы админов могут контролировать " -"это с помощью любого мобильного или десктопного фронтэнда или через telnet. " -"Смотри руководство." - -#: plinth/modules/mldonkey/__init__.py:31 -#, python-brace-format -msgid "" -"On {box_name}, downloaded files can be found in /var/lib/mldonkey/ directory." -msgstr "" -"В {box_name}, загруженные Файлы могут быть найдены в /var/lib/mldonkey/ " -"directory." - -#: plinth/modules/mldonkey/__init__.py:53 -msgid "Download files using eDonkey applications" -msgstr "Загрузить файлы, используя приложение eDonkey" - -#: plinth/modules/mldonkey/__init__.py:56 -#: plinth/modules/mldonkey/manifest.py:11 -msgid "MLDonkey" -msgstr "MLDonkey" - -#: plinth/modules/mldonkey/__init__.py:58 -msgid "Peer-to-peer File Sharing" -msgstr "Файлообмен P2P" - -#: plinth/modules/mldonkey/manifest.py:18 -msgid "KMLDonkey" -msgstr "KMLDonkey" - -#: plinth/modules/mldonkey/manifest.py:30 -msgid "AMLDonkey" -msgstr "AMLDonkey" - #: plinth/modules/mumble/__init__.py:26 msgid "" "Mumble is an open source, low-latency, encrypted, high quality voice chat " @@ -3697,19 +3568,14 @@ msgstr "" "открытым исходным кодом." #: plinth/modules/mumble/__init__.py:28 -#, fuzzy -#| msgid "" -#| "You can connect to your Mumble server on the regular Mumble port 64738. " -#| "Clients to connect to Mumble from your " -#| "desktop and Android devices are available." msgid "" "You can connect to your Mumble server on the regular Mumble port 64738. Clients to connect to Mumble from your " "desktop and mobile devices are available." msgstr "" -"Вы можете подключится к серверу Mumble используя стандартный для него порт: " -"64738. На Клиенты вы можете найти " -"клиенты для вашего компьютера и Android устройств." +"Вы можете подключиться к серверу Mumble через обычный порт Mumble 64738. Клиенты для подключения к Mumble с " +"настольных и мобильных устройств так же доступны." #: plinth/modules/mumble/__init__.py:48 plinth/modules/mumble/manifest.py:9 msgid "Mumble" @@ -3838,22 +3704,28 @@ msgid "" "Automatic (DHCP): Configure automatically, use Internet connection from this " "network" msgstr "" +"Автоматически (DHCP): Настройте автоматически, используйте подключение к " +"Интернету из этой сети" #: plinth/modules/networks/forms.py:44 msgid "" "Shared: Act as a router, provide Internet connection to other devices on " "this network" msgstr "" +"Совместное использование: Действует как маршрутизатор, обеспечивает " +"подключение к Интернету других устройств в этой сети" #: plinth/modules/networks/forms.py:47 plinth/modules/networks/forms.py:85 msgid "" "Manual: Use manually specified parameters, use Internet connection from this " "network" msgstr "" +"Вручную: Использовать параметры, заданные вручную, использовать подключение " +"к Интернету из этой сети" #: plinth/modules/networks/forms.py:50 msgid "Disabled: Do not configure this addressing method" -msgstr "" +msgstr "Отключено: Не настраивать этот метод адресации" #: plinth/modules/networks/forms.py:57 msgid "Netmask" @@ -3909,16 +3781,20 @@ msgstr "Метод адресации IPv6" msgid "" "Automatic: Configure automatically, use Internet connection from this network" msgstr "" +"Автоматически: Настроить автоматически, использовать подключение к Интернету " +"из этой сети" #: plinth/modules/networks/forms.py:82 msgid "" "Automatic (DHCP only): Configure automatically, use Internet connection from " "this network" msgstr "" +"Автоматически (только DHCP): Настроить автоматически, использовать " +"подключение к Интернету из этой сети" #: plinth/modules/networks/forms.py:87 msgid "Ignore: Ignore this addressing method" -msgstr "" +msgstr "Игнорировать: Игнорировать этот метод адресации" #: plinth/modules/networks/forms.py:92 msgid "Prefix" @@ -4210,6 +4086,10 @@ msgid "" "that you have other means to access %(box_name)s before altering this " "connection." msgstr "" +"Это основное соединение, на которое полагается %(box_name)s для подключения " +"к Интернету. Его изменение может сделать ваш %(box_name)s недоступным. " +"Убедитесь, что у вас есть другие средства доступа к %(box_name)s, прежде чем " +"изменять это соединение." #: plinth/modules/networks/templates/connection_show.html:36 msgid "Edit connection" @@ -4651,20 +4531,16 @@ msgstr "" "чтобы %(box_name)s предоставлял услуги." #: plinth/modules/networks/templates/router_configuration_content.html:32 -#, fuzzy -#| msgid "" -#| "If you don't have control over your router, choose not to configure it. " -#| "To see options to overcome this limitation, choose 'no public address' " -#| "option in Internet connection type selection." msgid "" "If you don't have control over your router, choose not to configure it. To " "see options to overcome this limitation, choose 'I dont have a public IP " "address' option in Internet connection type selection." msgstr "" -"Если у вас нет контроля над маршрутизатором, не настраивайте его. Чтобы " -"увидеть варианты преодоления этого ограничения, выберите опцию 'без " -"публичного адреса' в выборе типа подключения к Интернету." +"Если у вас нет контроля над маршрутизатором, выберите не настраивать его. " +"Чтобы увидеть варианты преодоления этого ограничения, выберите опцию 'У меня " +"нет публичного IP-адреса' в Выбор типа интернет-соединения." #: plinth/modules/networks/templates/router_configuration_content.html:39 msgid "Choose How You Wish to Configure Your Router" @@ -4696,206 +4572,159 @@ msgstr "" "задачу." #: plinth/modules/networks/views.py:27 -#, fuzzy -#| msgid "Disabled" msgid "disabled" -msgstr "Выключено" +msgstr "выключено" #: plinth/modules/networks/views.py:28 -#, fuzzy -#| msgid "Automatic" msgid "automatic" -msgstr "Автоматически" +msgstr "автоматически" #: plinth/modules/networks/views.py:29 -#, fuzzy -#| msgctxt "User guide" -#| msgid "Manual" msgid "manual" -msgstr "Руководство" +msgstr "вручную" #: plinth/modules/networks/views.py:30 -#, fuzzy -#| msgid "Shared" msgid "shared" -msgstr "Общее" +msgstr "совместно" #: plinth/modules/networks/views.py:31 msgid "link-local" -msgstr "" +msgstr "локальная ссылка" #: plinth/modules/networks/views.py:37 plinth/modules/networks/views.py:98 #: plinth/modules/networks/views.py:109 msgid "unknown" -msgstr "" +msgstr "неизвестно" #: plinth/modules/networks/views.py:38 -#, fuzzy -#| msgid "Manage" msgid "unmanaged" -msgstr "Управление" +msgstr "неуправляемый" #: plinth/modules/networks/views.py:39 -#, fuzzy -#| msgid "Unavailable Shares" msgid "unavailable" -msgstr "Недоступный общий доступ" +msgstr "недоступно" #: plinth/modules/networks/views.py:40 -#, fuzzy -#| msgid "cable is connected" msgid "disconnected" -msgstr "кабель подключен" +msgstr "отключено" #: plinth/modules/networks/views.py:41 -#, fuzzy -#| msgid "Sharing" msgid "preparing" -msgstr "Общий доступ" +msgstr "подготовка" #: plinth/modules/networks/views.py:42 -#, fuzzy -#| msgid "Connection" msgid "connecting" -msgstr "Подключение" +msgstr "подключение" #: plinth/modules/networks/views.py:43 -#, fuzzy -#| msgid "Use HTTP basic authentication" msgid "needs authentication" -msgstr "Использовать базовую аутентификацию HTTP" +msgstr "требуется аутентификация" #: plinth/modules/networks/views.py:44 msgid "requesting address" -msgstr "" +msgstr "запрашиваемый адрес" #: plinth/modules/networks/views.py:45 msgid "checking" -msgstr "" +msgstr "проверка" #: plinth/modules/networks/views.py:46 msgid "waiting for secondary" -msgstr "" +msgstr "ожидание вторичного" #: plinth/modules/networks/views.py:47 -#, fuzzy -#| msgid "Deactivate" msgid "activated" -msgstr "Отключить" +msgstr "активировано" #: plinth/modules/networks/views.py:48 -#, fuzzy -#| msgid "Deactivate" msgid "deactivating" -msgstr "Отключить" +msgstr "деактивировано" #: plinth/modules/networks/views.py:56 -#, fuzzy -#| msgid "State reason" msgid "no reason" -msgstr "Определение состояния" +msgstr "без причины" #: plinth/modules/networks/views.py:58 msgid "unknown error" -msgstr "" +msgstr "неизвестная ошибка" #: plinth/modules/networks/views.py:60 -#, fuzzy -#| msgid "The device is not mounted." msgid "device is now managed" -msgstr "Устройство не подключено." +msgstr "устройство теперь управляется" #: plinth/modules/networks/views.py:62 -#, fuzzy -#| msgid "The device is not mounted." msgid "device is now unmanaged" -msgstr "Устройство не подключено." +msgstr "устройство теперь не управляется" #: plinth/modules/networks/views.py:64 -#, fuzzy -#| msgid "configuration file: {file}" msgid "configuration failed" -msgstr "Файл настроек: {file}" +msgstr "конфигурация не удалась" #: plinth/modules/networks/views.py:66 msgid "secrets required" -msgstr "" +msgstr "требуются секреты" #: plinth/modules/networks/views.py:68 msgid "DHCP client failed to start" -msgstr "" +msgstr "Клиент DHCP не смог запуститься" #: plinth/modules/networks/views.py:70 msgid "DHCP client error" -msgstr "" +msgstr "Ошибка клиента DHCP" #: plinth/modules/networks/views.py:72 -#, fuzzy -#| msgid "Client deleted." msgid "DHCP client failed" -msgstr "Клиент удалён." +msgstr "Сбой клиента DHCP" #: plinth/modules/networks/views.py:74 msgid "shared connection service failed to start" -msgstr "" +msgstr "не удалось запустить службу общего подключения" #: plinth/modules/networks/views.py:76 -#, fuzzy -#| msgid "The operation failed." msgid "shared connection service failed" -msgstr "Операция не удалась." +msgstr "сбой общей службы подключений" #: plinth/modules/networks/views.py:78 -#, fuzzy -#| msgid "The device is already mounted." msgid "device was removed" -msgstr "Устройство уже подключено." +msgstr "устройство было удалено" #: plinth/modules/networks/views.py:80 -#, fuzzy -#| msgid "The device is mounted by another user." msgid "device disconnected by user" -msgstr "Устройство подключено другим пользователем." +msgstr "устройство отключено пользователем" #: plinth/modules/networks/views.py:82 msgid "a dependency of the connection failed" -msgstr "" +msgstr "не удалось установить зависимость соединения" #: plinth/modules/networks/views.py:84 -#, fuzzy -#| msgid "Client not found" msgid "Wi-Fi network not found" -msgstr "Клиент не найден" +msgstr "Сеть Wi-Fi не найдена" #: plinth/modules/networks/views.py:86 -#, fuzzy -#| msgid "The operation failed." msgid "a secondary connection failed" -msgstr "Операция не удалась." +msgstr "вторичное соединение не удалось" #: plinth/modules/networks/views.py:88 msgid "new connection activation was enqueued" -msgstr "" +msgstr "активация нового соединения поставлена в очередь" #: plinth/modules/networks/views.py:90 msgid "a duplicate IP address was detected" -msgstr "" +msgstr "обнаружен дубликат IP-адреса" #: plinth/modules/networks/views.py:92 msgid "selected IP method is not supported" -msgstr "" +msgstr "выбранный метод IP не поддерживается" #: plinth/modules/networks/views.py:101 #, fuzzy #| msgid "Generic" msgid "generic" -msgstr "Универсальный" +msgstr "универсальный" #: plinth/modules/networks/views.py:102 -#, fuzzy -#| msgid "Network Interface" msgid "TUN or TAP interface" -msgstr "Сетевой интерфейс" +msgstr "Интерфейс TUN или TAP" #: plinth/modules/networks/views.py:103 plinth/modules/wireguard/__init__.py:49 #: plinth/modules/wireguard/manifest.py:14 @@ -4903,28 +4732,20 @@ msgid "WireGuard" msgstr "WireGuard" #: 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 "Инфраструктура" +msgstr "инфраструктура" #: plinth/modules/networks/views.py:112 -#, fuzzy -#| msgid "Access Point" msgid "access point" -msgstr "Точка доступа" +msgstr "точка доступа" #: plinth/modules/networks/views.py:113 -#, fuzzy -#| msgid "Access Point" msgid "mesh point" -msgstr "Точка доступа" +msgstr "точка mesh" #: plinth/modules/networks/views.py:127 msgid "Network Connections" @@ -5013,10 +4834,8 @@ msgstr "" "дополнительной безопасности и анонимности." #: plinth/modules/openvpn/__init__.py:55 -#, fuzzy -#| msgid "Connection to Server" msgid "Connect to VPN services" -msgstr "Подключение к серверу" +msgstr "Подключение к службам VPN" #: plinth/modules/openvpn/__init__.py:58 plinth/modules/openvpn/manifest.py:17 msgid "OpenVPN" @@ -5040,7 +4859,7 @@ msgstr "Tunnelblick" #: plinth/modules/openvpn/templates/migrate_to_ecc.html:7 msgid "Migrate to ECC" -msgstr "" +msgstr "Миграция на ECC" #: plinth/modules/openvpn/templates/migrate_to_ecc.html:10 msgid "" @@ -5049,6 +4868,10 @@ msgid "" "security. This operation is irreversible. It should only take a few minutes " "on most single board computers." msgstr "" +"Ваша установка OpenVPN в настоящее время использует RSA. Переход на " +"современную криптографию Elliptic Curve Cryptography повышает скорость " +"установления соединения и безопасность. Эта операция необратима. Она должна " +"занять всего несколько минут на большинстве одноплатных компьютеров." #: plinth/modules/openvpn/templates/migrate_to_ecc.html:19 #, python-format @@ -5056,6 +4879,8 @@ msgid "" "All new installations of OpenVPN on %(box_name)s will use ECC by default. We " "recommend migrating as soon as possible." msgstr "" +"Все новые установки OpenVPN на %(box_name)s будут использовать ECC по " +"умолчанию. Мы рекомендуем выполнить миграцию как можно скорее." #: plinth/modules/openvpn/templates/migrate_to_ecc.html:26 #, python-format @@ -5065,12 +4890,14 @@ msgid "" "profiles. OpenVPN clients compatible with ECC should be used to connect to " "this server." msgstr "" +"Предупреждение: Существующие профили клиентов будут аннулированы этой " +"операцией. Все пользователи OpenVPN на %(box_name)s должны загрузить свои " +"новые профили. Для подключения к этому серверу следует использовать клиенты " +"OpenVPN, совместимые с ECC." #: plinth/modules/openvpn/templates/migrate_to_ecc.html:38 -#, fuzzy -#| msgid "Moderate" msgid "Migrate" -msgstr "Умеренный" +msgstr "Мигрировать" #: plinth/modules/openvpn/templates/openvpn.html:22 msgid "Profile" @@ -5338,11 +5165,11 @@ msgstr "" msgid "System Monitoring" msgstr "Системный мониторинг" -#: plinth/modules/power/__init__.py:13 +#: plinth/modules/power/__init__.py:14 msgid "Restart or shut down the system." msgstr "Перезагрузка или завершение работы системы." -#: plinth/modules/power/__init__.py:30 +#: plinth/modules/power/__init__.py:31 msgid "Power" msgstr "Pоwer" @@ -5360,8 +5187,6 @@ msgid "Restart" msgstr "Перезапустить" #: plinth/modules/power/templates/power.html:25 -#, fuzzy -#| msgid "Shut down" msgid "Shut Down" msgstr "Завершить работу" @@ -5595,7 +5420,7 @@ msgstr "" msgid "Access rights configuration updated" msgstr "Конфигурация прав доступа обновлена" -#: plinth/modules/roundcube/__init__.py:19 +#: plinth/modules/roundcube/__init__.py:21 msgid "" "Roundcube webmail is a browser-based multilingual IMAP client with an " "application-like user interface. It provides full functionality you expect " @@ -5607,7 +5432,7 @@ msgstr "" "которую вы ожидаете от почтового клиента, включая поддержку MIME, адресную " "книгу, управление папками, поиск сообщений и проверку орфографии." -#: plinth/modules/roundcube/__init__.py:24 +#: plinth/modules/roundcube/__init__.py:26 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 " @@ -5621,7 +5446,7 @@ msgstr "" "example.com. Для IMAP через SSL (рекомендуется) заполните поле " "сервера, например imaps://imap.example.com." -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -5637,10 +5462,21 @@ msgstr "" "security/lesssecureapps\" >https://www.google.com/settings/security/" "lesssecureapps)." -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 msgid "Email Client" msgstr "Почтовый клиент" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -5776,10 +5612,8 @@ msgid "Action" msgstr "Действие" #: plinth/modules/samba/views.py:33 -#, fuzzy -#| msgid "FreedomBox" msgid "FreedomBox OS disk" -msgstr "FreedomBox" +msgstr "Диск ОС FreedomBox" #: plinth/modules/samba/views.py:59 plinth/modules/storage/forms.py:146 msgid "Open Share" @@ -5941,21 +5775,21 @@ msgid "" "There are %(count)s reported security vulnerabilities in the FreedomBox app, " "which provides the core services and user interface for a FreedomBox server." msgstr "" +"Имеются %(count)s сообщений об уязвимостях безопасности в приложении " +"FreedomBox, которое предоставляет основные услуги и пользовательский " +"интерфейс для сервера FreedomBox." #: plinth/modules/security/templates/security_report.html:19 -#, fuzzy -#| msgid "" -#| "The following table lists the current reported number, and historical " -#| "count, of security vulnerabilities for each installed app." msgid "" "The following table lists the current reported number of security " "vulnerabilities for each installed app. More information on the " "vulnerabilities can be found on the Debian Security Bug Tracker." msgstr "" -"В следующей таблице перечислены текущее зарегистрированное количество и " -"историческое количество уязвимостей безопасности для каждого установленного " -"приложения." +"В следующей таблице перечислено текущее количество сообщений об уязвимостях " +"безопасности для каждого установленного приложения. Более подробную " +"информацию об уязвимостях можно найти на Debian Security Bug Tracker." #: plinth/modules/security/templates/security_report.html:28 msgid "" @@ -6018,11 +5852,11 @@ msgstr "Ошибка настройки ограничения доступа: { msgid "Updated security configuration" msgstr "Обновлена настройка безопасности" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "Shaarli позволяет вам сохранять и обмениваться закладками." -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." @@ -6030,14 +5864,20 @@ msgstr "" "Обратите внимание, что Shaarli поддерживает только одну учетную запись " "пользователя, которую вам нужно будет настроить при первом посещении." -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "Shаarli" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 msgid "Bookmarks" msgstr "Закладки" +#: plinth/modules/shaarli/manifest.py:12 +#, fuzzy +#| msgid "Shaarli" +msgid "Shaarlier" +msgstr "Shаarli" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -6145,10 +5985,8 @@ msgid "Make files in this folder available to anyone with the link." msgstr "Сделайте файлы в этой папке доступными для всех, у кого есть ссылка." #: plinth/modules/sharing/forms.py:34 -#, fuzzy -#| msgid "User groups that can read the files in the share" msgid "User groups that can read the files in the share:" -msgstr "Группы пользователей, которые могут читать файлы в общей папке" +msgstr "Группы пользователей, которые могут читать файлы в общей папке:" #: plinth/modules/sharing/forms.py:36 msgid "" @@ -6277,7 +6115,11 @@ msgid "Software Installation Snapshots" msgstr "Снапшоты при установке ПО" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +#, fuzzy +#| msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "" "Включить или отключить снапшоты до и после установки программного обеспечения" @@ -6396,18 +6238,16 @@ msgid "Rollback to Snapshot #%(number)s" msgstr "Откат к снимку %(number)s" #: plinth/modules/snapshot/views.py:27 -#, fuzzy -#| msgid "Library created." msgid "manually created" -msgstr "Библиотека создана." +msgstr "создано вручную" #: plinth/modules/snapshot/views.py:28 msgid "timeline" -msgstr "" +msgstr "временная шкала" #: plinth/modules/snapshot/views.py:29 msgid "apt" -msgstr "" +msgstr "apt" #: plinth/modules/snapshot/views.py:39 msgid "Manage Snapshots" @@ -6513,6 +6353,12 @@ msgstr "Единый вход" msgid "Login" msgstr "Логин" +#: plinth/modules/sso/views.py:101 +#, fuzzy +#| msgid "Password changed successfully." +msgid "Logged out successfully." +msgstr "Пароль успешно изменён." + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -7012,7 +6858,7 @@ msgstr "" #: plinth/modules/transmission/__init__.py:27 msgid "Please do not change the default port of the Transmission daemon." -msgstr "" +msgstr "Пожалуйста, не изменяйте порт по умолчанию демона Transmission." #: plinth/modules/transmission/__init__.py:53 #: plinth/modules/transmission/manifest.py:6 @@ -7085,10 +6931,8 @@ msgstr "" #: plinth/modules/upgrades/__init__.py:129 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:11 #: plinth/modules/upgrades/templates/update-firstboot.html:11 -#, fuzzy -#| msgid "Software Upgrades" msgid "Software Update" -msgstr "Обновления программного обеспечения" +msgstr "Обновление программного обеспечения" #: plinth/modules/upgrades/__init__.py:132 msgid "FreedomBox Updated" @@ -7096,7 +6940,7 @@ msgstr "FreedomBox обновлён" #: plinth/modules/upgrades/__init__.py:217 msgid "Could not start distribution update" -msgstr "" +msgstr "Не удалось запустить обновление дистрибутива" #: plinth/modules/upgrades/__init__.py:219 msgid "" @@ -7104,17 +6948,20 @@ msgid "" "distribution update. Please ensure at least 5 GB is free. Distribution " "update will be retried after 24 hours, if enabled." msgstr "" +"В корневом разделе недостаточно свободного места для запуска обновления " +"дистрибутива. Пожалуйста, убедитесь, что свободно не менее 5 ГБ. Обновление " +"дистрибутива будет повторно запущено через 24 часа, если это включено." #: plinth/modules/upgrades/__init__.py:230 -#, fuzzy -#| msgid "Automatic upgrades disabled" msgid "Distribution update started" -msgstr "Автоматические обновления отключены" +msgstr "Началось обновление дистрибутива" #: plinth/modules/upgrades/__init__.py:232 msgid "" "Started update to next stable release. This may take a long time to complete." msgstr "" +"Начато обновление до следующего стабильного выпуска. Это может занять много " +"времени." #: plinth/modules/upgrades/forms.py:15 msgid "Enable auto-update" @@ -7126,16 +6973,16 @@ msgstr "" "Если опция включена, то FreedomBox автоматически обновляется раз в день." #: plinth/modules/upgrades/forms.py:19 -#, fuzzy -#| msgid "Enable auto-update" msgid "Enable auto-update to next stable release" -msgstr "Включить автообновление" +msgstr "Включить автообновление до следующего стабильного выпуска" #: plinth/modules/upgrades/forms.py:20 msgid "" "When enabled, FreedomBox will update to the next stable distribution release " "when it is available." msgstr "" +"Если эта функция включена, FreedomBox будет обновляться до следующего " +"стабильного выпуска дистрибутива, когда он будет доступен." #: plinth/modules/upgrades/forms.py:34 #: plinth/modules/upgrades/templates/upgrades_configure.html:89 @@ -7143,10 +6990,8 @@ msgid "Activate frequent feature updates (recommended)" msgstr "Активировать частые обновления функций (рекомендуется)" #: plinth/modules/upgrades/forms.py:40 -#, fuzzy -#| msgid "Fail2Ban (recommended)" msgid "Update now (recommended)" -msgstr "Fail2ban (рекомендуется)" +msgstr "Обновить сейчас (рекомендуется)" #: plinth/modules/upgrades/templates/backports-firstboot.html:26 msgid "" @@ -7165,40 +7010,33 @@ msgstr "" "нельзя деактивировать." #: plinth/modules/upgrades/templates/update-firstboot-progress.html:19 -#, fuzzy -#| msgid "Updating..." msgid "Updating, please wait..." -msgstr "Обновляется..." +msgstr "Обновление, подождите..." #: plinth/modules/upgrades/templates/update-firstboot-progress.html:22 #: 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 "" "Для завершения может потребоваться много времени. Во время " -"обновления вы не можете устанавливать приложения. Веб-интерфейс может быть " -"временно недоступен и показывать ошибку. В таком случае, чтобы продолжить, " -"обновите страницу." +"обновления веб-интерфейс может быть временно недоступен и показывать ошибку. " +"В таком случае, чтобы продолжить, обновите страницу." #: plinth/modules/upgrades/templates/update-firstboot-progress.html:31 -#, 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 "%(box_name)s в актуальном состоянии." +msgstr "" +"\n" +"\t%(box_name)s в актуальном состоянии. Нажмите \"Далее\", чтобы продолжить.\n" +" " #: plinth/modules/upgrades/templates/upgrades-new-release.html:9 -#, fuzzy, python-format -#| msgid "%(box_name)s Updated" +#, python-format msgid "%(box_name)s updated" msgstr "%(box_name)s обновлён" @@ -7292,16 +7130,12 @@ msgid "Automatic upgrades disabled" msgstr "Автоматические обновления отключены" #: plinth/modules/upgrades/views.py:82 -#, fuzzy -#| msgid "Automatic upgrades enabled" msgid "Distribution upgrade enabled" -msgstr "Автоматические обновления включены" +msgstr "Обновление дистрибутива включено" #: plinth/modules/upgrades/views.py:85 -#, fuzzy -#| msgid "Automatic upgrades disabled" msgid "Distribution upgrade disabled" -msgstr "Автоматические обновления отключены" +msgstr "Обновление дистрибутива отключено" #: plinth/modules/upgrades/views.py:127 msgid "Upgrade process started." @@ -7370,15 +7204,18 @@ msgstr "" msgid "Authorization Password" msgstr "Пароль авторизации" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, fuzzy, python-brace-format +#| msgid "Enter your current password to authorize account modifications." +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "Введите свой текущий пароль, чтобы разрешить изменение учетной записи." -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 msgid "Invalid password." msgstr "Неправильный пароль." -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 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 " @@ -7392,21 +7229,21 @@ msgstr "" "Пользователи в группе администратора имеют доступ ко всем службам. Они также " "могут войти в систему через SSH и иметь административные привилегии (sudo)." -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, python-brace-format msgid "Creating LDAP user failed: {error}" msgstr "Не удалось создать пользователя LDAP: {error}" -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, python-brace-format msgid "Failed to add new user to {group} group: {error}" msgstr "Не удалось добавить нового пользователя в группу {group}: {error}" -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "Авторизованные SSH ключи" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " @@ -7417,42 +7254,42 @@ msgstr "" "на каждой строке. Пустые строки и строки, начинающиеся с # будут " "игнорироваться." -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "Переименование пользователя LDAP не удалось." -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "Не удалось удалить пользователя из группы." -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "Не удалось добавить пользователя в группу." -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "Не удалось задать ключи SSH." -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 msgid "Failed to change user status." msgstr "Не удалось изменить статус пользователя." -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "Изменение LDAP пароля пользователя не удалось." -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, python-brace-format msgid "Failed to add new user to admin group: {error}" msgstr "" "Не удалось добавить нового пользователя в группу администраторов: {error}" -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, python-brace-format msgid "Failed to restrict console access: {error}" msgstr "Не удалось ограничить доступ к консоли: {error}" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "Учетная запись пользователя создана, теперь вы вошли" @@ -7709,9 +7546,6 @@ msgid "Use this connection to send all outgoing traffic" msgstr "Используйте это соединение для отправки всего исходящего трафика" #: plinth/modules/wireguard/forms.py:107 -#, fuzzy -#| msgid "" -#| "Typically checked for a VPN service though which all traffic is sent." msgid "Typically checked for a VPN service through which all traffic is sent." msgstr "" "Обычно проверяется на наличие службы VPN, через которую отправляется весь " @@ -7772,15 +7606,15 @@ msgstr "Серверы, к которым %(box_name)s будет подключ msgid "Endpoint" msgstr "Конечная точка" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 msgid "No connections to remote servers are configured yet." msgstr "Подключения к удаленным серверам пока не настроены." -#: plinth/modules/wireguard/templates/wireguard.html:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "Добавить новый сервер" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "Добавить подключение к серверу" @@ -7938,6 +7772,11 @@ msgid "" "Administration interface and produced web pages are suitable for mobile " "devices." msgstr "" +"WordPress - это популярный способ создания и управления веб-сайтами и " +"блогами. Контентом можно управлять с помощью визуального интерфейса. Макет и " +"функциональность веб-страниц можно настраивать. Внешний вид можно выбрать с " +"помощью тем. Интерфейс администрирования и созданные веб-страницы подходят " +"для мобильных устройств." #: plinth/modules/wordpress/__init__.py:29 #, python-brace-format @@ -7947,6 +7786,11 @@ msgid "" "the correct domain name. Enable permalinks in administrator interface for " "better URLs to your pages and posts." msgstr "" +"Вам нужно запустить настройку WordPress, посетив приложение, прежде чем " +"сделать сайт общедоступным. Программа установки должна быть запущена при " +"доступе к {box_name} с правильным доменным именем. Включите постоянные " +"ссылки в интерфейсе администратора для улучшения URL-адресов ваших страниц и " +"сообщений." #: plinth/modules/wordpress/__init__.py:34 msgid "" @@ -7954,6 +7798,10 @@ msgid "" "during setup. Bookmark the admin page " "to reach administration interface in the future." msgstr "" +"WordPress имеет свои собственные учетные записи пользователей. Первая " +"учетная запись администратора создается во время установки. Сделайте " +"закладку на страницу администратора, " +"чтобы в будущем иметь доступ к интерфейсу администрирования." #: plinth/modules/wordpress/__init__.py:38 msgid "" @@ -7961,31 +7809,31 @@ msgid "" "from administrator interface. Additional plugins or themes may be installed " "and upgraded at your own risk." msgstr "" +"После крупного обновления версии необходимо вручную запустить обновление " +"базы данных из интерфейса администратора. Дополнительные плагины или темы " +"могут быть установлены и обновлены на ваш страх и риск." #: plinth/modules/wordpress/__init__.py:58 #: plinth/modules/wordpress/manifest.py:6 -#, fuzzy -#| msgid "Address" msgid "WordPress" -msgstr "Адрес" +msgstr "WordPress" #: plinth/modules/wordpress/__init__.py:59 -#, fuzzy -#| msgid "Wiki and Blog" msgid "Website and Blog" -msgstr "Вики и Блог" +msgstr "Сайт и блог" #: plinth/modules/wordpress/forms.py:14 -#, fuzzy -#| msgid "public access" msgid "Public access" -msgstr "публичный доступ" +msgstr "Публичный доступ" #: plinth/modules/wordpress/forms.py:15 msgid "" "Allow all visitors. Disabling allows only administrators to view the " "WordPress site or blog. Enable only after performing initial WordPress setup." msgstr "" +"Разрешить всех посетителей. Отключение позволяет только администраторам " +"просматривать сайт или блог WordPress. Включайте только после первоначальной " +"настройки WordPress." #: plinth/modules/zoph/__init__.py:26 #, python-brace-format @@ -7999,6 +7847,16 @@ msgid "" "location using search, map and calendar views. Individual photos can be " "shared with others by sending a direct link." msgstr "" +"Zoph управляет вашей коллекцией фотографий. Фотографии хранятся на вашем " +"{box_name}, под вашим контролем. Вместо того чтобы сосредоточиться на " +"галереях для публичного показа, Zoph фокусируется на управлении ими для " +"вашего собственного использования, организуя их по тому, кто их сделал, где " +"они были сделаны и кто на них изображен. Фотографии могут быть связаны с " +"несколькими иерархическими альбомами и категориями. С помощью поиска, карты " +"и календаря легко найти все фотографии, содержащие человека, или фотографии, " +"сделанные в определенную дату, или фотографии, сделанные в определенном " +"месте. Отдельными фотографиями можно поделиться с другими, отправив прямую " +"ссылку." #: plinth/modules/zoph/__init__.py:37 #, python-brace-format @@ -8007,31 +7865,34 @@ msgid "" "Zoph. For additional users, accounts must be created both in {box_name} and " "in Zoph with the same user name." msgstr "" +"Пользователь {box_name}, установивший Zoph, также станет администратором в " +"Zoph. Для дополнительных пользователей необходимо создать учетные записи как " +"в {box_name}, так и в Zoph с тем же именем пользователя." #: plinth/modules/zoph/__init__.py:58 plinth/modules/zoph/manifest.py:6 msgid "Zoph" -msgstr "" +msgstr "Zoph" #: plinth/modules/zoph/__init__.py:59 msgid "Photo Organizer" -msgstr "" +msgstr "Организатор фотографий" #: plinth/modules/zoph/forms.py:14 msgid "Enable OpenStreetMap for maps" -msgstr "" +msgstr "Включить OpenStreetMap для карт" #: plinth/modules/zoph/forms.py:15 msgid "" "When enabled, requests will be made to OpenStreetMap servers from user's " "browser. This impacts privacy." msgstr "" +"Если эта функция включена, запросы к серверам OpenStreetMap будут " +"выполняться из браузера пользователя. Это влияет на конфиденциальность." #: plinth/modules/zoph/templates/zoph-pre-setup.html:15 #: plinth/modules/zoph/templates/zoph-pre-setup.html:28 -#, fuzzy -#| msgid "Start Setup" msgid "Setup" -msgstr "Запуск программы установки" +msgstr "Настройка" #: plinth/modules/zoph/templates/zoph-pre-setup.html:18 #, python-format @@ -8039,6 +7900,8 @@ msgid "" "User account %(username)s will become the administrator " "account for Zoph." msgstr "" +"Учетная запись пользователя %(username)s станет учетной " +"записью администратора для Zoph." #: plinth/network.py:29 msgid "PPPoE" @@ -8051,7 +7914,7 @@ msgstr "Универсальный" #: plinth/package.py:94 #, python-brace-format msgid "Package {package_name} is the latest version ({latest_version})" -msgstr "" +msgstr "Пакет {package_name} последней версией ({latest_version})" #: plinth/package.py:245 msgid "Error during installation" @@ -8330,7 +8193,7 @@ msgstr "" #: plinth/templates/messages.html:11 msgid "Close" -msgstr "" +msgstr "Закрыть" #: plinth/templates/notifications-dropdown.html:11 msgid "Notifications" @@ -8407,7 +8270,7 @@ msgstr "Это приложение в настоящее время недос #: plinth/templates/setup.html:50 msgid "Check again" -msgstr "" +msgstr "Проверить еще раз" #: plinth/templates/setup.html:55 msgid "" @@ -8415,6 +8278,9 @@ msgid "" "conflict with the installation of this app. The following packages will be " "removed if you proceed:" msgstr "" +"Конфликтующие пакеты: Некоторые пакеты, установленные в " +"системе, конфликтуют с установкой этого приложения. Следующие пакеты будут " +"удалены, если вы продолжите установку:" #: plinth/templates/setup.html:71 msgid "Install" @@ -8446,6 +8312,78 @@ msgstr "%(percentage)s%% завершено" msgid "Gujarati" msgstr "Гуджарати" +#~ msgid "RoundCube availability" +#~ msgstr "Доступность RoundCube" + +#~ msgid "RoundCube configured for FreedomBox email" +#~ msgstr "RoundCube настроен для электронной почты FreedomBox" + +#~ msgid "Enter a valid domain" +#~ msgstr "Введите действительный домен" + +#~ msgid "Enter a valid destination" +#~ msgstr "Введите действительное место назначения" + +#~ msgid "domain" +#~ msgstr "домен" + +#~ msgid "Service Alert" +#~ msgstr "Сервисное оповещение" + +#~ msgid "Repair" +#~ msgstr "Исправление" + +#, python-brace-format +#~ msgid "Internal error in {0}" +#~ msgstr "Внутренняя ошибка в {0}" + +#~ msgid "Check syslog for more information" +#~ msgstr "Проверьте syslog для получения дополнительной информации" + +#~ msgid "" +#~ "MLDonkey is a peer-to-peer file sharing application used to exchange " +#~ "large files. It can participate in multiple peer-to-peer networks " +#~ "including eDonkey, Kademlia, Overnet, BitTorrent and DirectConnect." +#~ msgstr "" +#~ "MLDonkey — это файлообменный клиент, предназначенный для обмена большими " +#~ "файлами в децентрализованных сетях. Он может использоваться в различных " +#~ "пиринговый сетях, таких, как eDonkey, Kademlia, Overnet, BitTorrent и " +#~ "DirectConnect." + +#~ msgid "" +#~ "Users belonging to admin and ed2k group can control it through the web " +#~ "interface. Users in the admin group can also control it through any of " +#~ "the separate mobile or desktop front-ends or a telnet interface. See " +#~ "manual." +#~ msgstr "" +#~ "Пользователи, входящие в группу админов и группу ed2k, могут " +#~ "контролировать это через веб-интерфейс. Пользователи из группы админов " +#~ "могут контролировать это с помощью любого мобильного или десктопного " +#~ "фронтэнда или через telnet. Смотри руководство." + +#, python-brace-format +#~ msgid "" +#~ "On {box_name}, downloaded files can be found in /var/lib/mldonkey/ " +#~ "directory." +#~ msgstr "" +#~ "В {box_name}, загруженные Файлы могут быть найдены в /var/lib/mldonkey/ " +#~ "directory." + +#~ msgid "Download files using eDonkey applications" +#~ msgstr "Загрузить файлы, используя приложение eDonkey" + +#~ msgid "MLDonkey" +#~ msgstr "MLDonkey" + +#~ msgid "Peer-to-peer File Sharing" +#~ msgstr "Файлообмен P2P" + +#~ msgid "KMLDonkey" +#~ msgstr "KMLDonkey" + +#~ msgid "AMLDonkey" +#~ msgstr "AMLDonkey" + #~ msgid "Mozilla Thunderbird" #~ msgstr "Mozilla Thunderbird" diff --git a/plinth/locale/si/LC_MESSAGES/django.po b/plinth/locale/si/LC_MESSAGES/django.po index ff35b99fc..cbcb7462d 100644 --- a/plinth/locale/si/LC_MESSAGES/django.po +++ b/plinth/locale/si/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-11 19:11-0500\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" "PO-Revision-Date: 2021-04-27 13:32+0000\n" "Last-Translator: HelaBasa \n" "Language-Team: Sinhala ." msgstr "" -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -4811,10 +4734,21 @@ msgid "" "a>)." msgstr "" -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 msgid "Email Client" msgstr "" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -5137,24 +5071,28 @@ msgstr "" msgid "Updated security configuration" msgstr "" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "" -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." msgstr "" -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 msgid "Bookmarks" msgstr "" +#: plinth/modules/shaarli/manifest.py:12 +msgid "Shaarlier" +msgstr "" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -5361,7 +5299,9 @@ msgid "Software Installation Snapshots" msgstr "" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "" #: plinth/modules/snapshot/forms.py:32 @@ -5579,6 +5519,10 @@ msgstr "" msgid "Login" msgstr "" +#: plinth/modules/sso/views.py:101 +msgid "Logged out successfully." +msgstr "" + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -6312,15 +6256,17 @@ msgstr "" msgid "Authorization Password" msgstr "" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, python-brace-format +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "" -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 msgid "Invalid password." msgstr "" -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 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 " @@ -6329,62 +6275,62 @@ msgid "" "SSH and have administrative privileges (sudo)." msgstr "" -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, python-brace-format msgid "Creating LDAP user failed: {error}" msgstr "" -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, python-brace-format msgid "Failed to add new user to {group} group: {error}" msgstr "" -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " "line. Blank lines and lines starting with # will be ignored." msgstr "" -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "" -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "" -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "" -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "" -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 msgid "Failed to change user status." msgstr "" -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "" -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, python-brace-format msgid "Failed to add new user to admin group: {error}" msgstr "" -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, python-brace-format msgid "Failed to restrict console access: {error}" msgstr "" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "" @@ -6668,15 +6614,15 @@ msgstr "" msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "" diff --git a/plinth/locale/sl/LC_MESSAGES/django.po b/plinth/locale/sl/LC_MESSAGES/django.po index c8e24673e..a0747528d 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: 2022-01-11 19:11-0500\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" "PO-Revision-Date: 2021-01-18 12:32+0000\n" "Last-Translator: ikmaak \n" "Language-Team: Slovenian ." msgstr "" -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -5027,10 +4944,21 @@ msgid "" "a>)." msgstr "" -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 msgid "Email Client" msgstr "" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -5361,24 +5289,28 @@ msgstr "" msgid "Updated security configuration" msgstr "" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "" -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." msgstr "" -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 msgid "Bookmarks" msgstr "" +#: plinth/modules/shaarli/manifest.py:12 +msgid "Shaarlier" +msgstr "" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -5585,7 +5517,9 @@ msgid "Software Installation Snapshots" msgstr "" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "" #: plinth/modules/snapshot/forms.py:32 @@ -5807,6 +5741,10 @@ msgstr "" msgid "Login" msgstr "" +#: plinth/modules/sso/views.py:101 +msgid "Logged out successfully." +msgstr "" + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -6558,17 +6496,19 @@ msgstr "" msgid "Authorization Password" msgstr "" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, python-brace-format +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "" -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 #, fuzzy #| msgid "Invalid hostname" msgid "Invalid password." msgstr "Neveljavno ime gostitelja" -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 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 " @@ -6577,62 +6517,62 @@ msgid "" "SSH and have administrative privileges (sudo)." msgstr "" -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, python-brace-format msgid "Creating LDAP user failed: {error}" msgstr "" -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, python-brace-format msgid "Failed to add new user to {group} group: {error}" msgstr "" -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " "line. Blank lines and lines starting with # will be ignored." msgstr "" -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "" -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "" -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "" -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "" -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 msgid "Failed to change user status." msgstr "" -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "" -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, python-brace-format msgid "Failed to add new user to admin group: {error}" msgstr "" -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, python-brace-format msgid "Failed to restrict console access: {error}" msgstr "" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "" @@ -6920,15 +6860,15 @@ msgstr "" msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 #, fuzzy #| msgid "Connection refused" @@ -7573,6 +7513,21 @@ msgstr "" msgid "Gujarati" msgstr "" +#, fuzzy +#~| msgid "Invalid hostname" +#~ msgid "Enter a valid domain" +#~ msgstr "Neveljavno ime gostitelja" + +#, fuzzy +#~| msgid "Invalid hostname" +#~ msgid "Enter a valid destination" +#~ msgstr "Neveljavno ime gostitelja" + +#, fuzzy +#~| msgid "Service Discovery" +#~ msgid "Service Alert" +#~ msgstr "Odkrivanje storitev" + #~ msgid "Cancel" #~ msgstr "Prekliči" diff --git a/plinth/locale/sq/LC_MESSAGES/django.po b/plinth/locale/sq/LC_MESSAGES/django.po index f9c5b2ef0..4289a17fa 100644 --- a/plinth/locale/sq/LC_MESSAGES/django.po +++ b/plinth/locale/sq/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-11 19:11-0500\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" "PO-Revision-Date: 2021-06-07 12:34+0000\n" "Last-Translator: Besnik Bleta \n" "Language-Team: Albanian imaps://imap.shembull.com." -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -5604,10 +5507,21 @@ msgstr "" "Google (https://www.google.com/settings/security/lesssecureapps)." -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 msgid "Email Client" msgstr "Klient Email" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -5977,11 +5891,11 @@ msgstr "Gabim në ujdisje hyrjeje të kufizuar: {exception}" msgid "Updated security configuration" msgstr "U përditësua formësim sigurie" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "Shaarli ju lejon të ruani dhe ndani faqerojtës me të tjerët." -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." @@ -5989,14 +5903,20 @@ msgstr "" "Mbani parasysh se Shaarli mbulon vetëm një llogari të vetme përdoruesi, të " "cilën duhet ta ujdisni gjatë vizitës fillestare." -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "Shaarli" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 msgid "Bookmarks" msgstr "Faqerojtës" +#: plinth/modules/shaarli/manifest.py:12 +#, fuzzy +#| msgid "Shaarli" +msgid "Shaarlier" +msgstr "Shaarli" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -6238,7 +6158,11 @@ msgid "Software Installation Snapshots" msgstr "Fotografime Instalimi Software-i" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +#, fuzzy +#| msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "" "Aktivizoni ose çaktivizoni fotografime para dhe pas instalimi software-i" @@ -6475,6 +6399,12 @@ msgstr "Hyrje Njëshe" msgid "Login" msgstr "Hyrje" +#: plinth/modules/sso/views.py:101 +#, fuzzy +#| msgid "Password changed successfully." +msgid "Logged out successfully." +msgstr "Fjalëkalimi u ndryshua me sukses." + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -7240,15 +7170,17 @@ msgstr "" msgid "Authorization Password" msgstr "Fjalëkalim Autorizimi" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, python-brace-format +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "" -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 msgid "Invalid password." msgstr "Fjalëkalim i pavlefshëm." -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 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 " @@ -7257,62 +7189,62 @@ msgid "" "SSH and have administrative privileges (sudo)." msgstr "" -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, python-brace-format msgid "Creating LDAP user failed: {error}" msgstr "" -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, python-brace-format msgid "Failed to add new user to {group} group: {error}" msgstr "" -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " "line. Blank lines and lines starting with # will be ignored." msgstr "" -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "" -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "" -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "" -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "" -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 msgid "Failed to change user status." msgstr "" -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "" -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, python-brace-format msgid "Failed to add new user to admin group: {error}" msgstr "" -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, python-brace-format msgid "Failed to restrict console access: {error}" msgstr "" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "" @@ -7596,15 +7528,15 @@ msgstr "" msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "Shtoni një shërbyes të ri" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "" @@ -8227,6 +8159,75 @@ msgstr "" msgid "Gujarati" msgstr "Gujaratase" +#, fuzzy +#~| msgid "unavailable" +#~ msgid "RoundCube availability" +#~ msgstr "jo i passhëm" + +#, fuzzy +#~| msgid "Enter a valid username." +#~ msgid "Enter a valid domain" +#~ msgstr "Jepni një emër përdoruesi të vlefshëm." + +#, fuzzy +#~| msgid "Enter a valid username." +#~ msgid "Enter a valid destination" +#~ msgstr "Jepni një emër përdoruesi të vlefshëm." + +#, fuzzy +#~| msgid "Domain" +#~ msgid "domain" +#~ msgstr "Përkatësi" + +#, fuzzy +#~| msgid "Service Type" +#~ msgid "Service Alert" +#~ msgstr "Lloj Shërbimi" + +#~ msgid "" +#~ "MLDonkey is a peer-to-peer file sharing application used to exchange " +#~ "large files. It can participate in multiple peer-to-peer networks " +#~ "including eDonkey, Kademlia, Overnet, BitTorrent and DirectConnect." +#~ msgstr "" +#~ "MLDonkey është një aplikacion dhënieje dhe marrjeje kartelash tek-për-" +#~ "tek, i përdorur për të shkëmbyer kartela të mëdha. Mund të marrë pjesë në " +#~ "rrjete tek-për-tek të shumtë, përshi eDonkey, Kademlia, Overnet, " +#~ "BitTorrent dhe DirectConnect." + +#~ msgid "" +#~ "Users belonging to admin and ed2k group can control it through the web " +#~ "interface. Users in the admin group can also control it through any of " +#~ "the separate mobile or desktop front-ends or a telnet interface. See " +#~ "manual." +#~ msgstr "" +#~ "Përdoruesit që janë pjesë e grupit ed2k mund ta kontrollojnë përmes " +#~ "ndërfaqes web. Përdoruesit në grupin e përgjegjësve mund ta kontrollojnë " +#~ "edhe përmes çfarëdo ndërfaqeje më vete, për celular ose desktop, ose " +#~ "telnet. Shihni doracakun." + +#, python-brace-format +#~ msgid "" +#~ "On {box_name}, downloaded files can be found in /var/lib/mldonkey/ " +#~ "directory." +#~ msgstr "" +#~ "Te {box_name}, kartelat e shkarkuara mund të gjenden te drejtoria /var/" +#~ "lib/mldonkey/." + +#~ msgid "Download files using eDonkey applications" +#~ msgstr "Shkarkoni kartela duke përdorur aplikacione eDonkey" + +#~ msgid "MLDonkey" +#~ msgstr "MLDonkey" + +#~ msgid "Peer-to-peer File Sharing" +#~ msgstr "Dhënie-marrje Kartelash Tek-për-tek" + +#~ msgid "KMLDonkey" +#~ msgstr "KMLDonkey" + +#~ msgid "AMLDonkey" +#~ msgstr "AMLDonkey" + #~ msgid "Mozilla Thunderbird" #~ msgstr "Mozilla Thunderbird" diff --git a/plinth/locale/sr/LC_MESSAGES/django.po b/plinth/locale/sr/LC_MESSAGES/django.po index 42dcdc170..10b5212d9 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: 2022-01-11 19:11-0500\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" "PO-Revision-Date: 2021-01-18 12:32+0000\n" "Last-Translator: ikmaak \n" "Language-Team: Serbian ." msgstr "" -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -4914,10 +4835,21 @@ msgid "" "a>)." msgstr "" -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 msgid "Email Client" msgstr "" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -5242,24 +5174,28 @@ msgstr "" msgid "Updated security configuration" msgstr "" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "" -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." msgstr "" -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 msgid "Bookmarks" msgstr "" +#: plinth/modules/shaarli/manifest.py:12 +msgid "Shaarlier" +msgstr "" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -5466,7 +5402,9 @@ msgid "Software Installation Snapshots" msgstr "" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "" #: plinth/modules/snapshot/forms.py:32 @@ -5686,6 +5624,10 @@ msgstr "" msgid "Login" msgstr "" +#: plinth/modules/sso/views.py:101 +msgid "Logged out successfully." +msgstr "" + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -6419,15 +6361,17 @@ msgstr "" msgid "Authorization Password" msgstr "" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, python-brace-format +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "" -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 msgid "Invalid password." msgstr "" -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 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 " @@ -6436,62 +6380,62 @@ msgid "" "SSH and have administrative privileges (sudo)." msgstr "" -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, python-brace-format msgid "Creating LDAP user failed: {error}" msgstr "" -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, python-brace-format msgid "Failed to add new user to {group} group: {error}" msgstr "" -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " "line. Blank lines and lines starting with # will be ignored." msgstr "" -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "" -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "" -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "" -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "" -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 msgid "Failed to change user status." msgstr "" -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "" -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, python-brace-format msgid "Failed to add new user to admin group: {error}" msgstr "" -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, python-brace-format msgid "Failed to restrict console access: {error}" msgstr "" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "" @@ -6775,15 +6719,15 @@ msgstr "" msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "" @@ -7400,6 +7344,11 @@ msgstr "" msgid "Gujarati" msgstr "" +#, fuzzy +#~| msgid "Service Discovery" +#~ msgid "Service Alert" +#~ msgstr "Otkrivanje Servisa" + #, fuzzy #~| msgid "Delete Archive" #~ msgid "Delete selected" diff --git a/plinth/locale/sv/LC_MESSAGES/django.po b/plinth/locale/sv/LC_MESSAGES/django.po index 53edd969c..055abe1a2 100644 --- a/plinth/locale/sv/LC_MESSAGES/django.po +++ b/plinth/locale/sv/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-11 19:11-0500\n" -"PO-Revision-Date: 2022-01-10 17:57+0000\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" +"PO-Revision-Date: 2022-01-24 12:53+0000\n" "Last-Translator: Michael Breidenbach \n" "Language-Team: Swedish \n" @@ -17,11 +17,11 @@ 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.10.1\n" +"X-Generator: Weblate 4.11-dev\n" #: doc/dev/_templates/layout.html:11 msgid "Page source" -msgstr "Sid källa" +msgstr "Sidkälla" #: plinth/context_processors.py:23 plinth/views.py:84 msgid "FreedomBox" @@ -30,7 +30,7 @@ msgstr "FreedomBox" #: plinth/daemon.py:104 #, python-brace-format msgid "Service {service_name} is running" -msgstr "Tjänsten service {service_name} körs" +msgstr "Tjänsten {service_name} körs" #: plinth/daemon.py:158 #, python-brace-format @@ -120,12 +120,12 @@ msgstr "{box_name} Webbgränssnitt (Plinth)" #: plinth/modules/apache/components.py:122 #, python-brace-format msgid "Access URL {url} on tcp{kind}" -msgstr "Ansluter till adress {url} on tcp{kind}" +msgstr "Anslut till adress {url} på tcp{kind}" #: plinth/modules/apache/components.py:125 #, python-brace-format msgid "Access URL {url}" -msgstr "Ansluter till adress {url}" +msgstr "Anslut till adress {url}" #: plinth/modules/avahi/__init__.py:26 #, python-brace-format @@ -842,7 +842,7 @@ msgstr "" #: plinth/modules/bepasty/forms.py:27 #: plinth/modules/bepasty/templates/bepasty.html:30 -#: plinth/modules/users/forms.py:102 plinth/modules/users/forms.py:228 +#: plinth/modules/users/forms.py:108 plinth/modules/users/forms.py:234 msgid "Permissions" msgstr "Behörigheter" @@ -929,7 +929,7 @@ msgstr "Admin" msgid "Configuration updated." msgstr "Konfiguration uppdaterad." -#: plinth/modules/bepasty/views.py:93 plinth/modules/email_server/views.py:107 +#: plinth/modules/bepasty/views.py:93 plinth/modules/email_server/views.py:41 #: plinth/modules/gitweb/views.py:117 plinth/modules/searx/views.py:41 #: plinth/modules/searx/views.py:52 plinth/modules/tor/views.py:159 #: plinth/modules/zoph/views.py:72 @@ -1026,10 +1026,10 @@ msgstr "Uppdatera IP-adress och domäner" #: plinth/modules/bind/views.py:71 plinth/modules/coturn/views.py:39 #: plinth/modules/deluge/views.py:42 plinth/modules/dynamicdns/views.py:169 -#: plinth/modules/ejabberd/views.py:85 plinth/modules/email_server/views.py:104 +#: plinth/modules/ejabberd/views.py:85 plinth/modules/email_server/views.py:38 #: plinth/modules/matrixsynapse/views.py:124 plinth/modules/mumble/views.py:28 #: plinth/modules/pagekite/forms.py:78 plinth/modules/quassel/views.py:28 -#: plinth/modules/shadowsocks/views.py:59 +#: plinth/modules/roundcube/views.py:32 plinth/modules/shadowsocks/views.py:59 #: plinth/modules/transmission/views.py:47 plinth/modules/ttrss/views.py:26 #: plinth/modules/wordpress/views.py:37 msgid "Configuration updated" @@ -1492,18 +1492,15 @@ msgid "Diagnostics" msgstr "Diagnostik" #: plinth/modules/diagnostics/__init__.py:97 -#: plinth/modules/email_server/templates/email_server.html:37 msgid "passed" msgstr "passerade" #: plinth/modules/diagnostics/__init__.py:98 -#: plinth/modules/email_server/templates/email_server.html:35 #: plinth/modules/networks/views.py:49 msgid "failed" msgstr "misslyckades" #: plinth/modules/diagnostics/__init__.py:99 -#: plinth/modules/email_server/templates/email_server.html:33 msgid "error" msgstr "fel" @@ -2034,43 +2031,23 @@ msgstr "E-postserver" msgid "Powered by Postfix, Dovecot & Rspamd" msgstr "Drivs av Postfix, Dovecot och Rspamd" -#: plinth/modules/email_server/audit/ldap.py:69 +#: plinth/modules/email_server/audit/ldap.py:68 msgid "Postfix-Dovecot SASL integration" msgstr "Integrering av Postfix-Dovecot SASL" -#: plinth/modules/email_server/audit/ldap.py:70 +#: plinth/modules/email_server/audit/ldap.py:69 msgid "Postfix alias maps" msgstr "Postfix alias kartor" -#: plinth/modules/email_server/audit/rcube.py:31 -msgid "RoundCube availability" -msgstr "RoundCube tillgänglighet" - -#: plinth/modules/email_server/audit/rcube.py:32 -msgid "RoundCube configured for FreedomBox email" -msgstr "RoundCube konfigurerad för FreedomBox e-post" - #: plinth/modules/email_server/audit/spam.py:87 msgid "Inbound and outbound mail filters" msgstr "Filter för inkommande och utgående e-post" -#: plinth/modules/email_server/forms.py:17 -msgid "Enter a valid domain" -msgstr "Ange ett giltigt domän" - -#: plinth/modules/email_server/forms.py:20 -msgid "Enter a valid destination" -msgstr "Ange ett giltigt destination" - #: plinth/modules/email_server/forms.py:24 -msgid "domain" -msgstr "domain" - -#: plinth/modules/email_server/forms.py:38 msgid "Primary domain" msgstr "Primär domän" -#: plinth/modules/email_server/forms.py:40 +#: plinth/modules/email_server/forms.py:26 msgid "" "Mails are received for all domains configured in the system. Among these, " "select the most important one." @@ -2078,34 +2055,34 @@ msgstr "" "E-post tas emot för alla domäner som konfigurerats i systemet. Välj den " "viktigaste av dessa." -#: plinth/modules/email_server/forms.py:48 +#: plinth/modules/email_server/forms.py:34 msgid "New alias (without @domain)" msgstr "Nytt alias (utan @domän)" -#: plinth/modules/email_server/forms.py:55 +#: plinth/modules/email_server/forms.py:41 msgid "Contains illegal characters" msgstr "Innehåller otillåtna tecken" -#: plinth/modules/email_server/forms.py:58 +#: plinth/modules/email_server/forms.py:44 msgid "Must start and end with a-z or 0-9" msgstr "Måste börja och sluta med a-z eller 0-9" -#: plinth/modules/email_server/forms.py:61 +#: plinth/modules/email_server/forms.py:47 msgid "Cannot be a number" msgstr "Kan inte vara ett nummer" -#: plinth/modules/email_server/forms.py:71 +#: plinth/modules/email_server/forms.py:57 msgid "Aliases" msgstr "Aliasnamn" -#: plinth/modules/email_server/forms.py:83 +#: plinth/modules/email_server/forms.py:69 #: 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 +#: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:29 msgid "Enabled" msgstr "Aktiverad" -#: plinth/modules/email_server/forms.py:86 +#: plinth/modules/email_server/forms.py:72 #: plinth/modules/firewall/templates/firewall.html:57 #: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:29 @@ -2114,7 +2091,7 @@ msgid "Disabled" msgstr "Inaktiverad" #: plinth/modules/email_server/manifest.py:8 -#: plinth/modules/roundcube/__init__.py:52 +#: plinth/modules/roundcube/__init__.py:54 #: plinth/modules/roundcube/manifest.py:6 msgid "Roundcube" msgstr "Roundcube" @@ -2133,7 +2110,7 @@ msgid "FairEmail" msgstr "FairEmail" #: plinth/modules/email_server/templates/email_alias.html:13 -#: plinth/modules/email_server/templates/email_server.html:20 +#: plinth/modules/email_server/templates/email_server.html:15 msgid "Manage Aliases" msgstr "Hantera alias" @@ -2157,27 +2134,10 @@ msgstr "Skapa ett nytt e -postalias" msgid "Add" msgstr "Lägg till" -#: plinth/modules/email_server/templates/email_server.html:15 +#: plinth/modules/email_server/templates/email_server.html:10 msgid "Manage Spam" msgstr "Hantera skräppost" -#: plinth/modules/email_server/templates/email_server.html:26 -msgid "Service Alert" -msgstr "Servicevarning" - -#: plinth/modules/email_server/templates/email_server.html:46 -msgid "Repair" -msgstr "Reparera" - -#: plinth/modules/email_server/views.py:73 -#, python-brace-format -msgid "Internal error in {0}" -msgstr "Internt fel i {0}" - -#: plinth/modules/email_server/views.py:76 -msgid "Check syslog for more information" -msgstr "Kontrollera syslog för mer information" - #: plinth/modules/firewall/__init__.py:26 #, python-brace-format msgid "" @@ -2465,7 +2425,7 @@ msgstr "Dokumentation" #: plinth/templates/help-menu.html:21 plinth/templates/index.html:128 msgctxt "User guide" msgid "Manual" -msgstr "Handledning" +msgstr "Handbok" #: plinth/modules/help/__init__.py:43 #: plinth/modules/help/templates/help_support.html:9 @@ -3230,10 +3190,14 @@ msgstr "" "TURN-servern för Matrix Synapse. Inaktivera detta om du vill använda en " "annan STUN/TURN-server." -#: plinth/modules/matrixsynapse/manifest.py:12 +#: plinth/modules/matrixsynapse/manifest.py:14 msgid "Element" msgstr "Element" +#: plinth/modules/matrixsynapse/manifest.py:48 +msgid "FluffyChat" +msgstr "" + #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 #: plinth/modules/snapshot/templates/snapshot.html:12 #: plinth/templates/app.html:46 @@ -3592,55 +3556,6 @@ msgstr "Den angivna katalogen finns inte." msgid "Updated media directory" msgstr "Uppdaterad mediekatalog" -#: plinth/modules/mldonkey/__init__.py:23 -msgid "" -"MLDonkey is a peer-to-peer file sharing application used to exchange large " -"files. It can participate in multiple peer-to-peer networks including " -"eDonkey, Kademlia, Overnet, BitTorrent and DirectConnect." -msgstr "" -"MLDonkey är en peer-to-peer-fildelning program som används för att utbyta " -"stora filer. Det kan delta i flera peer-to-peer-nätverk, inklusive eDonkey, " -"Kademlia, Overnet, BitTorrent och DirectConnect." - -#: plinth/modules/mldonkey/__init__.py:26 -msgid "" -"Users belonging to admin and ed2k group can control it through the web " -"interface. Users in the admin group can also control it through any of the " -"separate mobile or desktop front-ends or a telnet interface. See manual." -msgstr "" -"Användare som tillhör admin och ED2K-gruppen kan styra den via " -"webbgränssnittet. Användare i administratörsgruppen kan också styra den via " -"någon av de separata mobil-eller skrivbords frontend-ändarna eller ett " -"Telnet-gränssnitt. Se manualen." - -#: plinth/modules/mldonkey/__init__.py:31 -#, python-brace-format -msgid "" -"On {box_name}, downloaded files can be found in /var/lib/mldonkey/ directory." -msgstr "" -"På {box_name}, kan nedladdade filer hittas i /var/lib/mldonkey/ mappen." - -#: plinth/modules/mldonkey/__init__.py:53 -msgid "Download files using eDonkey applications" -msgstr "Ladda ner filer med eDonkey program" - -#: plinth/modules/mldonkey/__init__.py:56 -#: plinth/modules/mldonkey/manifest.py:11 -msgid "MLDonkey" -msgstr "Mldonkey" - -#: plinth/modules/mldonkey/__init__.py:58 -msgid "Peer-to-peer File Sharing" -msgstr "Peer-to-peer fildelning" - -#: plinth/modules/mldonkey/manifest.py:18 -msgid "KMLDonkey" -msgstr "KML Donkey" - -#: plinth/modules/mldonkey/manifest.py:30 -msgid "AMLDonkey" -msgstr "AMLDonkey" - #: plinth/modules/mumble/__init__.py:26 msgid "" "Mumble is an open source, low-latency, encrypted, high quality voice chat " @@ -4938,7 +4853,7 @@ msgstr "Virtuellt privat nätverk" msgid "" "Download Profile" msgstr "" -"Ladda ner profil" +"Nedladdningsprofil" #: plinth/modules/openvpn/manifest.py:52 msgid "Tunnelblick" @@ -5255,11 +5170,11 @@ msgstr "" msgid "System Monitoring" msgstr "Systemövervakning" -#: plinth/modules/power/__init__.py:13 +#: plinth/modules/power/__init__.py:14 msgid "Restart or shut down the system." msgstr "Starta om eller stänga av systemet." -#: plinth/modules/power/__init__.py:30 +#: plinth/modules/power/__init__.py:31 msgid "Power" msgstr "Ström" @@ -5358,7 +5273,7 @@ msgstr "Webbproxy" #: plinth/modules/privoxy/__init__.py:114 #, python-brace-format msgid "Access {url} with proxy {proxy} on tcp{kind}" -msgstr "Åtkomst till {url} med proxy {proxy} på TCP {kind}" +msgstr "Anslut till {url} med proxy {proxy} på TCP {kind}" #: plinth/modules/quassel/__init__.py:27 #, python-brace-format @@ -5506,9 +5421,9 @@ msgstr "" #: plinth/modules/radicale/views.py:35 msgid "Access rights configuration updated" -msgstr "Konfiguration av åtkomsträttigheter uppdaterad" +msgstr "Konfiguration av åtkomsträttigheter uppdaterat" -#: plinth/modules/roundcube/__init__.py:19 +#: plinth/modules/roundcube/__init__.py:21 msgid "" "Roundcube webmail is a browser-based multilingual IMAP client with an " "application-like user interface. It provides full functionality you expect " @@ -5520,7 +5435,7 @@ msgstr "" "förväntar dig från en e-postklient, inklusive MIME-stöd, adressbok, " "mappmanipulering, meddelande sökning och stavningskontroll." -#: plinth/modules/roundcube/__init__.py:24 +#: plinth/modules/roundcube/__init__.py:26 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 " @@ -5534,7 +5449,7 @@ msgstr "" "kryptering (rekommenderas), fyll server fält som imaps://imap.exempel." "kom." -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -5550,10 +5465,21 @@ msgstr "" "security/lesssecureapps\" >https://www.Google.com/settings/Security/" "lesssecureapps)." -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 msgid "Email Client" msgstr "E-postklient" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -5597,7 +5523,7 @@ msgstr "" #: plinth/modules/samba/__init__.py:56 msgid "Access to the private shares" -msgstr "Tillgång till de privata shares" +msgstr "Tillgång till privata delningar" #: plinth/modules/samba/__init__.py:59 msgid "Samba" @@ -5683,7 +5609,7 @@ msgstr "Resursnamn" #: plinth/modules/samba/templates/samba.html:141 msgid "Action" -msgstr "Åtgärder" +msgstr "Åtgärd" #: plinth/modules/samba/views.py:33 msgid "FreedomBox OS disk" @@ -5923,11 +5849,11 @@ msgstr "Fel vid inställning av begränsad åtkomst: {exception}" msgid "Updated security configuration" msgstr "Uppdaterad säkerhetskonfiguration" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "Shaarli kan du spara och dela bokmärken." -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." @@ -5935,14 +5861,20 @@ msgstr "" "Observera att Shaarli endast stöd för ett enskilt användarkonto, som du " "behöver för att ställa den första besök." -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "Shaarli" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 msgid "Bookmarks" msgstr "Bokmärken" +#: plinth/modules/shaarli/manifest.py:12 +#, fuzzy +#| msgid "Shaarli" +msgid "Shaarlier" +msgstr "Shaarli" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -6180,7 +6112,11 @@ msgid "Software Installation Snapshots" msgstr "Ögonblicksbilder av programvaru installation" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +#, fuzzy +#| msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "" "Aktivera eller inaktivera ögonblicksbilder före och efter " "programvaruinstallationen" @@ -6417,6 +6353,12 @@ msgstr "Enkel inloggning på" msgid "Login" msgstr "Logga in" +#: plinth/modules/sso/views.py:101 +#, fuzzy +#| msgid "Password changed successfully." +msgid "Logged out successfully." +msgstr "Lösenordet har ändrats." + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -7032,8 +6974,7 @@ msgstr "Aktivera automatisk uppdatering" #: plinth/modules/upgrades/forms.py:16 msgid "When enabled, FreedomBox automatically updates once a day." -msgstr "" -"När den är aktiverad uppdateras FreedomBox automatiskt en gång om dagen." +msgstr "När den är aktiverad uppdateras FreedomBox automatiskt dagligen." #: plinth/modules/upgrades/forms.py:19 msgid "Enable auto-update to next stable release" @@ -7044,8 +6985,8 @@ msgid "" "When enabled, FreedomBox will update to the next stable distribution release " "when it is available." msgstr "" -"När det är aktiverat kommer FreedomBox att uppdatera till nästa stabila " -"distributionsutgåva när den är tillgänglig." +"När aktiverad, kommer FreedomBox att uppdatera till nästa stabila " +"distributionsutgåva om tillgänglig." #: plinth/modules/upgrades/forms.py:34 #: plinth/modules/upgrades/templates/upgrades_configure.html:89 @@ -7241,7 +7182,7 @@ msgstr "Användare och grupper" #: plinth/modules/users/__init__.py:77 msgid "Access to all services and system settings" -msgstr "Tillgång till alla tjänster och Systeminställningar" +msgstr "Tillgång till alla tjänster och systeminställningar" #: plinth/modules/users/__init__.py:113 #, python-brace-format @@ -7267,15 +7208,18 @@ msgstr "" msgid "Authorization Password" msgstr "Auktoriseringslösenord" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, fuzzy, python-brace-format +#| msgid "Enter your current password to authorize account modifications." +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "Ange ditt nuvarande lösenord för att auktorisera kontomodifieringar." -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 msgid "Invalid password." msgstr "Ogiltigt lösenord." -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 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 " @@ -7289,21 +7233,21 @@ msgstr "" "administratörsgruppen kommer att kunna logga in på alla tjänster. De kan " "också logga in på systemet via SSH och har administratörsprivilegier (sudo)." -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, python-brace-format msgid "Creating LDAP user failed: {error}" msgstr "Det gick inte att skapa LDAP-användare: {error}" -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, python-brace-format msgid "Failed to add new user to {group} group: {error}" msgstr "Det gick inte att lägga till ny användare i gruppen {group} : {error}" -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "Auktoriserade SSH-nycklar" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " @@ -7313,42 +7257,42 @@ msgstr "" "systemet utan att använda ett lösenord. Du kan ange flera nycklar, en på " "varje rad. Tomma rader och rader som börjar med # kommer att ignoreras." -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "Det gick inte att byta namn på LDAP-användare." -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "Det gick inte att ta bort användare från gruppen." -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "Det gick inte att lägga till användare i gruppen." -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "Det går inte att ange SSH-nycklar." -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 msgid "Failed to change user status." msgstr "Det gick inte att ändra användarstatus." -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "Det gick inte att ändra användarlösenordet för LDAP." -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, python-brace-format msgid "Failed to add new user to admin group: {error}" msgstr "" "Det gick inte att lägga till ny användare i administratörsgruppen: {error}" -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, python-brace-format msgid "Failed to restrict console access: {error}" msgstr "Det gick inte att begränsa konsolåtkomst: {error}" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "Användarkonto skapat, du är nu inloggad" @@ -7668,15 +7612,15 @@ msgstr "Servrar som %(box_name)s kommer att ansluta till:" msgid "Endpoint" msgstr "Slutpunkt" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 msgid "No connections to remote servers are configured yet." msgstr "Inga anslutningar till fjärrservrar har konfigurerats ännu." -#: plinth/modules/wireguard/templates/wireguard.html:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "Lägga till en ny server" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "Lägga till anslutning till server" @@ -8372,6 +8316,76 @@ msgstr "%(percentage)s %% färdigt" msgid "Gujarati" msgstr "Gujarati" +#~ msgid "RoundCube availability" +#~ msgstr "RoundCube tillgänglighet" + +#~ msgid "RoundCube configured for FreedomBox email" +#~ msgstr "RoundCube konfigurerad för FreedomBox e-post" + +#~ msgid "Enter a valid domain" +#~ msgstr "Ange ett giltigt domän" + +#~ msgid "Enter a valid destination" +#~ msgstr "Ange ett giltigt destination" + +#~ msgid "domain" +#~ msgstr "domän" + +#~ msgid "Service Alert" +#~ msgstr "Servicevarning" + +#~ msgid "Repair" +#~ msgstr "Reparera" + +#, python-brace-format +#~ msgid "Internal error in {0}" +#~ msgstr "Internt fel i {0}" + +#~ msgid "Check syslog for more information" +#~ msgstr "Kontrollera syslog för mer information" + +#~ msgid "" +#~ "MLDonkey is a peer-to-peer file sharing application used to exchange " +#~ "large files. It can participate in multiple peer-to-peer networks " +#~ "including eDonkey, Kademlia, Overnet, BitTorrent and DirectConnect." +#~ msgstr "" +#~ "MLDonkey är en peer-to-peer-fildelning program som används för att utbyta " +#~ "stora filer. Det kan delta i flera peer-to-peer-nätverk, inklusive " +#~ "eDonkey, Kademlia, Overnet, BitTorrent och DirectConnect." + +#~ msgid "" +#~ "Users belonging to admin and ed2k group can control it through the web " +#~ "interface. Users in the admin group can also control it through any of " +#~ "the separate mobile or desktop front-ends or a telnet interface. See " +#~ "manual." +#~ msgstr "" +#~ "Användare som tillhör admin och ED2K-gruppen kan styra den via " +#~ "webbgränssnittet. Användare i administratörsgruppen kan också styra den " +#~ "via någon av de separata mobil-eller skrivbords frontend-ändarna eller " +#~ "ett Telnet-gränssnitt. Se manualen." + +#, python-brace-format +#~ msgid "" +#~ "On {box_name}, downloaded files can be found in /var/lib/mldonkey/ " +#~ "directory." +#~ msgstr "" +#~ "På {box_name}, kan nedladdade filer hittas i /var/lib/mldonkey/ mappen." + +#~ msgid "Download files using eDonkey applications" +#~ msgstr "Ladda ner filer med eDonkey program" + +#~ msgid "MLDonkey" +#~ msgstr "Mldonkey" + +#~ msgid "Peer-to-peer File Sharing" +#~ msgstr "Peer-to-peer fildelning" + +#~ msgid "KMLDonkey" +#~ msgstr "KML Donkey" + +#~ msgid "AMLDonkey" +#~ msgstr "AMLDonkey" + #~ msgid "Mozilla Thunderbird" #~ msgstr "Mozilla Thunderbird" diff --git a/plinth/locale/ta/LC_MESSAGES/django.po b/plinth/locale/ta/LC_MESSAGES/django.po index a36ccc4b2..47c67be46 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: 2022-01-11 19:11-0500\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -761,7 +761,7 @@ msgstr "" #: plinth/modules/bepasty/forms.py:27 #: plinth/modules/bepasty/templates/bepasty.html:30 -#: plinth/modules/users/forms.py:102 plinth/modules/users/forms.py:228 +#: plinth/modules/users/forms.py:108 plinth/modules/users/forms.py:234 msgid "Permissions" msgstr "" @@ -844,7 +844,7 @@ msgstr "" msgid "Configuration updated." msgstr "" -#: plinth/modules/bepasty/views.py:93 plinth/modules/email_server/views.py:107 +#: plinth/modules/bepasty/views.py:93 plinth/modules/email_server/views.py:41 #: plinth/modules/gitweb/views.py:117 plinth/modules/searx/views.py:41 #: plinth/modules/searx/views.py:52 plinth/modules/tor/views.py:159 #: plinth/modules/zoph/views.py:72 @@ -934,10 +934,10 @@ msgstr "" #: plinth/modules/bind/views.py:71 plinth/modules/coturn/views.py:39 #: plinth/modules/deluge/views.py:42 plinth/modules/dynamicdns/views.py:169 -#: plinth/modules/ejabberd/views.py:85 plinth/modules/email_server/views.py:104 +#: plinth/modules/ejabberd/views.py:85 plinth/modules/email_server/views.py:38 #: plinth/modules/matrixsynapse/views.py:124 plinth/modules/mumble/views.py:28 #: plinth/modules/pagekite/forms.py:78 plinth/modules/quassel/views.py:28 -#: plinth/modules/shadowsocks/views.py:59 +#: plinth/modules/roundcube/views.py:32 plinth/modules/shadowsocks/views.py:59 #: plinth/modules/transmission/views.py:47 plinth/modules/ttrss/views.py:26 #: plinth/modules/wordpress/views.py:37 msgid "Configuration updated" @@ -1341,18 +1341,15 @@ msgid "Diagnostics" msgstr "" #: plinth/modules/diagnostics/__init__.py:97 -#: plinth/modules/email_server/templates/email_server.html:37 msgid "passed" msgstr "" #: plinth/modules/diagnostics/__init__.py:98 -#: plinth/modules/email_server/templates/email_server.html:35 #: plinth/modules/networks/views.py:49 msgid "failed" msgstr "" #: plinth/modules/diagnostics/__init__.py:99 -#: plinth/modules/email_server/templates/email_server.html:33 msgid "error" msgstr "" @@ -1807,76 +1804,56 @@ msgstr "" msgid "Powered by Postfix, Dovecot & Rspamd" msgstr "" -#: plinth/modules/email_server/audit/ldap.py:69 +#: plinth/modules/email_server/audit/ldap.py:68 msgid "Postfix-Dovecot SASL integration" msgstr "" -#: plinth/modules/email_server/audit/ldap.py:70 +#: plinth/modules/email_server/audit/ldap.py:69 msgid "Postfix alias maps" msgstr "" -#: plinth/modules/email_server/audit/rcube.py:31 -msgid "RoundCube availability" -msgstr "" - -#: plinth/modules/email_server/audit/rcube.py:32 -msgid "RoundCube configured for FreedomBox email" -msgstr "" - #: plinth/modules/email_server/audit/spam.py:87 msgid "Inbound and outbound mail filters" msgstr "" -#: plinth/modules/email_server/forms.py:17 -msgid "Enter a valid domain" -msgstr "" - -#: plinth/modules/email_server/forms.py:20 -msgid "Enter a valid destination" -msgstr "" - #: plinth/modules/email_server/forms.py:24 -msgid "domain" -msgstr "" - -#: plinth/modules/email_server/forms.py:38 msgid "Primary domain" msgstr "" -#: plinth/modules/email_server/forms.py:40 +#: plinth/modules/email_server/forms.py:26 msgid "" "Mails are received for all domains configured in the system. Among these, " "select the most important one." msgstr "" -#: plinth/modules/email_server/forms.py:48 +#: plinth/modules/email_server/forms.py:34 msgid "New alias (without @domain)" msgstr "" -#: plinth/modules/email_server/forms.py:55 +#: plinth/modules/email_server/forms.py:41 msgid "Contains illegal characters" msgstr "" -#: plinth/modules/email_server/forms.py:58 +#: plinth/modules/email_server/forms.py:44 msgid "Must start and end with a-z or 0-9" msgstr "" -#: plinth/modules/email_server/forms.py:61 +#: plinth/modules/email_server/forms.py:47 msgid "Cannot be a number" msgstr "" -#: plinth/modules/email_server/forms.py:71 +#: plinth/modules/email_server/forms.py:57 msgid "Aliases" msgstr "" -#: plinth/modules/email_server/forms.py:83 +#: plinth/modules/email_server/forms.py:69 #: 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 +#: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:29 msgid "Enabled" msgstr "" -#: plinth/modules/email_server/forms.py:86 +#: plinth/modules/email_server/forms.py:72 #: plinth/modules/firewall/templates/firewall.html:57 #: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:29 @@ -1885,7 +1862,7 @@ msgid "Disabled" msgstr "" #: plinth/modules/email_server/manifest.py:8 -#: plinth/modules/roundcube/__init__.py:52 +#: plinth/modules/roundcube/__init__.py:54 #: plinth/modules/roundcube/manifest.py:6 msgid "Roundcube" msgstr "" @@ -1904,7 +1881,7 @@ msgid "FairEmail" msgstr "" #: plinth/modules/email_server/templates/email_alias.html:13 -#: plinth/modules/email_server/templates/email_server.html:20 +#: plinth/modules/email_server/templates/email_server.html:15 msgid "Manage Aliases" msgstr "" @@ -1928,27 +1905,10 @@ msgstr "" msgid "Add" msgstr "" -#: plinth/modules/email_server/templates/email_server.html:15 +#: plinth/modules/email_server/templates/email_server.html:10 msgid "Manage Spam" msgstr "" -#: plinth/modules/email_server/templates/email_server.html:26 -msgid "Service Alert" -msgstr "" - -#: plinth/modules/email_server/templates/email_server.html:46 -msgid "Repair" -msgstr "" - -#: plinth/modules/email_server/views.py:73 -#, python-brace-format -msgid "Internal error in {0}" -msgstr "" - -#: plinth/modules/email_server/views.py:76 -msgid "Check syslog for more information" -msgstr "" - #: plinth/modules/firewall/__init__.py:26 #, python-brace-format msgid "" @@ -2841,10 +2801,14 @@ msgid "" "TURN server." msgstr "" -#: plinth/modules/matrixsynapse/manifest.py:12 +#: plinth/modules/matrixsynapse/manifest.py:14 msgid "Element" msgstr "" +#: plinth/modules/matrixsynapse/manifest.py:48 +msgid "FluffyChat" +msgstr "" + #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 #: plinth/modules/snapshot/templates/snapshot.html:12 #: plinth/templates/app.html:46 @@ -3143,47 +3107,6 @@ msgstr "" msgid "Updated media directory" msgstr "" -#: plinth/modules/mldonkey/__init__.py:23 -msgid "" -"MLDonkey is a peer-to-peer file sharing application used to exchange large " -"files. It can participate in multiple peer-to-peer networks including " -"eDonkey, Kademlia, Overnet, BitTorrent and DirectConnect." -msgstr "" - -#: plinth/modules/mldonkey/__init__.py:26 -msgid "" -"Users belonging to admin and ed2k group can control it through the web " -"interface. Users in the admin group can also control it through any of the " -"separate mobile or desktop front-ends or a telnet interface. See manual." -msgstr "" - -#: plinth/modules/mldonkey/__init__.py:31 -#, python-brace-format -msgid "" -"On {box_name}, downloaded files can be found in /var/lib/mldonkey/ directory." -msgstr "" - -#: plinth/modules/mldonkey/__init__.py:53 -msgid "Download files using eDonkey applications" -msgstr "" - -#: plinth/modules/mldonkey/__init__.py:56 -#: plinth/modules/mldonkey/manifest.py:11 -msgid "MLDonkey" -msgstr "" - -#: plinth/modules/mldonkey/__init__.py:58 -msgid "Peer-to-peer File Sharing" -msgstr "" - -#: plinth/modules/mldonkey/manifest.py:18 -msgid "KMLDonkey" -msgstr "" - -#: plinth/modules/mldonkey/manifest.py:30 -msgid "AMLDonkey" -msgstr "" - #: plinth/modules/mumble/__init__.py:26 msgid "" "Mumble is an open source, low-latency, encrypted, high quality voice chat " @@ -4580,11 +4503,11 @@ msgstr "" msgid "System Monitoring" msgstr "" -#: plinth/modules/power/__init__.py:13 +#: plinth/modules/power/__init__.py:14 msgid "Restart or shut down the system." msgstr "" -#: plinth/modules/power/__init__.py:30 +#: plinth/modules/power/__init__.py:31 msgid "Power" msgstr "" @@ -4783,7 +4706,7 @@ msgstr "" msgid "Access rights configuration updated" msgstr "" -#: plinth/modules/roundcube/__init__.py:19 +#: plinth/modules/roundcube/__init__.py:21 msgid "" "Roundcube webmail is a browser-based multilingual IMAP client with an " "application-like user interface. It provides full functionality you expect " @@ -4791,7 +4714,7 @@ msgid "" "manipulation, message searching and spell checking." msgstr "" -#: plinth/modules/roundcube/__init__.py:24 +#: plinth/modules/roundcube/__init__.py:26 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 " @@ -4800,7 +4723,7 @@ msgid "" "code>." msgstr "" -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -4810,10 +4733,21 @@ msgid "" "a>)." msgstr "" -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 msgid "Email Client" msgstr "" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -5136,24 +5070,28 @@ msgstr "" msgid "Updated security configuration" msgstr "" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "" -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." msgstr "" -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 msgid "Bookmarks" msgstr "" +#: plinth/modules/shaarli/manifest.py:12 +msgid "Shaarlier" +msgstr "" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -5360,7 +5298,9 @@ msgid "Software Installation Snapshots" msgstr "" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "" #: plinth/modules/snapshot/forms.py:32 @@ -5578,6 +5518,10 @@ msgstr "" msgid "Login" msgstr "" +#: plinth/modules/sso/views.py:101 +msgid "Logged out successfully." +msgstr "" + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -6311,15 +6255,17 @@ msgstr "" msgid "Authorization Password" msgstr "" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, python-brace-format +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "" -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 msgid "Invalid password." msgstr "" -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 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 " @@ -6328,62 +6274,62 @@ msgid "" "SSH and have administrative privileges (sudo)." msgstr "" -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, python-brace-format msgid "Creating LDAP user failed: {error}" msgstr "" -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, python-brace-format msgid "Failed to add new user to {group} group: {error}" msgstr "" -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " "line. Blank lines and lines starting with # will be ignored." msgstr "" -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "" -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "" -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "" -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "" -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 msgid "Failed to change user status." msgstr "" -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "" -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, python-brace-format msgid "Failed to add new user to admin group: {error}" msgstr "" -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, python-brace-format msgid "Failed to restrict console access: {error}" msgstr "" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "" @@ -6667,15 +6613,15 @@ msgstr "" msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "" diff --git a/plinth/locale/te/LC_MESSAGES/django.po b/plinth/locale/te/LC_MESSAGES/django.po index 2769ed61a..efc1ccebc 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: 2022-01-11 19:11-0500\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" "PO-Revision-Date: 2021-05-17 18:31+0000\n" "Last-Translator: chilumula vamshi krishna \n" "Language-Team: Telugu ." msgstr "" -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -5458,10 +5365,21 @@ msgid "" "a>)." msgstr "" -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 msgid "Email Client" msgstr "ఇమెయిల్ క్లయింట్" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -5851,27 +5769,33 @@ msgstr "సమయమండలం అమర్పులోపం: {exception}" msgid "Updated security configuration" msgstr "సాధారణ ఆకృతీకరణ" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "రు బుక్మార్క్లు ని సేవ్ మరియు పంచుకొనుటకు షార్లి అనుమతిస్తుంది." -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." msgstr "" -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "షార్లి" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 #, fuzzy msgid "Bookmarks" msgstr "" "గుర్తుంచు\n" " (Shaarli)" +#: plinth/modules/shaarli/manifest.py:12 +#, fuzzy +#| msgid "Shaarli" +msgid "Shaarlier" +msgstr "షార్లి" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -6110,7 +6034,11 @@ msgid "Software Installation Snapshots" msgstr "సాఫ్ట్వేర్ సంస్థాపన స్నాప్షాట్లు" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +#, fuzzy +#| msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "సాఫ్ట్వేర్ ఇన్స్టాలేషన్కు ముందు మరియు తర్వాత స్నాప్షాట్లను అనుమతించండి లేదా అనుమతి నిరాకరించండి" #: plinth/modules/snapshot/forms.py:32 @@ -6356,6 +6284,12 @@ msgstr "సింగిల్ సైన్ ఆన్" msgid "Login" msgstr "ప్రవేశించు" +#: plinth/modules/sso/views.py:101 +#, fuzzy +#| msgid "Password changed successfully." +msgid "Logged out successfully." +msgstr "పాస్‌వర్డ్ విజయవంతంగా మార్చబడినది." + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -7200,17 +7134,19 @@ msgstr "" msgid "Authorization Password" msgstr "నిర్వాహకుని రహస్యపదం" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, python-brace-format +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "" -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 #, fuzzy #| msgid "Show password" msgid "Invalid password." msgstr "రహస్యపదం కనబర్చు" -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 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 " @@ -7219,68 +7155,68 @@ msgid "" "SSH and have administrative privileges (sudo)." msgstr "" -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, fuzzy, python-brace-format #| msgid "Creating LDAP user failed." msgid "Creating LDAP user failed: {error}" msgstr "ఎల్.డి.ఏ.పి వాడుకరి సృష్టించడంలో విఫలమైంది." -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, fuzzy, python-brace-format #| msgid "Failed to add new user to {group} group." msgid "Failed to add new user to {group} group: {error}" msgstr "వినియోగదారుని {group} సముహానికి జోడించడంలో విఫలం." -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "అధీకృత SSH కీలు" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " "line. Blank lines and lines starting with # will be ignored." msgstr "" -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "ఎల్.డి.ఏ.పి వాడుకరి పేరుమార్పులో విఫలం." -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "సమూహంలోంచి వినియోగదారుని తొలగించడంలో విఫలం." -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "సమూహంలోకి వినియోగదారుని జోడించడంలో విఫలం." -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "SSH కీలను సెట్ చేయడం సాధ్యం కాలేదు." -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 #, fuzzy #| msgid "Failed to add user to group." msgid "Failed to change user status." msgstr "సమూహంలోకి వినియోగదారుని జోడించడంలో విఫలం." -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "ఎల్.డి.ఏ.పి వాడుకరి పాస్‌వర్డ్ మార్పిడి విఫలం." -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, fuzzy, python-brace-format #| msgid "Failed to add new user to admin group." msgid "Failed to add new user to admin group: {error}" msgstr "కొత్త వాడుకరి ను అడ్మిన్ సమూహంలో జోడించడం విఫలమైనది." -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, fuzzy, python-brace-format #| msgid "Failed to restrict console access." msgid "Failed to restrict console access: {error}" msgstr "console ప్రవేశమును పరిమితి చెయడంలొ విఫలమైంది." -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "వాడుకరి ఖాతా సృస్టించబడింది, మీరు లాగిన్ చేయబడ్డారు" @@ -7593,17 +7529,17 @@ msgstr "%(box_name)s కి కనెక్ట్ అయ్యే సర్వ msgid "Endpoint" msgstr "ఎండ్ పాయింట్" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 msgid "No connections to remote servers are configured yet." msgstr "రిమోట్ సర్వర్ లకు కనెక్షన్ లు ఇంకా కాన్ఫిగర్ చేయబడలేదు." -#: plinth/modules/wireguard/templates/wireguard.html:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 #, fuzzy #| msgid "Add new introducer" msgid "Add a new server" msgstr "కొత్త పరిచయకర్తని జోడించండి" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 #, fuzzy #| msgid "Add Connection" @@ -8294,6 +8230,52 @@ msgstr "%(percentage)s %% పూర్తి" msgid "Gujarati" msgstr "గుజరాతీ" +#, fuzzy +#~| msgid "Available Domains" +#~ msgid "RoundCube availability" +#~ msgstr "అందుబాటులో ఉన్న డొమైన్లు" + +#, fuzzy +#~| msgid "Invalid server name" +#~ msgid "Enter a valid domain" +#~ msgstr "సేవిక పేరు చెలదు" + +#, fuzzy +#~| msgid "Invalid server name" +#~ msgid "Enter a valid destination" +#~ msgstr "సేవిక పేరు చెలదు" + +#, fuzzy +#~| msgid "Domain" +#~ msgid "domain" +#~ msgstr "డొమైన్" + +#, fuzzy +#~| msgid "Service Type" +#~ msgid "Service Alert" +#~ msgstr "సేవా రకం" + +#, fuzzy +#~| msgid "Download files using BitTorrent applications" +#~ msgid "Download files using eDonkey applications" +#~ msgstr "బిట్ టోరెంట్ అనువర్తనాలను ఉపయోగించి ఫైళ్లను డౌన్లోడ్ చేయండి" + +#~ msgid "MLDonkey" +#~ msgstr "ఎంఎల్ డాంకీ" + +#~ msgid "Peer-to-peer File Sharing" +#~ msgstr "పీర్-టు-పీర్ ఫైల్ షేరింగ్" + +#, fuzzy +#~| msgid "Monkeysphere" +#~ msgid "KMLDonkey" +#~ msgstr "మంకీస్ఫియర్" + +#, fuzzy +#~| msgid "Monkeysphere" +#~ msgid "AMLDonkey" +#~ msgstr "మంకీస్ఫియర్" + #~ msgid "Mozilla Thunderbird" #~ msgstr "మొజిల్లా థండర్ బర్డ్" diff --git a/plinth/locale/tr/LC_MESSAGES/django.po b/plinth/locale/tr/LC_MESSAGES/django.po index 74743a1ae..a04431e49 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: 2022-01-11 19:11-0500\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" "PO-Revision-Date: 2022-01-13 18:58+0000\n" "Last-Translator: Burak Yavuz \n" "Language-Team: Turkish imaps://imap.ornek.com " "gibi doldurun." -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -5541,10 +5454,21 @@ msgstr "" "gerekeceğini unutmayın (https://myaccount.google.com/lesssecureapps)." -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 msgid "Email Client" msgstr "E-posta İstemcisi" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -5918,11 +5842,11 @@ msgstr "Kısıtlı erişim ayarlanırken hata oldu: {exception}" msgid "Updated security configuration" msgstr "Güvenlik yapılandırması güncellendi" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "Shaarli, yer işaretlerini kaydetmenizi ve paylaşmanızı sağlar." -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." @@ -5930,14 +5854,20 @@ msgstr "" "Shaarli'nin sadece ilk ziyaretinizde ayarlamanız gerekecek tek bir kullanıcı " "hesabını desteklediğini unutmayın." -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "Shaarli" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 msgid "Bookmarks" msgstr "Yer İşaretleri" +#: plinth/modules/shaarli/manifest.py:12 +#, fuzzy +#| msgid "Shaarli" +msgid "Shaarlier" +msgstr "Shaarli" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -6179,7 +6109,11 @@ msgid "Software Installation Snapshots" msgstr "Yazılım Kurulum Anlık Görüntüleri" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +#, fuzzy +#| msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "" "Yazılım kurulumundan önce ve sonra anlık görüntüleri etkinleştirin veya " "etkisizleştirin." @@ -6417,6 +6351,12 @@ msgstr "Tek Oturum Açma" msgid "Login" msgstr "Oturum aç" +#: plinth/modules/sso/views.py:101 +#, fuzzy +#| msgid "Password changed successfully." +msgid "Logged out successfully." +msgstr "Parola başarılı olarak değiştirildi." + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -7265,15 +7205,18 @@ msgstr "" msgid "Authorization Password" msgstr "Yetkilendirme Parolası" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, fuzzy, python-brace-format +#| msgid "Enter your current password to authorize account modifications." +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "Hesap değişikliklerini yetkilendirmek için şu anki parolanızı girin." -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 msgid "Invalid password." msgstr "Geçersiz parola." -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 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 " @@ -7287,21 +7230,21 @@ msgstr "" "kullanıcılar tüm hizmetlere oturum açabilecektir. Ayrıca SSH aracılığıyla " "sisteme oturum açabilir ve yönetici yetkilerine (sudo) sahip olabilirler." -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, python-brace-format msgid "Creating LDAP user failed: {error}" msgstr "LDAP kullanıcısı oluşturma başarısız oldu: {error}" -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, python-brace-format msgid "Failed to add new user to {group} group: {error}" msgstr "{group} grubuna yeni kullanıcı ekleme başarısız oldu: {error}" -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "Yetkili SSH Anahtarları" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " @@ -7312,41 +7255,41 @@ msgstr "" "tane olmak üzere birden çok anahtar girebilirsiniz. Boş satırlar ve # ile " "başlayan satırlar yoksayılacaktır." -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "LDAP kullanıcısının yeniden adlandırılması başarısız oldu." -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "Kullanıcıyı gruptan kaldırma başarısız oldu." -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "Kullanıcıyı gruba ekleme başarısız oldu." -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "SSH anahtarları ayarlanamıyor." -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 msgid "Failed to change user status." msgstr "Kullanıcı durumunu değiştirme başarısız oldu." -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "LDAP kullanıcı parolasının değiştirilmesi başarısız oldu." -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, python-brace-format msgid "Failed to add new user to admin group: {error}" msgstr "Admin grubuna yeni kullanıcı ekleme başarısız oldu: {error}" -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, python-brace-format msgid "Failed to restrict console access: {error}" msgstr "Konsol erişimini kısıtlama başarısız oldu: {error}" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "Kullanıcı hesabı oluşturuldu, şu an oturum açtınız" @@ -7661,15 +7604,15 @@ msgstr "%(box_name)s cihazının bağlanacağı sunucular:" msgid "Endpoint" msgstr "Uç nokta" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 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:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "Yeni bir sunucu ekleyin" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "Sunucuya Bağlantı Ekle" @@ -8363,6 +8306,78 @@ msgstr "%%%(percentage)s tamamlandı" msgid "Gujarati" msgstr "Gujarati" +#~ msgid "RoundCube availability" +#~ msgstr "RoundCube kullanılabilirliği" + +#~ msgid "RoundCube configured for FreedomBox email" +#~ msgstr "RoundCube, FreedomBox e-postası için yapılandırıldı" + +#~ msgid "Enter a valid domain" +#~ msgstr "Geçerli bir etki alanı girin" + +#~ msgid "Enter a valid destination" +#~ msgstr "Geçerli bir hedef girin" + +#~ msgid "domain" +#~ msgstr "etki alanı" + +#~ msgid "Service Alert" +#~ msgstr "Hizmet Uyarısı" + +#~ msgid "Repair" +#~ msgstr "Onar" + +#, python-brace-format +#~ msgid "Internal error in {0}" +#~ msgstr "{0} içinde dahili hata" + +#~ msgid "Check syslog for more information" +#~ msgstr "Daha fazla bilgi için syslog'u gözden geçirin" + +#~ msgid "" +#~ "MLDonkey is a peer-to-peer file sharing application used to exchange " +#~ "large files. It can participate in multiple peer-to-peer networks " +#~ "including eDonkey, Kademlia, Overnet, BitTorrent and DirectConnect." +#~ msgstr "" +#~ "MLDonkey, büyük dosyaları takas etmek için kullanılan kişiden-kişiye bir " +#~ "dosya paylaşım uygulamasıdır. eDonkey, Kademlia, Overnet, BitTorrent ve " +#~ "DirectConnect dahil olmak üzere birden fazla kişiden-kişiye ağlarına " +#~ "katılabilir." + +#~ msgid "" +#~ "Users belonging to admin and ed2k group can control it through the web " +#~ "interface. Users in the admin group can also control it through any of " +#~ "the separate mobile or desktop front-ends or a telnet interface. See " +#~ "manual." +#~ msgstr "" +#~ "Admin ve ed2k grubuna ait kullanıcılar web arayüzü üzerinden " +#~ "denetleyebilirler. Admin grubundaki kullanıcılar, ayrı mobil veya " +#~ "masaüstü ön uçlarından herhangi biri veya bir telnet arayüzü aracılığıyla " +#~ "da denetleyebilir. Kılavuza bakın." + +#, python-brace-format +#~ msgid "" +#~ "On {box_name}, downloaded files can be found in /var/lib/mldonkey/ " +#~ "directory." +#~ msgstr "" +#~ "{box_name} üzerinde, indirilen dosyalar /var/lib/mldonkey/ dizininde " +#~ "bulunabilir." + +#~ msgid "Download files using eDonkey applications" +#~ msgstr "eDonkey uygulamalarını kullanarak dosyaları indir" + +#~ msgid "MLDonkey" +#~ msgstr "MLDonkey" + +#~ msgid "Peer-to-peer File Sharing" +#~ msgstr "Kişiden-kişiye Dosya Paylaşımı" + +#~ msgid "KMLDonkey" +#~ msgstr "KMLDonkey" + +#~ msgid "AMLDonkey" +#~ msgstr "AMLDonkey" + #~ msgid "Mozilla Thunderbird" #~ msgstr "Mozilla Thunderbird" diff --git a/plinth/locale/uk/LC_MESSAGES/django.po b/plinth/locale/uk/LC_MESSAGES/django.po index 85cce35d9..e28367c59 100644 --- a/plinth/locale/uk/LC_MESSAGES/django.po +++ b/plinth/locale/uk/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-11 19:11-0500\n" -"PO-Revision-Date: 2021-11-19 11:51+0000\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" +"PO-Revision-Date: 2022-01-29 13:55+0000\n" "Last-Translator: Andrij Mizyk \n" "Language-Team: Ukrainian \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.9.1-dev\n" +"X-Generator: Weblate 4.11-dev\n" #: doc/dev/_templates/layout.html:11 msgid "Page source" @@ -480,11 +480,7 @@ msgid "Existing Backups" msgstr "Наявні резервні копії" #: plinth/modules/backups/templates/backups_add_remote_repository.html:19 -#, fuzzy, python-format -#| msgid "" -#| "The credentials for this repository are stored on your %(box_name)s.
To restore a backup on a new %(box_name)s you need the ssh credentials " -#| "and, if chosen, the encryption passphrase." +#, python-format msgid "" "The credentials for this repository are stored on your %(box_name)s.
" "To restore a backup on a new %(box_name)s you need the SSH credentials and, " @@ -492,7 +488,7 @@ msgid "" msgstr "" "Облікові дані для цього репозиторію зберігаються на Вашому %(box_name)s. " "
Щоб відновити резервну копію на новому %(box_name)s Вам потрібні " -"облікові дані до ssh та, якщо вибрано, парольна фраза для шифрування." +"облікові дані до SSH та, якщо вибрано, парольна фраза для шифрування." #: plinth/modules/backups/templates/backups_add_remote_repository.html:28 msgid "Create Location" @@ -646,19 +642,14 @@ msgid "How to verify?" msgstr "Як перевірити?" #: plinth/modules/backups/templates/verify_ssh_hostkey.html:45 -#, fuzzy -#| msgid "" -#| "Run the following command on the SSH host machine. The output should " -#| "match one of the provided options. You can also use dsa, ecdsa, ed25519 " -#| "etc. instead of rsa, by choosing the corresponding file." msgid "" "Run the following command on the SSH host machine. The output should match " "one of the provided options. You can also use DSA, ECDSA, Ed25519 etc. " "instead of RSA, by choosing the corresponding file." msgstr "" -"Запустіть наступні команди на машині, що розміщує SSH. Вивід має відповідати " -"одному з наведених параметрів. Ви також можете використовувати dsa, ecdsa, " -"ed25519 і т.п. замість rsa, обравши відповідний файл." +"Запустіть наступні команди на машині, яка розміщує SSH. Вивід має " +"відповідати одному з наведених параметрів. Ви також можете використовувати " +"DSA, ECDSA, Ed25519 і т.п. замість RSA, обравши відповідний файл." #: plinth/modules/backups/templates/verify_ssh_hostkey.html:60 msgid "Verify Host" @@ -841,7 +832,7 @@ msgstr "Дозволи для анонімних користувачів, що #: plinth/modules/bepasty/forms.py:27 #: plinth/modules/bepasty/templates/bepasty.html:30 -#: plinth/modules/users/forms.py:102 plinth/modules/users/forms.py:228 +#: plinth/modules/users/forms.py:108 plinth/modules/users/forms.py:234 msgid "Permissions" msgstr "Дозволи" @@ -924,7 +915,7 @@ msgstr "Адміністратор" msgid "Configuration updated." msgstr "Налаштування оновлено." -#: plinth/modules/bepasty/views.py:93 plinth/modules/email_server/views.py:107 +#: plinth/modules/bepasty/views.py:93 plinth/modules/email_server/views.py:41 #: plinth/modules/gitweb/views.py:117 plinth/modules/searx/views.py:41 #: plinth/modules/searx/views.py:52 plinth/modules/tor/views.py:159 #: plinth/modules/zoph/views.py:72 @@ -1020,10 +1011,10 @@ 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:169 -#: plinth/modules/ejabberd/views.py:85 plinth/modules/email_server/views.py:104 +#: plinth/modules/ejabberd/views.py:85 plinth/modules/email_server/views.py:38 #: plinth/modules/matrixsynapse/views.py:124 plinth/modules/mumble/views.py:28 #: plinth/modules/pagekite/forms.py:78 plinth/modules/quassel/views.py:28 -#: plinth/modules/shadowsocks/views.py:59 +#: plinth/modules/roundcube/views.py:32 plinth/modules/shadowsocks/views.py:59 #: plinth/modules/transmission/views.py:47 plinth/modules/ttrss/views.py:26 #: plinth/modules/wordpress/views.py:37 msgid "Configuration updated" @@ -1485,18 +1476,15 @@ msgid "Diagnostics" msgstr "Діагностика" #: plinth/modules/diagnostics/__init__.py:97 -#: plinth/modules/email_server/templates/email_server.html:37 msgid "passed" msgstr "пройдено" #: plinth/modules/diagnostics/__init__.py:98 -#: plinth/modules/email_server/templates/email_server.html:35 #: plinth/modules/networks/views.py:49 msgid "failed" msgstr "невдало" #: plinth/modules/diagnostics/__init__.py:99 -#: plinth/modules/email_server/templates/email_server.html:33 msgid "error" msgstr "помилка" @@ -2000,80 +1988,56 @@ msgstr "Сервер електронної пошти" msgid "Powered by Postfix, Dovecot & Rspamd" msgstr "Працює на Postfix, Dovecot та Rspamd" -#: plinth/modules/email_server/audit/ldap.py:69 +#: plinth/modules/email_server/audit/ldap.py:68 msgid "Postfix-Dovecot SASL integration" msgstr "" -#: plinth/modules/email_server/audit/ldap.py:70 +#: plinth/modules/email_server/audit/ldap.py:69 msgid "Postfix alias maps" msgstr "Мапи аліясів Postfix" -#: plinth/modules/email_server/audit/rcube.py:31 -msgid "RoundCube availability" -msgstr "Доступність RoundCube" - -#: plinth/modules/email_server/audit/rcube.py:32 -msgid "RoundCube configured for FreedomBox email" -msgstr "RoundCube налаштовано для ел. пошти FreedomBox" - #: plinth/modules/email_server/audit/spam.py:87 msgid "Inbound and outbound mail filters" msgstr "Фільтри вхідної і вихідної пошти" -#: plinth/modules/email_server/forms.py:17 -msgid "Enter a valid domain" -msgstr "Уведіть коректний домен" - -#: plinth/modules/email_server/forms.py:20 -#, fuzzy -#| msgid "Enter a valid username." -msgid "Enter a valid destination" -msgstr "Уведіть коректне розташування" - #: plinth/modules/email_server/forms.py:24 -msgid "domain" -msgstr "домен" - -#: plinth/modules/email_server/forms.py:38 -#, fuzzy -#| msgid "Primary connection" msgid "Primary domain" -msgstr "Основне зʼєднання" +msgstr "Основний домен" -#: plinth/modules/email_server/forms.py:40 +#: plinth/modules/email_server/forms.py:26 msgid "" "Mails are received for all domains configured in the system. Among these, " "select the most important one." msgstr "" -#: plinth/modules/email_server/forms.py:48 +#: plinth/modules/email_server/forms.py:34 msgid "New alias (without @domain)" msgstr "Новий аліяс (без @domain)" -#: plinth/modules/email_server/forms.py:55 +#: plinth/modules/email_server/forms.py:41 msgid "Contains illegal characters" msgstr "Містить неправильні символи" -#: plinth/modules/email_server/forms.py:58 +#: plinth/modules/email_server/forms.py:44 msgid "Must start and end with a-z or 0-9" msgstr "Має починатися і закінчуватися на a-z або 0-9" -#: plinth/modules/email_server/forms.py:61 +#: plinth/modules/email_server/forms.py:47 msgid "Cannot be a number" msgstr "Не може бути числом" -#: plinth/modules/email_server/forms.py:71 +#: plinth/modules/email_server/forms.py:57 msgid "Aliases" msgstr "Псевдоніми" -#: plinth/modules/email_server/forms.py:83 +#: plinth/modules/email_server/forms.py:69 #: 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 +#: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:29 msgid "Enabled" msgstr "Дозволено" -#: plinth/modules/email_server/forms.py:86 +#: plinth/modules/email_server/forms.py:72 #: plinth/modules/firewall/templates/firewall.html:57 #: plinth/modules/letsencrypt/templates/letsencrypt.html:71 #: plinth/modules/snapshot/forms.py:23 plinth/modules/snapshot/forms.py:29 @@ -2082,7 +2046,7 @@ msgid "Disabled" msgstr "Вимкнено" #: plinth/modules/email_server/manifest.py:8 -#: plinth/modules/roundcube/__init__.py:52 +#: plinth/modules/roundcube/__init__.py:54 #: plinth/modules/roundcube/manifest.py:6 msgid "Roundcube" msgstr "Roundcube" @@ -2101,7 +2065,7 @@ msgid "FairEmail" msgstr "FairEmail" #: plinth/modules/email_server/templates/email_alias.html:13 -#: plinth/modules/email_server/templates/email_server.html:20 +#: plinth/modules/email_server/templates/email_server.html:15 msgid "Manage Aliases" msgstr "Керування аліясами" @@ -2125,27 +2089,10 @@ msgstr "Створити новий аліяс електронної пошти msgid "Add" msgstr "Додати" -#: plinth/modules/email_server/templates/email_server.html:15 +#: plinth/modules/email_server/templates/email_server.html:10 msgid "Manage Spam" msgstr "Керування спамом" -#: plinth/modules/email_server/templates/email_server.html:26 -msgid "Service Alert" -msgstr "Сповіщення сервісу" - -#: plinth/modules/email_server/templates/email_server.html:46 -msgid "Repair" -msgstr "" - -#: plinth/modules/email_server/views.py:73 -#, python-brace-format -msgid "Internal error in {0}" -msgstr "Внутрішня помилка в {0}" - -#: plinth/modules/email_server/views.py:76 -msgid "Check syslog for more information" -msgstr "Перевірте системний журнал, щоб дізнатися більше" - #: plinth/modules/firewall/__init__.py:26 #, python-brace-format msgid "" @@ -3093,10 +3040,14 @@ msgid "" "TURN server." msgstr "" -#: plinth/modules/matrixsynapse/manifest.py:12 +#: plinth/modules/matrixsynapse/manifest.py:14 msgid "Element" msgstr "Елемент" +#: plinth/modules/matrixsynapse/manifest.py:48 +msgid "FluffyChat" +msgstr "" + #: plinth/modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15 #: plinth/modules/snapshot/templates/snapshot.html:12 #: plinth/templates/app.html:46 @@ -3400,47 +3351,6 @@ msgstr "Призначений каталог не існує." msgid "Updated media directory" msgstr "Оновлено каталог медія" -#: plinth/modules/mldonkey/__init__.py:23 -msgid "" -"MLDonkey is a peer-to-peer file sharing application used to exchange large " -"files. It can participate in multiple peer-to-peer networks including " -"eDonkey, Kademlia, Overnet, BitTorrent and DirectConnect." -msgstr "" - -#: plinth/modules/mldonkey/__init__.py:26 -msgid "" -"Users belonging to admin and ed2k group can control it through the web " -"interface. Users in the admin group can also control it through any of the " -"separate mobile or desktop front-ends or a telnet interface. See manual." -msgstr "" - -#: plinth/modules/mldonkey/__init__.py:31 -#, python-brace-format -msgid "" -"On {box_name}, downloaded files can be found in /var/lib/mldonkey/ directory." -msgstr "" - -#: plinth/modules/mldonkey/__init__.py:53 -msgid "Download files using eDonkey applications" -msgstr "Завантаження файлів через застосунок eDonkey" - -#: plinth/modules/mldonkey/__init__.py:56 -#: plinth/modules/mldonkey/manifest.py:11 -msgid "MLDonkey" -msgstr "MLDonkey" - -#: plinth/modules/mldonkey/__init__.py:58 -msgid "Peer-to-peer File Sharing" -msgstr "Обмін файлами peer-to-peer" - -#: plinth/modules/mldonkey/manifest.py:18 -msgid "KMLDonkey" -msgstr "KMLDonkey" - -#: plinth/modules/mldonkey/manifest.py:30 -msgid "AMLDonkey" -msgstr "AMLDonkey" - #: plinth/modules/mumble/__init__.py:26 msgid "" "Mumble is an open source, low-latency, encrypted, high quality voice chat " @@ -4314,11 +4224,6 @@ msgstr "" "він перенаправляв увесь отриманий трафік до сервісів, які надає %(box_name)s." #: plinth/modules/networks/templates/router_configuration_content.html:32 -#, fuzzy -#| msgid "" -#| "If you don't have control over your router, choose not to configure it. " -#| "To see options to overcome this limitation, choose 'no public address' " -#| "option in Internet connection type selection." msgid "" "If you don't have control over your router, choose not to configure it. To " "see options to overcome this limitation, choose 'I dont have a public IP " @@ -4326,8 +4231,9 @@ msgid "" "\">Internet connection type selection." msgstr "" "Якщо Ви не контролюєте свій маршрутизатор, не налаштовуйте його. Щоб " -"побачити способи обходу цього обмеження, оберіть параметр 'немає публічної " -"адреси' під час вибору типу зʼєднання з Інтернетом." +"побачити способи обходу цього обмеження, оберіть параметр 'Я не маю " +"публічної IP-адреси' під час вибору типу зʼєднання з Інтернетом." #: plinth/modules/networks/templates/router_configuration_content.html:39 msgid "Choose How You Wish to Configure Your Router" @@ -4905,11 +4811,11 @@ msgstr "" msgid "System Monitoring" msgstr "Моніторинг системи" -#: plinth/modules/power/__init__.py:13 +#: plinth/modules/power/__init__.py:14 msgid "Restart or shut down the system." msgstr "Перезапустити або вимкнути систему." -#: plinth/modules/power/__init__.py:30 +#: plinth/modules/power/__init__.py:31 msgid "Power" msgstr "Живлення" @@ -5131,7 +5037,7 @@ msgstr "" msgid "Access rights configuration updated" msgstr "Оновлено налаштування прав доступу" -#: plinth/modules/roundcube/__init__.py:19 +#: plinth/modules/roundcube/__init__.py:21 msgid "" "Roundcube webmail is a browser-based multilingual IMAP client with an " "application-like user interface. It provides full functionality you expect " @@ -5144,7 +5050,7 @@ msgstr "" "MIME, адресної книжки, маніпулювання теками, пошуку повідомлень та перевірки " "правопису." -#: plinth/modules/roundcube/__init__.py:24 +#: plinth/modules/roundcube/__init__.py:26 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 " @@ -5158,7 +5064,7 @@ msgstr "" "imap.example.com. Для IMAP через SSL (рекомендується), поле " "сервера виглядає як imaps://imap.example.com." -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -5173,10 +5079,21 @@ msgstr "" "Google (https://www.google.com/settings/security/lesssecureapps)." -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 msgid "Email Client" msgstr "Клієнт ел. пошти" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -5510,24 +5427,30 @@ msgstr "" msgid "Updated security configuration" msgstr "Оновлено конфіґурацію безпеки" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "Shaarli дозволяє зберігати і ділитися закладками." -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." msgstr "" -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "Shaarli" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 msgid "Bookmarks" msgstr "Закладки" +#: plinth/modules/shaarli/manifest.py:12 +#, fuzzy +#| msgid "Shaarli" +msgid "Shaarlier" +msgstr "Shaarli" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -5754,7 +5677,11 @@ msgid "Software Installation Snapshots" msgstr "Зрізи встановлення ПЗ" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +#, fuzzy +#| msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "Дозволити або заборонити зрізи перед і після встановлення програм" #: plinth/modules/snapshot/forms.py:32 @@ -5974,6 +5901,12 @@ msgstr "" msgid "Login" msgstr "Вхід" +#: plinth/modules/sso/views.py:101 +#, fuzzy +#| msgid "Password changed successfully." +msgid "Logged out successfully." +msgstr "Пароль змінено успішно." + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -6428,10 +6361,8 @@ msgstr "" "BitTorrent не анонімний." #: plinth/modules/transmission/__init__.py:27 -#, fuzzy -#| msgid "Please do not change the default port of the transmission daemon." msgid "Please do not change the default port of the Transmission daemon." -msgstr "Будь ласка, не змінюйте типовий порт демона transmission." +msgstr "Будь ласка, не змінюйте типовий порт демона Transmission." #: plinth/modules/transmission/__init__.py:53 #: plinth/modules/transmission/manifest.py:6 @@ -6498,10 +6429,8 @@ msgstr "" #: plinth/modules/upgrades/__init__.py:129 #: plinth/modules/upgrades/templates/update-firstboot-progress.html:11 #: plinth/modules/upgrades/templates/update-firstboot.html:11 -#, fuzzy -#| msgid "Server URL updated" msgid "Software Update" -msgstr "URL сервера оновлено" +msgstr "Оновлення ПЗ" #: plinth/modules/upgrades/__init__.py:132 msgid "FreedomBox Updated" @@ -6597,8 +6526,7 @@ msgstr "" " " #: plinth/modules/upgrades/templates/upgrades-new-release.html:9 -#, fuzzy, python-format -#| msgid "%(box_name)s Updated" +#, python-format msgid "%(box_name)s updated" msgstr "%(box_name)s оновлено" @@ -6755,15 +6683,18 @@ msgstr "" msgid "Authorization Password" msgstr "Пароль для авторизації" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, fuzzy, python-brace-format +#| msgid "Enter your current password to authorize account modifications." +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "Уведіть свій поточний пароль для авторизування змін обліківки." -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 msgid "Invalid password." msgstr "Неправильний пароль." -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 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 " @@ -6772,21 +6703,21 @@ msgid "" "SSH and have administrative privileges (sudo)." msgstr "" -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, python-brace-format msgid "Creating LDAP user failed: {error}" msgstr "Не вдалося створити користувача LDAP: {error}" -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, python-brace-format msgid "Failed to add new user to {group} group: {error}" msgstr "Не вдалося додати нового користувача до групи {group}: {error}" -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "Ключі SSH для авторизації" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " @@ -6796,41 +6727,41 @@ msgstr "" "систему без використання пароля. Ви можете вказати декілька ключів, один на " "кожен рядок. Порожні рядки і рядки, що починаються на # іґноруються." -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "Не вдалося перейменувати користувача LDAP." -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "Не вдалося вилучити користувача з групи." -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "Не вдалося додати користувача до групи." -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "Не можливо задати ключі SSH." -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 msgid "Failed to change user status." msgstr "Не вдалося змінити стан користувача." -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "Не вдалося змінити пароль користувача LDAP." -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, python-brace-format msgid "Failed to add new user to admin group: {error}" msgstr "Не вдалося додати нового користувача до адмінської групи: {error}" -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, python-brace-format msgid "Failed to restrict console access: {error}" msgstr "Не вдалося обмежити доступ до консолі: {error}" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "Обліківку користувача створено, Ви ввійшли в систему" @@ -7124,15 +7055,15 @@ msgstr "Сервери, які %(box_name)s приєднає до:" msgid "Endpoint" msgstr "Кінцева точка" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 msgid "No connections to remote servers are configured yet." msgstr "Ще не сконфіґуровано зʼєднань до віддалених серверів." -#: plinth/modules/wireguard/templates/wireguard.html:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "Додати новий сервер" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "Додати зʼєднання зі сервером" @@ -7781,6 +7712,46 @@ msgstr "%(percentage)s%% завершено" msgid "Gujarati" msgstr "Gujarati" +#~ msgid "RoundCube availability" +#~ msgstr "Доступність RoundCube" + +#~ msgid "RoundCube configured for FreedomBox email" +#~ msgstr "RoundCube налаштовано для ел. пошти FreedomBox" + +#~ msgid "Enter a valid domain" +#~ msgstr "Уведіть коректний домен" + +#~ msgid "Enter a valid destination" +#~ msgstr "Уведіть коректне розташування" + +#~ msgid "domain" +#~ msgstr "домен" + +#~ msgid "Service Alert" +#~ msgstr "Сповіщення сервісу" + +#, python-brace-format +#~ msgid "Internal error in {0}" +#~ msgstr "Внутрішня помилка в {0}" + +#~ msgid "Check syslog for more information" +#~ msgstr "Перевірте системний журнал, щоб дізнатися більше" + +#~ msgid "Download files using eDonkey applications" +#~ msgstr "Завантаження файлів через застосунок eDonkey" + +#~ msgid "MLDonkey" +#~ msgstr "MLDonkey" + +#~ msgid "Peer-to-peer File Sharing" +#~ msgstr "Обмін файлами peer-to-peer" + +#~ msgid "KMLDonkey" +#~ msgstr "KMLDonkey" + +#~ msgid "AMLDonkey" +#~ msgstr "AMLDonkey" + #~ msgid "Mozilla Thunderbird" #~ msgstr "Mozilla Thunderbird" diff --git a/plinth/locale/vi/LC_MESSAGES/django.po b/plinth/locale/vi/LC_MESSAGES/django.po index dd89a0b8f..84af6f994 100644 --- a/plinth/locale/vi/LC_MESSAGES/django.po +++ b/plinth/locale/vi/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-11 19:11-0500\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" "PO-Revision-Date: 2021-07-28 08:34+0000\n" "Last-Translator: bruh \n" "Language-Team: Vietnamese ." msgstr "" -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -5033,10 +4950,21 @@ msgid "" "a>)." msgstr "" -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 msgid "Email Client" msgstr "" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -5359,24 +5287,28 @@ msgstr "" msgid "Updated security configuration" msgstr "" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "" -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." msgstr "" -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 msgid "Bookmarks" msgstr "" +#: plinth/modules/shaarli/manifest.py:12 +msgid "Shaarlier" +msgstr "" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -5583,7 +5515,9 @@ msgid "Software Installation Snapshots" msgstr "" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "" #: plinth/modules/snapshot/forms.py:32 @@ -5801,6 +5735,10 @@ msgstr "" msgid "Login" msgstr "" +#: plinth/modules/sso/views.py:101 +msgid "Logged out successfully." +msgstr "" + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -6537,15 +6475,17 @@ msgstr "" msgid "Authorization Password" msgstr "" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, python-brace-format +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "" -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 msgid "Invalid password." msgstr "" -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 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 " @@ -6554,62 +6494,62 @@ msgid "" "SSH and have administrative privileges (sudo)." msgstr "" -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, python-brace-format msgid "Creating LDAP user failed: {error}" msgstr "" -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, python-brace-format msgid "Failed to add new user to {group} group: {error}" msgstr "" -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " "line. Blank lines and lines starting with # will be ignored." msgstr "" -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "" -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "" -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "" -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "" -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 msgid "Failed to change user status." msgstr "" -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "" -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, python-brace-format msgid "Failed to add new user to admin group: {error}" msgstr "" -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, python-brace-format msgid "Failed to restrict console access: {error}" msgstr "" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "" @@ -6893,15 +6833,15 @@ msgstr "" msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "" @@ -7518,6 +7458,21 @@ msgstr "" msgid "Gujarati" msgstr "" +#, fuzzy +#~| msgid "Invalid domain name" +#~ msgid "Enter a valid domain" +#~ msgstr "Tên miền không hợp lệ" + +#, fuzzy +#~| msgid "TLS domain" +#~ msgid "domain" +#~ msgstr "Miền TLS" + +#, fuzzy +#~| msgid "Service Type" +#~ msgid "Service Alert" +#~ msgstr "Loại dịch vụ" + #~ msgid "" #~ "diaspora* is a decentralized social network where you can store and " #~ "control your own data." diff --git a/plinth/locale/zh_Hans/LC_MESSAGES/django.po b/plinth/locale/zh_Hans/LC_MESSAGES/django.po index 363c7d8e8..22c4f3096 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: 2022-01-11 19:11-0500\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" "PO-Revision-Date: 2022-01-13 18:58+0000\n" "Last-Translator: Eric \n" "Language-Team: Chinese (Simplified) Clients to connect to Mumble from your " "desktop and mobile devices are available." msgstr "" -"您可以使用常规端口 64738 连接到您的 Mumble 服务器。您可以从桌面和移动设备连接 Mumble 客户端。" +"您可以使用常规端口 64738 连接到您的 Mumble 服务器。您可以从桌面和移动设备连" +"接 Mumble 客户端。" #: plinth/modules/mumble/__init__.py:48 plinth/modules/mumble/manifest.py:9 msgid "Mumble" @@ -4786,11 +4710,11 @@ msgstr "" msgid "System Monitoring" msgstr "系统监控" -#: plinth/modules/power/__init__.py:13 +#: plinth/modules/power/__init__.py:14 msgid "Restart or shut down the system." msgstr "重新启动或关闭系统。" -#: plinth/modules/power/__init__.py:30 +#: plinth/modules/power/__init__.py:31 msgid "Power" msgstr "电源" @@ -5009,7 +4933,7 @@ msgstr "" msgid "Access rights configuration updated" msgstr "访问权配置已更新" -#: plinth/modules/roundcube/__init__.py:19 +#: plinth/modules/roundcube/__init__.py:21 msgid "" "Roundcube webmail is a browser-based multilingual IMAP client with an " "application-like user interface. It provides full functionality you expect " @@ -5020,7 +4944,7 @@ msgstr "" "户界面。它提供您需要的从电子邮件客户端、MIME支持、地址簿、文件夹操作、消息搜" "索到拼写检查的完整功能。" -#: plinth/modules/roundcube/__init__.py:24 +#: plinth/modules/roundcube/__init__.py:26 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 " @@ -5032,7 +4956,7 @@ msgstr "" "IMAP 服务器域名,像是 imap.example.com。对于 IMAP over SSL (推" "荐),应该填入类似 imaps://imap.example.com 的地址。" -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -5046,10 +4970,21 @@ msgstr "" "href=\"https://www.google.com/settings/security/lesssecureapps\">https://www." "google.com/settings/security/lesssecureapps)中启用“安全性较低的应用”。" -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 msgid "Email Client" msgstr "邮件客户端" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -5374,24 +5309,30 @@ msgstr "设置限制访问错误:{exception}" msgid "Updated security configuration" msgstr "安全配置已更新" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "Shaarli 允许您保存和共享书签。" -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." msgstr "注意,Shaarli 只支持单用户帐户,您需要在初次访问时设置该帐户。" -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "Shaarli" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 msgid "Bookmarks" msgstr "书签" +#: plinth/modules/shaarli/manifest.py:12 +#, fuzzy +#| msgid "Shaarli" +msgid "Shaarlier" +msgstr "Shaarli" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -5600,7 +5541,9 @@ msgid "Software Installation Snapshots" msgstr "" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "" #: plinth/modules/snapshot/forms.py:32 @@ -5820,6 +5763,12 @@ msgstr "" msgid "Login" msgstr "登录" +#: plinth/modules/sso/views.py:101 +#, fuzzy +#| msgid "Password changed successfully." +msgid "Logged out successfully." +msgstr "已成功更改密码。" + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -6582,15 +6531,17 @@ msgstr "" msgid "Authorization Password" msgstr "验证密码" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, python-brace-format +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "" -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 msgid "Invalid password." msgstr "密码无效。" -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 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 " @@ -6602,21 +6553,21 @@ msgstr "" "单点登录的服务。

管理员(admin)组中的用户将能够登录所有服务。他们还可" "以通过 SSH 登录到系统并具有管理权限(sudo)。" -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, python-brace-format msgid "Creating LDAP user failed: {error}" msgstr "创建 LDAP 用户失败:{error}" -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, python-brace-format msgid "Failed to add new user to {group} group: {error}" msgstr "未能将新用户添加到 {group} 组:{error}" -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " @@ -6625,41 +6576,41 @@ msgstr "" "设置 SSH 公钥将允许此用户安全地登录到系统不使用密码。您可以输入多个密钥,每行" "一个。将忽略空行和以 # 开头的行。" -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "重命名 LDAP 用户失败。" -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "无法从组中删除用户。" -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "无法将用户添加到组。" -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "不能设置 SSH 密钥。" -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 msgid "Failed to change user status." msgstr "更改用户状态失败。" -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "更改 LDAP 用户密码失败。" -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, python-brace-format msgid "Failed to add new user to admin group: {error}" msgstr "未能将新用户添加到管理员组:{error}" -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, python-brace-format msgid "Failed to restrict console access: {error}" msgstr "限制控制台访问失败:{error}" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "用户帐户已创建,您现在可以登录" @@ -6945,15 +6896,15 @@ msgstr "" msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 msgid "No connections to remote servers are configured yet." msgstr "尚未配置到远程服务器的连接。" -#: plinth/modules/wireguard/templates/wireguard.html:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "添加到服务器的连接" @@ -7584,6 +7535,33 @@ msgstr "已完成 %(percentage)s%%" msgid "Gujarati" msgstr "古吉拉特语" +#~ msgid "RoundCube availability" +#~ msgstr "RoundCube 可用性" + +#~ msgid "Enter a valid domain" +#~ msgstr "输入有效域名" + +#~ msgid "Enter a valid destination" +#~ msgstr "输入有效的目的地" + +#~ msgid "domain" +#~ msgstr "域名" + +#~ msgid "Service Alert" +#~ msgstr "服务警报" + +#~ msgid "MLDonkey" +#~ msgstr "MLDonkey" + +#~ msgid "Peer-to-peer File Sharing" +#~ msgstr "点对点文件共享" + +#~ msgid "KMLDonkey" +#~ msgstr "KMLDonkey" + +#~ msgid "AMLDonkey" +#~ msgstr "AMLDonkey" + #~ msgid "Updates" #~ msgstr "更新" diff --git a/plinth/locale/zh_Hant/LC_MESSAGES/django.po b/plinth/locale/zh_Hant/LC_MESSAGES/django.po index 41564d7c1..2bade7871 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: 2022-01-11 19:11-0500\n" +"POT-Creation-Date: 2022-01-31 19:23-0500\n" "PO-Revision-Date: 2021-12-23 12:50+0000\n" "Last-Translator: pesder \n" "Language-Team: Chinese (Traditional) ." msgstr "" -#: plinth/modules/roundcube/__init__.py:29 +#: plinth/modules/roundcube/__init__.py:31 msgid "" "For Gmail, username will be your Gmail address, password will be your Google " "account password and server will be imaps://imap.gmail.com. " @@ -4906,10 +4825,21 @@ msgid "" "a>)." msgstr "" -#: plinth/modules/roundcube/__init__.py:53 +#: plinth/modules/roundcube/__init__.py:55 msgid "Email Client" msgstr "" +#: plinth/modules/roundcube/forms.py:16 +msgid "Use only the local mail server" +msgstr "" + +#: plinth/modules/roundcube/forms.py:17 +#, python-brace-format +msgid "" +"When enabled, text box for server input is removed from login page and users " +"can only read and send mails from this {box_name}." +msgstr "" + #: plinth/modules/samba/__init__.py:27 msgid "" "Samba allows to share files and folders between FreedomBox and other " @@ -5232,24 +5162,28 @@ msgstr "" msgid "Updated security configuration" msgstr "" -#: plinth/modules/shaarli/__init__.py:17 +#: plinth/modules/shaarli/__init__.py:18 msgid "Shaarli allows you to save and share bookmarks." msgstr "" -#: plinth/modules/shaarli/__init__.py:18 +#: plinth/modules/shaarli/__init__.py:19 msgid "" "Note that Shaarli only supports a single user account, which you will need " "to setup on the initial visit." msgstr "" -#: plinth/modules/shaarli/__init__.py:37 plinth/modules/shaarli/manifest.py:6 +#: plinth/modules/shaarli/__init__.py:38 plinth/modules/shaarli/manifest.py:25 msgid "Shaarli" msgstr "" -#: plinth/modules/shaarli/__init__.py:38 +#: plinth/modules/shaarli/__init__.py:39 msgid "Bookmarks" msgstr "" +#: plinth/modules/shaarli/manifest.py:12 +msgid "Shaarlier" +msgstr "" + #: plinth/modules/shadowsocks/__init__.py:21 msgid "" "Shadowsocks is a lightweight and secure SOCKS5 proxy, designed to protect " @@ -5456,7 +5390,9 @@ msgid "Software Installation Snapshots" msgstr "" #: plinth/modules/snapshot/forms.py:27 -msgid "Enable or disable snapshots before and after software installation" +msgid "" +"Enable or disable snapshots before and after each software installation and " +"update." msgstr "" #: plinth/modules/snapshot/forms.py:32 @@ -5674,6 +5610,10 @@ msgstr "" msgid "Login" msgstr "" +#: plinth/modules/sso/views.py:101 +msgid "Logged out successfully." +msgstr "" + #: plinth/modules/storage/__init__.py:26 #, python-brace-format msgid "" @@ -6407,15 +6347,17 @@ msgstr "" msgid "Authorization Password" msgstr "" -#: plinth/modules/users/forms.py:79 -msgid "Enter your current password to authorize account modifications." +#: plinth/modules/users/forms.py:84 +#, python-brace-format +msgid "" +"Enter the password for user \"{user}\" to authorize account modifications." msgstr "" -#: plinth/modules/users/forms.py:87 +#: plinth/modules/users/forms.py:93 msgid "Invalid password." msgstr "" -#: plinth/modules/users/forms.py:104 +#: plinth/modules/users/forms.py:110 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 " @@ -6424,62 +6366,62 @@ msgid "" "SSH and have administrative privileges (sudo)." msgstr "" -#: plinth/modules/users/forms.py:149 plinth/modules/users/forms.py:393 +#: plinth/modules/users/forms.py:155 plinth/modules/users/forms.py:399 #, python-brace-format msgid "Creating LDAP user failed: {error}" msgstr "" -#: plinth/modules/users/forms.py:162 +#: plinth/modules/users/forms.py:168 #, python-brace-format msgid "Failed to add new user to {group} group: {error}" msgstr "" -#: plinth/modules/users/forms.py:176 +#: plinth/modules/users/forms.py:182 msgid "Authorized SSH Keys" msgstr "" -#: plinth/modules/users/forms.py:178 +#: plinth/modules/users/forms.py:184 msgid "" "Setting an SSH public key will allow this user to securely log in to the " "system without using a password. You may enter multiple keys, one on each " "line. Blank lines and lines starting with # will be ignored." msgstr "" -#: plinth/modules/users/forms.py:263 +#: plinth/modules/users/forms.py:269 msgid "Renaming LDAP user failed." msgstr "" -#: plinth/modules/users/forms.py:276 +#: plinth/modules/users/forms.py:282 msgid "Failed to remove user from group." msgstr "" -#: plinth/modules/users/forms.py:288 +#: plinth/modules/users/forms.py:294 msgid "Failed to add user to group." msgstr "" -#: plinth/modules/users/forms.py:301 +#: plinth/modules/users/forms.py:307 msgid "Unable to set SSH keys." msgstr "" -#: plinth/modules/users/forms.py:319 +#: plinth/modules/users/forms.py:325 msgid "Failed to change user status." msgstr "" -#: plinth/modules/users/forms.py:364 +#: plinth/modules/users/forms.py:370 msgid "Changing LDAP user password failed." msgstr "" -#: plinth/modules/users/forms.py:404 +#: plinth/modules/users/forms.py:410 #, python-brace-format msgid "Failed to add new user to admin group: {error}" msgstr "" -#: plinth/modules/users/forms.py:423 +#: plinth/modules/users/forms.py:429 #, python-brace-format msgid "Failed to restrict console access: {error}" msgstr "" -#: plinth/modules/users/forms.py:436 +#: plinth/modules/users/forms.py:442 msgid "User account created, you are now logged in" msgstr "" @@ -6763,15 +6705,15 @@ msgstr "" msgid "Endpoint" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:99 +#: plinth/modules/wireguard/templates/wireguard.html:100 msgid "No connections to remote servers are configured yet." msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:109 +#: plinth/modules/wireguard/templates/wireguard.html:110 msgid "Add a new server" msgstr "" -#: plinth/modules/wireguard/templates/wireguard.html:113 +#: plinth/modules/wireguard/templates/wireguard.html:114 #: plinth/modules/wireguard/views.py:157 msgid "Add Connection to Server" msgstr "" @@ -7388,6 +7330,16 @@ msgstr "" msgid "Gujarati" msgstr "" +#, fuzzy +#~| msgid "Invalid domain name" +#~ msgid "Enter a valid domain" +#~ msgstr "無效的網域名稱" + +#, fuzzy +#~| msgid "Service Discovery" +#~ msgid "Service Alert" +#~ msgstr "發現服務" + #, fuzzy #~| msgid "An error occurred during configuration." #~ msgid "Error updating configuration" diff --git a/plinth/modules/cockpit/data/etc/apache2/conf-available/cockpit-freedombox.conf b/plinth/modules/cockpit/data/etc/apache2/conf-available/cockpit-freedombox.conf index 001c2537f..495037bbe 100644 --- a/plinth/modules/cockpit/data/etc/apache2/conf-available/cockpit-freedombox.conf +++ b/plinth/modules/cockpit/data/etc/apache2/conf-available/cockpit-freedombox.conf @@ -8,6 +8,12 @@ ## mod_proxy_wstunnel ## + # Redirect to HTTPS in case of not already using it. This can happen since + # we don't redirect for .onion domains. + RewriteEngine on + ReWriteCond %{HTTPS} !=on + RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [R=302,L] + ProxyPass http://localhost:9090/_cockpit/ diff --git a/plinth/modules/coturn/__init__.py b/plinth/modules/coturn/__init__.py index 390e8e274..7ccb8afe3 100644 --- a/plinth/modules/coturn/__init__.py +++ b/plinth/modules/coturn/__init__.py @@ -47,7 +47,7 @@ class CoturnApp(app_module.App): app_id = 'coturn' - _version = 1 + _version = 2 def __init__(self): """Create components for the app.""" @@ -112,7 +112,9 @@ def setup(helper, old_version=None): """Install and configure the module.""" app.setup(old_version) helper.call('post', actions.superuser_run, 'coturn', ['setup']) - helper.call('post', app.enable) + if old_version == 0: + helper.call('post', app.enable) + app.get_component('letsencrypt-coturn').setup_certificates() notify_configuration_change() diff --git a/plinth/modules/email_server/__init__.py b/plinth/modules/email_server/__init__.py index fc10d4d57..7b4065c41 100644 --- a/plinth/modules/email_server/__init__.py +++ b/plinth/modules/email_server/__init__.py @@ -147,7 +147,6 @@ class EmailServerApp(plinth.app.App): results = super().diagnose() results.extend([r.summarize() for r in audit.ldap.get()]) results.extend([r.summarize() for r in audit.spam.get()]) - results.extend([r.summarize() for r in audit.rcube.get()]) return results @@ -179,7 +178,6 @@ def setup(helper, old_version=None): helper.call('post', audit.domain.set_domains) helper.call('post', audit.ldap.repair) helper.call('post', audit.spam.repair) - helper.call('post', audit.rcube.repair) # Reload actions.superuser_run('service', ['reload', 'postfix']) diff --git a/plinth/modules/email_server/audit/__init__.py b/plinth/modules/email_server/audit/__init__.py index e35045731..1dc17ee18 100644 --- a/plinth/modules/email_server/audit/__init__.py +++ b/plinth/modules/email_server/audit/__init__.py @@ -3,8 +3,6 @@ Provides diagnosis and repair of email server configuration issues """ -from . import aliases, domain, home, ldap, models, rcube, spam, tls +from . import aliases, domain, home, ldap, models, spam, tls -__all__ = [ - 'aliases', 'domain', 'home', 'ldap', 'models', 'rcube', 'spam', 'tls' -] +__all__ = ['aliases', 'domain', 'home', 'ldap', 'models', 'spam', 'tls'] diff --git a/plinth/modules/email_server/audit/ldap.py b/plinth/modules/email_server/audit/ldap.py index e5e5a760c..6a727e490 100644 --- a/plinth/modules/email_server/audit/ldap.py +++ b/plinth/modules/email_server/audit/ldap.py @@ -53,7 +53,6 @@ default_smtps_options = { 'smtpd_relay_restrictions': 'permit_sasl_authenticated,reject' } -MAILSRV_DIR = '/var/lib/plinth/mailsrv' SQLITE_ALIASES = 'sqlite:/etc/postfix/freedombox-aliases.cf' logger = logging.getLogger(__name__) @@ -144,16 +143,3 @@ def action_set_ulookup(): """Handles email_server -i ldap set_ulookup""" with postconf.mutex.lock_all(): fix_alias_maps(check_alias_maps()) - - -def list_find(lst, element, start=None, end=None): - if start is None: - start = 0 - if end is None: - end = len(lst) - if start < 0 or end < 0: - return -1 - try: - return lst.index(element, start, end) - except ValueError: - return -1 diff --git a/plinth/modules/email_server/audit/rcube.py b/plinth/modules/email_server/audit/rcube.py deleted file mode 100644 index 3395a3329..000000000 --- a/plinth/modules/email_server/audit/rcube.py +++ /dev/null @@ -1,90 +0,0 @@ -# SPDX-License-Identifier: AGPL-3.0-or-later - -import json -import logging -import os - -from django.utils.translation import gettext_lazy as _ - -from plinth import actions -from plinth.modules.email_server.lock import Mutex -from plinth.modules.email_server.modconf import ConfigInjector - -from . import models - -config_path = '/etc/roundcube/config.inc.php' -boundary_pattern = '//[ ]*--[ ]*(BEGIN|END)[ ]+FREEDOMBOX CONFIG$' -boundary_format = '//-- {} FREEDOMBOX CONFIG' - -rconf_template = """// -// The following section is managed by FreedomBox -// Be careful not to edit -include_once("/etc/roundcube/freedombox_mail.inc.php"); -""" - -logger = logging.getLogger(__name__) -rcube_mutex = Mutex('rcube-config') - - -def get(): - translation = { - 'rc_installed': _('RoundCube availability'), - 'rc_config_header': _('RoundCube configured for FreedomBox email'), - } - - output = actions.superuser_run('email_server', ['rcube', 'check']) - results = json.loads(output) - for i in range(0, len(results)): - results[i] = models.Diagnosis.from_json(results[i], translation.get) - - return results - - -def repair(): - actions.superuser_run('email_server', ['rcube', 'set_up']) - - -def repair_component(action): - action_to_services = {'set_up': []} - if action not in action_to_services: - return - actions.superuser_run('email_server', ['rcube', action]) - return action_to_services[action] - - -def action_check(): - results = _action_check() - for i in range(0, len(results)): - results[i] = results[i].to_json() - print(json.dumps(results)) - - -def _action_check(): - results = [] - if not os.path.exists(config_path): - diagnosis = models.Diagnosis('rc_installed') - diagnosis.error('Config file was missing') - diagnosis.error('Check that RoundCube has been installed') - results.append(diagnosis) - return results - - diagnosis = models.Diagnosis('rc_config_header', action='set_up') - injector = ConfigInjector(boundary_pattern, boundary_format) - if not injector.has_header_line(config_path): - diagnosis.error('FreedomBox header line was missing') - results.append(diagnosis) - return results - - -def action_set_up(): - with rcube_mutex.lock_all(): - _inject_rcube_config() - - -def _inject_rcube_config(): - if not os.path.exists(config_path): - logger.warning('Roundcube has not been installed') - return - logger.info('Opening rcube config file %s', config_path) - injector = ConfigInjector(boundary_pattern, boundary_format) - injector.do_template_string(rconf_template, config_path) diff --git a/plinth/modules/email_server/data/etc/roundcube/freedombox_mail.inc.php b/plinth/modules/email_server/data/etc/roundcube/freedombox_mail.inc.php deleted file mode 100644 index 62d858db0..000000000 --- a/plinth/modules/email_server/data/etc/roundcube/freedombox_mail.inc.php +++ /dev/null @@ -1,8 +0,0 @@ - diff --git a/plinth/modules/email_server/forms.py b/plinth/modules/email_server/forms.py index 53fac7788..265bfa5dd 100644 --- a/plinth/modules/email_server/forms.py +++ b/plinth/modules/email_server/forms.py @@ -6,26 +6,12 @@ import re from django import forms from django.core.exceptions import ValidationError -from django.core.validators import RegexValidator from django.utils.translation import gettext_lazy as _ from plinth.modules.names.components import DomainName from . import aliases as aliases_module -domain_validator = RegexValidator(r'^[A-Za-z0-9-\.]+$', - _('Enter a valid domain')) -destination_validator = RegexValidator( - r'^[ -~]+$', # ASCII chars from 32 to 126 - _('Enter a valid destination')) - - -class EmailServerForm(forms.Form): - domain = forms.CharField(label=_('domain'), max_length=256) - - def __init__(self, *args, **kwargs): - super().__init__(*args, **kwargs) - def _get_domain_choices(): """Double domain entries for inclusion in the choice field.""" diff --git a/plinth/modules/email_server/templates/email_server.html b/plinth/modules/email_server/templates/email_server.html index c963e1cff..b18fdaa54 100644 --- a/plinth/modules/email_server/templates/email_server.html +++ b/plinth/modules/email_server/templates/email_server.html @@ -5,11 +5,6 @@ {% load i18n %} -{% block content %} - {{ tabs|safe }} - {{ block.super }} -{% endblock %} - {% block subsubmenu %} {% trans "Manage Spam" %} @@ -20,46 +15,3 @@ {% trans "Manage Aliases" %} {% endblock %} - -{% block extra_content %} - {% if related_diagnostics %} -

{% trans "Service Alert" %}

-
    - {% for model in related_diagnostics %} -
  • - - {{ model.title }} - {% if model.critical_errors %} - {% trans "error" %} - {% elif model.errors %} - {% trans "failed" %} - {% else %} - {% trans "passed" %} - {% endif %} - - {% if model.has_failed and model.action %} -
    - {% csrf_token %} - -
    - {% endif %} - -
      - {% for message in model.critical_errors %} -
    • {{ message }}
    • - {% endfor %} - {% for message in model.errors %} -
    • {{ message }}
    • - {% endfor %} -
    - -
  • - {% endfor %} -
- {% endif %} - {{ block.super }} -{% endblock %} diff --git a/plinth/modules/email_server/views.py b/plinth/modules/email_server/views.py index 3c9e56d27..6a34d89a5 100644 --- a/plinth/modules/email_server/views.py +++ b/plinth/modules/email_server/views.py @@ -4,49 +4,22 @@ Views for the email app. """ from django.contrib import messages -from django.core.exceptions import ValidationError -from django.http import HttpResponseBadRequest -from django.shortcuts import redirect from django.urls import reverse_lazy from django.utils.translation import gettext_lazy as _ -from django.views.generic.base import TemplateView, View +from django.views.generic.base import TemplateView from django.views.generic.edit import FormView -import plinth.actions -import plinth.utils from plinth.views import AppView from . import aliases as aliases_module from . import audit, forms -class ExceptionsMixin(View): - - def render_validation_error(self, validation_error, status=400): - context = self.get_context_data() - context['error'] = validation_error - return self.render_to_response(context, status=status) - - def render_exception(self, exception, status=500): - context = self.get_context_data() - context['error'] = [str(exception)] - return self.render_to_response(context, status=status) - - def catch_exceptions(self, function, request): - try: - return function(request) - except ValidationError as validation_error: - return self.render_validation_error(validation_error) - except Exception as error: - return self.render_exception(error) - - -class EmailServerView(ExceptionsMixin, AppView): +class EmailServerView(AppView): """Server configuration page""" app_id = 'email_server' form_class = forms.DomainForm template_name = 'email_server.html' - audit_modules = ('rcube', ) def get_initial(self): """Return the initial values to populate in the form.""" @@ -55,45 +28,6 @@ class EmailServerView(ExceptionsMixin, AppView): initial['primary_domain'] = domains['primary_domain'] return initial - def get_context_data(self, *args, **kwargs): - context = super().get_context_data(*args, **kwargs) - - dlist = [] - for module_name in self.audit_modules: - self._get_audit_results(module_name, dlist) - dlist.sort(key=audit.models.Diagnosis.sorting_key) - - context['related_diagnostics'] = dlist - return context - - def _get_audit_results(self, module_name, dlist): - try: - results = getattr(audit, module_name).get() - except Exception as e: - title = _('Internal error in {0}').format('audit.' + module_name) - diagnosis = audit.models.Diagnosis(title) - diagnosis.critical(str(e)) - diagnosis.critical(_('Check syslog for more information')) - results = [diagnosis] - - for diagnosis in results: - if diagnosis.action: - diagnosis.action = '%s.%s' % (module_name, diagnosis.action) - if diagnosis.has_failed: - dlist.append(diagnosis) - - def post(self, request): - repair_field = request.POST.get('repair') - if repair_field: - module_name, sep, action_name = repair_field.partition('.') - if not sep or module_name not in self.audit_modules: - return HttpResponseBadRequest('Bad post data') - - self._repair(module_name, action_name) - return redirect(request.path) - - return super().post(request) - def form_valid(self, form): """Update the settings for changed domain values.""" old_data = form.initial @@ -103,27 +37,11 @@ class EmailServerView(ExceptionsMixin, AppView): audit.domain.set_domains(new_data['primary_domain']) messages.success(self.request, _('Configuration updated')) except Exception: - messages.success(self.request, - _('An error occurred during configuration.')) + messages.error(self.request, + _('An error occurred during configuration.')) return super().form_valid(form) - def _repair(self, module_name, action_name): - """Repair the configuration of the given audit module.""" - module = getattr(audit, module_name) - if not hasattr(module, 'repair_component'): - return - - reload_list = [] - try: - reload_list = module.repair_component(action_name) - except Exception: - pass - - for service in reload_list: - # plinth.action_utils.service_reload(service) - plinth.actions.superuser_run('service', ['reload', service]) - class AliasView(FormView): """View to create, list, enable, disable and delete aliases. diff --git a/plinth/modules/help/tests/test_views.py b/plinth/modules/help/tests/test_views.py index 331ab07d9..dc8b86354 100644 --- a/plinth/modules/help/tests/test_views.py +++ b/plinth/modules/help/tests/test_views.py @@ -109,8 +109,8 @@ MANUAL_PAGES = ('Apache_userdir', 'APU', 'Backups', 'BananaPro', 'BeagleBone', 'freedombox-manual', 'GettingHelp', 'GitWeb', 'Hardware', 'I2P', 'Ikiwiki', 'Infinoted', 'Introduction', 'JSXC', 'LetsEncrypt', 'Maker', 'MatrixSynapse', 'MediaWiki', - 'Minetest', 'MiniDLNA', 'MLDonkey', 'Mumble', 'NameServices', - 'Networks', 'OpenVPN', 'OrangePiZero', 'PageKite', 'pcDuino3', + 'Minetest', 'MiniDLNA', 'Mumble', 'NameServices', 'Networks', + 'OpenVPN', 'OrangePiZero', 'PageKite', 'pcDuino3', 'Performance', 'PineA64+', 'PioneerEdition', 'Plinth', 'Power', 'Privoxy', 'Quassel', 'QuickStart', 'Radicale', 'RaspberryPi2', 'RaspberryPi3B+', 'RaspberryPi3B', 'RaspberryPi4B', diff --git a/plinth/modules/matrixsynapse/manifest.py b/plinth/modules/matrixsynapse/manifest.py index f246f2998..efeddb638 100644 --- a/plinth/modules/matrixsynapse/manifest.py +++ b/plinth/modules/matrixsynapse/manifest.py @@ -4,8 +4,10 @@ from django.utils.translation import gettext_lazy as _ from plinth.clients import store_url -_android_package_id = 'im.vector.app' +_element_android_package_id = 'im.vector.app' _element_desktop_download_url = 'https://element.io/get-started' +_fluffychat_android_package_id = 'chat.fluffy.fluffychat' +_fluffychat_desktop_download_url = 'https://fluffychat.im/' clients = [{ 'name': @@ -14,12 +16,12 @@ clients = [{ 'type': 'store', 'os': 'android', 'store_name': 'google-play', - 'url': store_url('google-play', _android_package_id) + 'url': store_url('google-play', _element_android_package_id) }, { 'type': 'store', 'os': 'android', 'store_name': 'f-droid', - 'url': store_url('f-droid', _android_package_id) + 'url': store_url('f-droid', _element_android_package_id) }, { 'type': 'store', 'os': 'ios', @@ -41,6 +43,32 @@ clients = [{ 'os': 'windows', 'url': _element_desktop_download_url, }] +}, { + 'name': + _('FluffyChat'), + 'platforms': [{ + 'type': 'store', + 'os': 'android', + 'store_name': 'google-play', + 'url': store_url('google-play', _fluffychat_android_package_id) + }, { + 'type': 'store', + 'os': 'android', + 'store_name': 'f-droid', + 'url': store_url('f-droid', _fluffychat_android_package_id) + }, { + 'type': 'store', + 'os': 'ios', + 'store_name': 'app-store', + 'url': 'https://apps.apple.com/app/fluffychat/id1551469600' + }, { + 'type': 'web', + 'url': 'https://fluffychat.im/web' + }, { + 'type': 'download', + 'os': 'gnu-linux', + 'url': _fluffychat_desktop_download_url, + }] }] backup = { diff --git a/plinth/modules/mldonkey/__init__.py b/plinth/modules/mldonkey/__init__.py deleted file mode 100644 index 56801ed32..000000000 --- a/plinth/modules/mldonkey/__init__.py +++ /dev/null @@ -1,107 +0,0 @@ -# SPDX-License-Identifier: AGPL-3.0-or-later -""" -FreedomBox app for mldonkey. -""" - -from django.utils.translation import gettext_lazy as _ - -from plinth import actions -from plinth import app as app_module -from plinth import cfg, frontpage, menu -from plinth.daemon import Daemon -from plinth.modules.apache.components import Webserver -from plinth.modules.backups.components import BackupRestore -from plinth.modules.firewall.components import Firewall -from plinth.modules.users import add_user_to_share_group -from plinth.modules.users.components import UsersAndGroups -from plinth.package import Packages -from plinth.utils import format_lazy - -from . import manifest - -_description = [ - _('MLDonkey is a peer-to-peer file sharing application used to exchange ' - 'large files. It can participate in multiple peer-to-peer networks ' - 'including eDonkey, Kademlia, Overnet, BitTorrent and DirectConnect.'), - _('Users belonging to admin and ed2k group can control it through the web ' - 'interface. Users in the admin group can also control it through any of ' - 'the separate mobile or desktop front-ends or a telnet interface. See ' - 'manual.'), - format_lazy( - _('On {box_name}, downloaded files can be found in /var/lib/mldonkey/ ' - 'directory.'), box_name=cfg.box_name) -] - -_SYSTEM_USER = 'mldonkey' - -app = None - - -class MLDonkeyApp(app_module.App): - """FreedomBox app for MLDonkey.""" - - app_id = 'mldonkey' - - _version = 2 - - DAEMON = 'mldonkey-server' - - def __init__(self): - """Create components for the app.""" - super().__init__() - - groups = {'ed2k': _('Download files using eDonkey applications')} - - info = app_module.Info( - app_id=self.app_id, version=self._version, name=_('MLDonkey'), - icon_filename='mldonkey', - short_description=_('Peer-to-peer File Sharing'), - description=_description, manual_page='MLDonkey', - clients=manifest.clients) - self.add(info) - - menu_item = menu.Menu('menu-mldonkey', info.name, - info.short_description, info.icon_filename, - 'mldonkey:index', parent_url_name='apps') - self.add(menu_item) - - shortcuts = frontpage.Shortcut( - 'shortcut-mldonkey', info.name, - short_description=info.short_description, icon=info.icon_filename, - url='/mldonkey/', login_required=True, clients=info.clients, - allowed_groups=list(groups)) - self.add(shortcuts) - - packages = Packages('packages-mldonkey', ['mldonkey-server']) - self.add(packages) - - firewall = Firewall('firewall-mldonkey', info.name, - ports=['http', 'https'], is_external=True) - self.add(firewall) - - webserver = Webserver('webserver-mldonkey', 'mldonkey-freedombox', - urls=['https://{host}/mldonkey/']) - self.add(webserver) - - daemon = Daemon('daemon-mldonkey', self.DAEMON, - listen_ports=[(4080, 'tcp4')]) - self.add(daemon) - - users_and_groups = UsersAndGroups('users-and-groups-mldonkey', - reserved_usernames=[_SYSTEM_USER], - groups=groups) - self.add(users_and_groups) - - backup_restore = BackupRestore('backup-restore-mldonkey', - **manifest.backup) - self.add(backup_restore) - - -def setup(helper, old_version=None): - """Install and configure the module.""" - helper.call('pre', actions.superuser_run, 'mldonkey', ['pre-install']) - app.setup(old_version) - if not old_version: - helper.call('post', app.enable) - - add_user_to_share_group(_SYSTEM_USER, MLDonkeyApp.DAEMON) diff --git a/plinth/modules/mldonkey/data/etc/apache2/conf-available/mldonkey-freedombox.conf b/plinth/modules/mldonkey/data/etc/apache2/conf-available/mldonkey-freedombox.conf deleted file mode 100644 index 263c1361f..000000000 --- a/plinth/modules/mldonkey/data/etc/apache2/conf-available/mldonkey-freedombox.conf +++ /dev/null @@ -1,21 +0,0 @@ -## -## On all sites, provide mldonkey web interface on a path: /mldonkey -## - -# Redirect /mldonkey to /mldonkey/ as the MLdonkey server web interface does not -# work without a slash at the end. - - - RewriteEngine On - RewriteCond %{REQUEST_URI} ^/mldonkey$ - RewriteRule .* /mldonkey/ [R=301,L] - - - - - Include includes/freedombox-single-sign-on.conf - ProxyPass http://localhost:4080/ - - TKTAuthToken "admin" "ed2k" - - diff --git a/plinth/modules/mldonkey/data/etc/plinth/modules-enabled/mldonkey b/plinth/modules/mldonkey/data/etc/plinth/modules-enabled/mldonkey deleted file mode 100644 index 71bd026a0..000000000 --- a/plinth/modules/mldonkey/data/etc/plinth/modules-enabled/mldonkey +++ /dev/null @@ -1 +0,0 @@ -plinth.modules.mldonkey diff --git a/plinth/modules/mldonkey/data/usr/lib/systemd/system/mldonkey-server.service.d/freedombox.conf b/plinth/modules/mldonkey/data/usr/lib/systemd/system/mldonkey-server.service.d/freedombox.conf deleted file mode 100644 index d0256a633..000000000 --- a/plinth/modules/mldonkey/data/usr/lib/systemd/system/mldonkey-server.service.d/freedombox.conf +++ /dev/null @@ -1,35 +0,0 @@ -[Unit] -Description=MLDonkey: Multi-protocol, peer-to-peer file sharing server -After=syslog.target network.target nslcd.service -ConditionPathExists=/var/lib/mldonkey/downloads.ini -Documentation=man:mlnet(1) http://mldonkey.sourceforge.net/Main_Page - -[Service] -ExecStart= -ExecStart=/usr/bin/mlnet -ExecStop= -Group=mldonkey -IgnoreSIGPIPE=yes -KillMode=control-group -LockPersonality=yes -NoNewPrivileges=yes -PrivateDevices=yes -PrivateMounts=yes -PrivateTmp=yes -ProtectControlGroups=yes -ProtectHome=yes -ProtectKernelLogs=yes -ProtectKernelModules=yes -ProtectKernelTunables=yes -ProtectSystem=full -RemainAfterExit=no -RestrictAddressFamilies=AF_UNIX AF_INET AF_INET6 -RestrictRealtime=yes -StateDirectory=mldonkey -SystemCallArchitectures=native -Type=simple -User=mldonkey -WorkingDirectory=/var/lib/mldonkey - -[Install] -WantedBy=multi-user.target diff --git a/plinth/modules/mldonkey/manifest.py b/plinth/modules/mldonkey/manifest.py deleted file mode 100644 index 25819b496..000000000 --- a/plinth/modules/mldonkey/manifest.py +++ /dev/null @@ -1,57 +0,0 @@ -# SPDX-License-Identifier: AGPL-3.0-or-later -""" -Application manifest for mldonkey. -""" - -from django.utils.translation import gettext_lazy as _ - -from plinth.clients import store_url - -clients = [{ - 'name': _('MLDonkey'), - 'platforms': [{ - 'type': 'web', - 'url': '/mldonkey/' - }] -}, { - 'name': - _('KMLDonkey'), - 'platforms': [{ - 'type': 'download', - 'os': 'gnu-linux', - 'url': 'https://www.kde.org/applications/internet/kmldonkey/' - }, { - 'type': 'package', - 'format': 'deb', - 'name': 'kmldonkey', - }] -}, { - 'name': - _('AMLDonkey'), - 'platforms': [{ - 'type': 'store', - 'os': 'android', - 'store_name': 'google-play', - 'url': store_url('google-play', 'com.devwom.amldonkey'), - }] -}] - -backup = { - 'config': { - 'files': [ - '/var/lib/mldonkey/bittorrent.ini', '/var/lib/mldonkey/bt_dht.ini', - '/var/lib/mldonkey/directconnect.ini', - '/var/lib/mldonkey/donkey.ini', '/var/lib/mldonkey/downloads.ini', - '/var/lib/mldonkey/files.ini', - '/var/lib/mldonkey/file_sources.ini', - '/var/lib/mldonkey/fileTP.ini', '/var/lib/mldonkey/friends.ini', - '/var/lib/mldonkey/searches.ini', '/var/lib/mldonkey/servers.ini', - '/var/lib/mldonkey/shared_files.ini', - '/var/lib/mldonkey/shared_files_new.ini', - '/var/lib/mldonkey/statistics.ini', - '/var/lib/mldonkey/stats_bt.ini', '/var/lib/mldonkey/stats.ini', - '/var/lib/mldonkey/stats_mod.ini', '/var/lib/mldonkey/users.ini' - ] - }, - 'services': ['mldonkey-server'] -} diff --git a/plinth/modules/mldonkey/tests/__init__.py b/plinth/modules/mldonkey/tests/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/plinth/modules/mldonkey/tests/test_functional.py b/plinth/modules/mldonkey/tests/test_functional.py deleted file mode 100644 index ebd25118d..000000000 --- a/plinth/modules/mldonkey/tests/test_functional.py +++ /dev/null @@ -1,73 +0,0 @@ -# SPDX-License-Identifier: AGPL-3.0-or-later -""" -Functional, browser based tests for mldonkey app. -""" - -import pytest -from plinth.tests import functional - -pytestmark = [ - pytest.mark.apps, pytest.mark.mldonkey, pytest.mark.sso, pytest.mark.skip -] - - -class TestMldonkeyApp(functional.BaseAppTests): - app_name = 'mldonkey' - has_service = True - has_web = True - - def test_upload(self, session_browser): - """Test uploading an ed2k file to mldonkey.""" - functional.app_enable(session_browser, 'mldonkey') - _remove_all_ed2k_files(session_browser) - _upload_sample_ed2k_file(session_browser) - assert _get_number_of_ed2k_files(session_browser) == 1 - - def test_backup_restore(self, session_browser): - """Test backup and restore of ed2k files.""" - functional.app_enable(session_browser, 'mldonkey') - _remove_all_ed2k_files(session_browser) - _upload_sample_ed2k_file(session_browser) - functional.backup_create(session_browser, 'mldonkey', 'test_mldonkey') - - _remove_all_ed2k_files(session_browser) - functional.backup_restore(session_browser, 'mldonkey', 'test_mldonkey') - - assert functional.service_is_running(session_browser, 'mldonkey') - assert _get_number_of_ed2k_files(session_browser) == 1 - - -def _submit_command(browser, command): - """Submit a command to mldonkey.""" - with browser.get_iframe('commands') as commands_frame: - commands_frame.find_by_css('.txt2').fill(command) - commands_frame.find_by_css('.but2').click() - - -def _remove_all_ed2k_files(browser): - """Remove all ed2k files from mldonkey.""" - functional.visit(browser, '/mldonkey/') - _submit_command(browser, 'cancel all') - _submit_command(browser, 'confirm yes') - - -def _upload_sample_ed2k_file(browser): - """Upload a sample ed2k file into mldonkey.""" - functional.visit(browser, '/mldonkey/') - dllink_command = 'dllink ed2k://|file|foo.bar|123|' \ - '0123456789ABCDEF0123456789ABCDEF|/' - _submit_command(browser, dllink_command) - - -def _get_number_of_ed2k_files(browser): - """Return the number of ed2k files currently in mldonkey.""" - functional.visit(browser, '/mldonkey/') - - with browser.get_iframe('commands') as commands_frame: - commands_frame.find_by_xpath( - '//tr//td[contains(text(), "Transfers")]').click() - - with browser.get_iframe('output') as output_frame: - functional.eventually(output_frame.find_by_css, ['.downloaded']) - return len(output_frame.find_by_css('.dl-1')) + len( - output_frame.find_by_css('.dl-2')) diff --git a/plinth/modules/mldonkey/urls.py b/plinth/modules/mldonkey/urls.py deleted file mode 100644 index f96e85994..000000000 --- a/plinth/modules/mldonkey/urls.py +++ /dev/null @@ -1,13 +0,0 @@ -# SPDX-License-Identifier: AGPL-3.0-or-later -""" -URLs for the mldonkey module. -""" - -from django.urls import re_path - -from plinth.views import AppView - -urlpatterns = [ - re_path(r'^apps/mldonkey/$', AppView.as_view(app_id='mldonkey'), - name='index') -] diff --git a/plinth/modules/power/__init__.py b/plinth/modules/power/__init__.py index 89c3a4356..51b5900ac 100644 --- a/plinth/modules/power/__init__.py +++ b/plinth/modules/power/__init__.py @@ -6,6 +6,7 @@ FreedomBox app for power controls. from django.utils.translation import gettext_lazy as _ from plinth import app as app_module +from plinth import menu from plinth.modules.backups.components import BackupRestore from . import manifest @@ -28,11 +29,14 @@ class PowerApp(app_module.App): info = app_module.Info(app_id=self.app_id, version=self._version, is_essential=True, name=_('Power'), - description=_description, manual_page='Power') + icon='fa-power-off', description=_description, + manual_page='Power') self.add(info) + menu_item = menu.Menu('menu-power', info.name, None, info.icon, + 'power:index', parent_url_name='system') + self.add(menu_item) + backup_restore = BackupRestore('backup-restore-power', **manifest.backup) self.add(backup_restore) - - # not in menu, see issue #834 diff --git a/plinth/modules/roundcube/__init__.py b/plinth/modules/roundcube/__init__.py index e53554b6d..90d2e6704 100644 --- a/plinth/modules/roundcube/__init__.py +++ b/plinth/modules/roundcube/__init__.py @@ -3,6 +3,8 @@ FreedomBox app to configure Roundcube. """ +import json + from django.utils.translation import gettext_lazy as _ from plinth import actions @@ -42,7 +44,7 @@ class RoundcubeApp(app_module.App): app_id = 'roundcube' - _version = 1 + _version = 2 def __init__(self): """Create components for the app.""" @@ -94,7 +96,10 @@ def setup(helper, old_version=None): """Install and configure the module.""" helper.call('pre', actions.superuser_run, 'roundcube', ['pre-install']) app.setup(old_version) - helper.call('post', app.enable) + helper.call('post', actions.superuser_run, 'roundcube', ['setup']) + if old_version == 0: + set_config(local_only=True) + helper.call('post', app.enable) def force_upgrade(helper, packages): @@ -109,3 +114,16 @@ def force_upgrade(helper, packages): app.get_component('webserver-roundcube-freedombox').enable() return True + + +def get_config(): + """Return Rouncube configuration.""" + value = actions.superuser_run('roundcube', ['get-config']) + return json.loads(value) + + +def set_config(local_only): + """Set whether only local server should be allowed.""" + actions.superuser_run('roundcube', + ['set-config', '--local-only', + str(local_only)]) diff --git a/plinth/modules/roundcube/forms.py b/plinth/modules/roundcube/forms.py new file mode 100644 index 000000000..0db7a990e --- /dev/null +++ b/plinth/modules/roundcube/forms.py @@ -0,0 +1,19 @@ +# SPDX-License-Identifier: AGPL-3.0-or-later +""" +Configuration forms for roundcube. +""" + +from django import forms +from django.utils.translation import gettext_lazy as _ + +from plinth import cfg +from plinth.utils import format_lazy + + +class RoundcubeForm(forms.Form): + """Roundcube configuration form.""" + local_only = forms.BooleanField( + label=_('Use only the local mail server'), help_text=format_lazy( + _('When enabled, text box for server input is removed from login ' + 'page and users can only read and send mails from this ' + '{box_name}.'), box_name=_(cfg.box_name)), required=False) diff --git a/plinth/modules/roundcube/urls.py b/plinth/modules/roundcube/urls.py index bf575c0a1..f7234f532 100644 --- a/plinth/modules/roundcube/urls.py +++ b/plinth/modules/roundcube/urls.py @@ -5,9 +5,8 @@ URLs for the Roundcube module. from django.urls import re_path -from plinth.views import AppView +from .views import RoundcubeAppView urlpatterns = [ - re_path(r'^apps/roundcube/$', AppView.as_view(app_id='roundcube'), - name='index') + re_path(r'^apps/roundcube/$', RoundcubeAppView.as_view(), name='index') ] diff --git a/plinth/modules/roundcube/views.py b/plinth/modules/roundcube/views.py new file mode 100644 index 000000000..8a7c2f8c0 --- /dev/null +++ b/plinth/modules/roundcube/views.py @@ -0,0 +1,34 @@ +# SPDX-License-Identifier: AGPL-3.0-or-later +""" +Views for roundcube. +""" + +from django.contrib import messages +from django.utils.translation import gettext_lazy as _ + +from plinth.modules import roundcube +from plinth.views import AppView + +from .forms import RoundcubeForm + + +class RoundcubeAppView(AppView): + """Roundcube configuration page.""" + app_id = 'roundcube' + form_class = RoundcubeForm + + def get_initial(self): + """Return the values to fill in the form.""" + initial = super().get_initial() + initial['local_only'] = roundcube.get_config()['local_only'] + return initial + + def form_valid(self, form): + """Change the config of Roundcube app.""" + old_data = form.initial + data = form.cleaned_data + if old_data['local_only'] != data['local_only']: + roundcube.set_config(data['local_only']) + messages.success(self.request, _('Configuration updated')) + + return super().form_valid(form) diff --git a/plinth/modules/shaarli/__init__.py b/plinth/modules/shaarli/__init__.py index b58062559..722f3ca59 100644 --- a/plinth/modules/shaarli/__init__.py +++ b/plinth/modules/shaarli/__init__.py @@ -8,6 +8,7 @@ from django.utils.translation import gettext_lazy as _ from plinth import app as app_module from plinth import frontpage, menu from plinth.modules.apache.components import Webserver +from plinth.modules.backups.components import BackupRestore from plinth.modules.firewall.components import Firewall from plinth.package import Packages @@ -62,6 +63,10 @@ class ShaarliApp(app_module.App): webserver = Webserver('webserver-shaarli', 'shaarli') self.add(webserver) + backup_restore = BackupRestore('backup-restore-shaarli', + **manifest.backup) + self.add(backup_restore) + def setup(helper, old_version=None): """Install and configure the module.""" diff --git a/plinth/modules/shaarli/manifest.py b/plinth/modules/shaarli/manifest.py index b5f815796..152413363 100644 --- a/plinth/modules/shaarli/manifest.py +++ b/plinth/modules/shaarli/manifest.py @@ -1,11 +1,32 @@ # SPDX-License-Identifier: AGPL-3.0-or-later +""" +Application manifest for bind. +""" from django.utils.translation import gettext_lazy as _ +from plinth.clients import store_url + clients = [{ + 'name': + _('Shaarlier'), + 'platforms': [{ + 'type': 'store', + 'os': 'android', + 'store_name': 'google-play', + 'url': store_url('google-play', 'com.dimtion.shaarlier'), + }, { + 'type': 'store', + 'os': 'android', + 'store_name': 'f-droid', + 'url': store_url('f-droid', 'com.dimtion.shaarlier'), + }] +}, { 'name': _('Shaarli'), 'platforms': [{ 'type': 'web', - 'url': '/shaarli' + 'url': '/shaarli/' }] }] + +backup = {'data': {'directories': ['/var/lib/shaarli/data']}} diff --git a/plinth/modules/shaarli/tests/test_functional.py b/plinth/modules/shaarli/tests/test_functional.py new file mode 100644 index 000000000..bdf14ec2b --- /dev/null +++ b/plinth/modules/shaarli/tests/test_functional.py @@ -0,0 +1,73 @@ +# SPDX-License-Identifier: AGPL-3.0-or-later +""" +Functional, browser based tests for shaarli app. +""" + +import pytest +import time + +from plinth.tests import functional + +pytestmark = [pytest.mark.apps, pytest.mark.shaarli] + + +class TestShaarliApp(functional.BaseAppTests): + app_name = 'shaarli' + has_service = False + has_web = True + + @pytest.fixture(scope='class', autouse=True) + def fixture_setup(self, session_browser): + """Setup the app.""" + functional.login(session_browser) + functional.install(session_browser, self.app_name) + functional.app_enable(session_browser, self.app_name) + self._shaarli_is_setup(session_browser) + + def _shaarli_is_setup(self, session_browser): + """Finish shaarli installation by creating user.""" + functional.access_url(session_browser, self.app_name) + if not session_browser.url.endswith('/shaarli/install'): + # Setup has already been completed. + return + + username_field = session_browser.find_by_id('username') + username_field.fill(functional.config['DEFAULT']['username']) + + password_field = session_browser.find_by_id('password') + password_field.fill(functional.config['DEFAULT']['password']) + + functional.submit(session_browser) + + def _shaarli_login(self, session_browser): + """Login to shaarli.""" + functional.access_url(session_browser, 'shaarli/login') + + login_form = session_browser.find_by_id('login-form') + if not login_form: + return + + login_field = login_form.find_by_name('login') + login_field.fill(functional.config['DEFAULT']['username']) + + password_field = login_form.find_by_name('password') + password_field.fill(functional.config['DEFAULT']['password']) + + login_form.find_by_css('input[type=submit]').click() + + def test_add_bookmark(self, session_browser): + """Test adding a bookmark.""" + self._shaarli_login(session_browser) + functional.access_url(session_browser, 'shaarli/admin/add-shaare') + + addlink_form = session_browser.find_by_id('addlink-form') + addlink_form.find_by_id('shaare').fill('https://freedombox.org/') + addlink_form.find_by_css('input[type=submit]').click() + + time.sleep(2) + session_browser.find_by_id('button-save-edit').click() + + links = session_browser.links.find_by_href('https://freedombox.org/') + assert len(links) > 0 + + # TODO: Test deleting bookmarks. diff --git a/plinth/modules/snapshot/forms.py b/plinth/modules/snapshot/forms.py index 5b5fda117..298e745aa 100644 --- a/plinth/modules/snapshot/forms.py +++ b/plinth/modules/snapshot/forms.py @@ -24,9 +24,9 @@ class SnapshotForm(forms.Form): enable_software_snapshots = forms.ChoiceField( label=_('Software Installation Snapshots'), - help_text=_('Enable or disable snapshots before and after software ' - 'installation'), choices=[('yes', _('Enabled')), - ('no', _('Disabled'))]) + help_text=_('Enable or disable snapshots before and after each ' + 'software installation and update.'), + choices=[('yes', _('Enabled')), ('no', _('Disabled'))]) hourly_limit = forms.IntegerField( label=_('Hourly Snapshots Limit'), min_value=0, diff --git a/plinth/modules/sso/views.py b/plinth/modules/sso/views.py index d84984a96..6415f545a 100644 --- a/plinth/modules/sso/views.py +++ b/plinth/modules/sso/views.py @@ -9,9 +9,13 @@ import urllib import axes.utils from axes.decorators import axes_form_invalid +from django import shortcuts +from django.contrib import messages from django.contrib.auth import REDIRECT_FIELD_NAME -from django.contrib.auth.views import LoginView, LogoutView +from django.contrib.auth import logout as auth_logout +from django.contrib.auth.views import LoginView from django.http import HttpResponseRedirect +from django.utils.translation import gettext as _ from plinth import actions, translation, utils, web_framework @@ -89,15 +93,13 @@ class CaptchaLoginView(LoginView): return set_ticket_cookie(request.user, response) -class SSOLogoutView(LogoutView): - """View to log out of FreedomBox and remove the auth_pubtkt cookie.""" - template_name = 'index.html' - - def dispatch(self, request, *args, **kwargs): - response = super(SSOLogoutView, self).dispatch(request, *args, - **kwargs) - response.delete_cookie(SSO_COOKIE_NAME) - return response +def logout(request): + """Logout an authenticated user, remove SSO cookie and redirect to home.""" + auth_logout(request) + response = shortcuts.redirect('index') + response.delete_cookie(SSO_COOKIE_NAME) + messages.success(request, _('Logged out successfully.')) + return response def refresh(request): diff --git a/plinth/modules/users/forms.py b/plinth/modules/users/forms.py index aa310ab44..61814b5c5 100644 --- a/plinth/modules/users/forms.py +++ b/plinth/modules/users/forms.py @@ -75,8 +75,14 @@ class PasswordConfirmForm(forms.Form): """Password confirmation form.""" confirm_password = forms.CharField( widget=forms.PasswordInput, - label=gettext_lazy('Authorization Password'), help_text=gettext_lazy( - 'Enter your current password to authorize account modifications.')) + label=gettext_lazy('Authorization Password')) + + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + + self.fields['confirm_password'].help_text = _( + 'Enter the password for user "{user}" to authorize account ' + 'modifications.').format(user=self.request.user.username) def clean_confirm_password(self): """Check that current user's password matches.""" diff --git a/plinth/modules/users/urls.py b/plinth/modules/users/urls.py index b95391f75..7bce71b59 100644 --- a/plinth/modules/users/urls.py +++ b/plinth/modules/users/urls.py @@ -4,11 +4,10 @@ URLs for the Users module """ from axes.decorators import axes_dispatch -from django.urls import re_path, reverse_lazy +from django.urls import re_path from stronghold.decorators import public -from plinth.modules.sso.views import (CaptchaLoginView, SSOLoginView, - SSOLogoutView) +from plinth.modules.sso.views import CaptchaLoginView, SSOLoginView, logout from plinth.utils import non_admin_view from . import views @@ -30,8 +29,7 @@ urlpatterns = [ # axes_dispatch after axes 5.x becomes available in Debian stable. re_path(r'^accounts/login/$', public(axes_dispatch(SSOLoginView.as_view())), name='login'), - re_path(r'^accounts/logout/$', non_admin_view(SSOLogoutView.as_view()), - {'next_page': reverse_lazy('index')}, name='logout'), + re_path(r'^accounts/logout/$', public(logout), name='logout'), re_path(r'^users/firstboot/$', public(views.FirstBootView.as_view()), name='firstboot'), re_path(r'accounts/login/locked/$', public(CaptchaLoginView.as_view()), diff --git a/plinth/modules/wireguard/templates/wireguard.html b/plinth/modules/wireguard/templates/wireguard.html index 1227189ea..d670179fd 100644 --- a/plinth/modules/wireguard/templates/wireguard.html +++ b/plinth/modules/wireguard/templates/wireguard.html @@ -57,7 +57,7 @@
{% trans "Add Allowed Client" %} @@ -82,8 +82,9 @@ {% for peer in server.peers.values %} {% if forloop.first %} - {{ peer.endpoint }} - + {{ peer.endpoint }} + {{ peer.public_key }} @@ -107,7 +108,7 @@ - + {% csrf_token %} {{ title }} - + {% csrf_token %} {{ form|bootstrap }} diff --git a/plinth/modules/wireguard/templates/wireguard_edit_server.html b/plinth/modules/wireguard/templates/wireguard_edit_server.html index 946d0b6ba..641b7d458 100644 --- a/plinth/modules/wireguard/templates/wireguard_edit_server.html +++ b/plinth/modules/wireguard/templates/wireguard_edit_server.html @@ -10,7 +10,7 @@

{{ title }}

- + {% csrf_token %} {{ form|bootstrap }} diff --git a/plinth/modules/wireguard/templates/wireguard_show_client.html b/plinth/modules/wireguard/templates/wireguard_show_client.html index 1aa363fda..739c57808 100644 --- a/plinth/modules/wireguard/templates/wireguard_show_client.html +++ b/plinth/modules/wireguard/templates/wireguard_show_client.html @@ -17,19 +17,19 @@
- + - + - + - + - + @@ -49,15 +49,15 @@
{% trans "Client public key:" %} {{ client.public_key }}
{% trans "IP address to use for client:" %} {{ client.allowed_ips|join:", " }}
{% trans "Pre-shared key:" %} {{ client.preshared_key }}
{% trans "Server endpoints:" %} {% for endpoint in endpoints %} @@ -37,7 +37,7 @@ {% endfor %}
{% trans "Server public key:" %} {{ server.public_key }}
- + - + - + @@ -66,12 +66,12 @@
{% trans "Data transmitted:" %} {{ client.status.transfer_tx|filesizeformat }}
{% trans "Data received:" %} {{ client.status.transfer_rx|filesizeformat }}
{% trans "Latest handshake:" %} {{ client.status.latest_handshake|default:'' }}
- + - + - + - + - + @@ -48,15 +48,15 @@
{% trans "Server endpoint:" %} {{ peer.endpoint }}
{% trans "Server public key:" %} {{ peer.public_key }}
{% trans "Pre-shared key:" %} {{ peer.preshared_key }}
{% trans "Public key of this machine:" %} {{ server.public_key }}
{% trans "IP address of this machine:" %} {{ server.ip_address }}
- + - + - + @@ -67,12 +67,12 @@ {% endfor %}
- {% trans "Edit" %} - {% trans "Delete" %} diff --git a/plinth/modules/wireguard/tests/test_functional.py b/plinth/modules/wireguard/tests/test_functional.py new file mode 100644 index 000000000..df5b0ec37 --- /dev/null +++ b/plinth/modules/wireguard/tests/test_functional.py @@ -0,0 +1,194 @@ +# SPDX-License-Identifier: AGPL-3.0-or-later +""" +Functional, browser based tests for wireguard app. +""" + +import urllib + +import pytest + +from plinth.tests import functional + +pytestmark = [pytest.mark.apps, pytest.mark.wireguard] + + +class TestWireguardApp(functional.BaseAppTests): + app_name = 'wireguard' + has_web = False + + _client_public_key1 = '8dlHfuAsU0WsnpQkNd8fguwmBtFX5/CkO0xYKbNBt24=' + _client_public_key2 = 'xM/vyXbYtMf9bDTZY3W2x7Moxw4m1ckpnZvVSd4DLho=' + + _server = [ + { + 'peer_endpoint': 'wg1.example.org:1234', + 'peer_public_key': 'HBCqZk4B93N6q19zNleJkAVs+PEfWAPgPpKnrhL/CVw=', + 'ip_address': '10.0.0.2', + 'private_key': '', + 'preshared_key': '' + }, + { + 'peer_endpoint': 'wg2.example.org:5678', + 'peer_public_key': 'Z/iHo0vaeSN8Ykk5KwhQ819MMU5nyzD7y7xFFthlxXI=', + 'ip_address': '192.168.0.2', + 'private_key': 'QC2xEZMn3bgNsSVFrU51+ALSUiUaWg6gRWigh3EeVm0=', + 'preshared_key': 'AHxZ4Rr8Ij4L1aq+ceusSIgBfluqiI9Vb5I2UtQFanI=' + }, + ] + + def test_backup_restore(self, session_browser): + """Skip the test.""" + pytest.skip('Does not implement backup/restore.') + + @staticmethod + def _get_client_href(key): + """Return the href for client show page.""" + key = urllib.parse.quote(urllib.parse.quote(key, safe='')) + return f'/plinth/apps/wireguard/client/{key}/show/' + + def _client_exists(self, browser, key): + """Check whether a client key exists.""" + functional.nav_to_module(browser, 'wireguard') + href = browser.links.find_by_href(self._get_client_href(key)) + return bool(href) + + def _assert_client_details(self, browser, key): + """Check that the client's details are correct.""" + + def get_value(key): + return browser.find_by_css(f'tr.{key} > td').first.text + + functional.nav_to_module(browser, 'wireguard') + href = browser.links.find_by_href(self._get_client_href(key)) + href.first.click() + assert get_value('client-public-key') == key + + @staticmethod + def _add_client(browser, key): + """Add a client.""" + functional.nav_to_module(browser, 'wireguard') + browser.find_by_css('.btn-add-client').first.click() + browser.find_by_id('id_public_key').fill(key) + functional.submit(browser, form_class='form-add-client') + + def _edit_client(self, browser, key1, key2): + """Edit a client""" + functional.nav_to_module(browser, 'wireguard') + browser.links.find_by_href(self._get_client_href(key1)).first.click() + browser.find_by_css('.btn-edit-client').first.click() + browser.find_by_id('id_public_key').fill(key2) + functional.submit(browser, form_class='form-edit-client') + + def _delete_client(self, browser, key): + """Delete a client""" + functional.nav_to_module(browser, 'wireguard') + browser.links.find_by_href(self._get_client_href(key)).first.click() + browser.find_by_css('.btn-delete-client').first.click() + functional.submit(browser, form_class='form-delete-client') + + def test_add_edit_delete_client(self, session_browser): + """Test adding, editing and deleting a WireGuard client.""" + if self._client_exists(session_browser, self._client_public_key1): + self._delete_client(session_browser, self._client_public_key1) + + if self._client_exists(session_browser, self._client_public_key2): + self._delete_client(session_browser, self._client_public_key2) + + self._add_client(session_browser, self._client_public_key1) + assert self._client_exists(session_browser, self._client_public_key1) + + self._edit_client(session_browser, self._client_public_key1, + self._client_public_key2) + assert not self._client_exists(session_browser, + self._client_public_key1) + assert self._client_exists(session_browser, self._client_public_key2) + + self._delete_client(session_browser, self._client_public_key2) + assert not self._client_exists(session_browser, + self._client_public_key2) + + @staticmethod + def _get_server_href(browser, key): + """Return the href for server show page.""" + return browser.find_by_css( + f'.peer-public-key[data-public-key="{key}"] a') + + def _server_exists(self, browser, config): + """Check whether a server key exists.""" + functional.nav_to_module(browser, 'wireguard') + href = self._get_server_href(browser, config['peer_public_key']) + return bool(href) + + def _assert_server_details(self, browser, config): + """Check that the server's details are correct.""" + + def get_value(key): + return browser.find_by_css(f'tr.{key} > td').first.text + + functional.nav_to_module(browser, 'wireguard') + href = self._get_server_href(browser, config['peer_public_key']) + href.first.click() + assert get_value('peer-endpoint') == config['peer_endpoint'] + assert get_value('peer-public-key') == config['peer_public_key'] + assert get_value('server-ip-address') == config['ip_address'] + assert get_value('peer-preshared-key') == (config['preshared_key'] + or 'None') + + @staticmethod + def _add_server(browser, config): + """Add a server.""" + functional.nav_to_module(browser, 'wireguard') + browser.find_by_css('.btn-add-server').first.click() + browser.find_by_id('id_peer_endpoint').fill(config['peer_endpoint']) + browser.find_by_id('id_peer_public_key').fill( + config['peer_public_key']) + browser.find_by_id('id_ip_address').fill(config['ip_address']) + browser.find_by_id('id_private_key').fill(config['private_key']) + browser.find_by_id('id_preshared_key').fill(config['preshared_key']) + functional.submit(browser, form_class='form-add-server') + + def _edit_server(self, browser, config1, config2): + """Edit a server.""" + functional.nav_to_module(browser, 'wireguard') + self._get_server_href(browser, + config1['peer_public_key']).first.click() + browser.find_by_css('.btn-edit-server').first.click() + browser.find_by_id('id_peer_endpoint').fill(config2['peer_endpoint']) + browser.find_by_id('id_peer_public_key').fill( + config2['peer_public_key']) + browser.find_by_id('id_ip_address').fill(config2['ip_address']) + browser.find_by_id('id_private_key').fill(config2['private_key']) + browser.find_by_id('id_preshared_key').fill(config2['preshared_key']) + functional.submit(browser, form_class='form-edit-server') + + def _delete_server(self, browser, config): + """Delete a server""" + functional.nav_to_module(browser, 'wireguard') + self._get_server_href(browser, config['peer_public_key']).first.click() + browser.find_by_css('.btn-delete-server').first.click() + functional.submit(browser, form_class='form-delete-server') + + def test_add_edit_delete_server(self, session_browser): + """Test adding, editing and deleting a WireGuard server.""" + if self._server_exists(session_browser, self._server[0]): + self._delete_server(session_browser, self._server[0]) + + if self._server_exists(session_browser, self._server[1]): + self._delete_server(session_browser, self._server[1]) + + self._add_server(session_browser, self._server[0]) + self._assert_server_details(session_browser, self._server[0]) + + # XXX: Editing the connection is very flaky. Fails, incorrect and + # crashes. Fix it. + + # self._edit_server(session_browser, self._server[0], + # self._server[1]) assert not self._server_exists(session_browser, + # self._server[0]) self._assert_server_details(session_browser, + # self._server[1]) + + # self._delete_server(session_browser, self._server[1]) + # assert not self._server_exists(session_browser, self._server[1]) + + self._delete_server(session_browser, self._server[0]) + assert not self._server_exists(session_browser, self._server[0]) diff --git a/plinth/modules/wireguard/utils.py b/plinth/modules/wireguard/utils.py index e76689d19..114c91241 100644 --- a/plinth/modules/wireguard/utils.py +++ b/plinth/modules/wireguard/utils.py @@ -169,7 +169,7 @@ def add_server(settings): def edit_server(interface, settings): - """Edit information for a connecting to a server.""" + """Edit information for connecting to a server.""" settings['common']['interface'] = interface settings['common']['name'] = 'WireGuard-Client-' + interface if not settings['wireguard']['private_key']: diff --git a/plinth/modules/wordpress/tests/test_functional.py b/plinth/modules/wordpress/tests/test_functional.py index 8a594a5b4..4f73fd984 100644 --- a/plinth/modules/wordpress/tests/test_functional.py +++ b/plinth/modules/wordpress/tests/test_functional.py @@ -7,6 +7,8 @@ import pytest from plinth.tests import functional +pytestmark = [pytest.mark.apps, pytest.mark.wordpress] + @pytest.fixture(scope='module', autouse=True) def fixture_background(session_browser): diff --git a/pyproject.toml b/pyproject.toml index cd2800bfb..79690006f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,7 +40,6 @@ markers = [ "mediawiki", "minetest", "minidlna", - "mldonkey", "mumble", "openvpn", "pagekite", @@ -52,6 +51,7 @@ markers = [ "samba", "searx", "security", + "shaarli", "shadowsocks", "sharing", "snapshot", @@ -65,5 +65,7 @@ markers = [ "ttrss", "upgrades", "users", + "wireguard", + "wordpress", "zoph", ] diff --git a/setup.py b/setup.py index 936690c98..093a046b1 100755 --- a/setup.py +++ b/setup.py @@ -48,6 +48,7 @@ DISABLED_APPS_TO_REMOVE = [ 'restore', 'repro', 'tahoe', + 'mldonkey', ] REMOVED_FILES = [ diff --git a/static/themes/default/icons/mldonkey.png b/static/themes/default/icons/mldonkey.png deleted file mode 100644 index 32bf32ce0..000000000 Binary files a/static/themes/default/icons/mldonkey.png and /dev/null differ diff --git a/static/themes/default/icons/mldonkey.svg b/static/themes/default/icons/mldonkey.svg deleted file mode 100644 index ad2e0d4b8..000000000 --- a/static/themes/default/icons/mldonkey.svg +++ /dev/null @@ -1,812 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
{% trans "Data transmitted:" %} {{ peer.status.transfer_tx|filesizeformat }}
{% trans "Data received:" %} {{ peer.status.transfer_rx|filesizeformat }}
{% trans "Latest handshake:" %} {{ peer.status.latest_handshake|default:'' }}