mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-06-10 11:00:22 +00:00
freedombox Debian release 24.24
-----BEGIN PGP SIGNATURE----- iQJKBAABCgA0FiEEfWrbdQ+RCFWJSEvmd8DHXntlCAgFAmc8AQcWHGp2YWxsZXJv eUBtYWlsYm94Lm9yZwAKCRB3wMdee2UICPRXEACAZTfGvJRlcVPe4Ca5s3OpNRT2 sbK3JLcfG0+weOSVXCYgrAuCgVhjb5mrj8pN5fjFfZD6mlNjrzriRpM9exjhFrus SHv49BI2V35grodyL2I62H9bleCi8GqUG2JgyF30wD0bbuv4YMVmaoXolSYZuldv ABL/6XIv6oRwXH6Xe15FYnwff++5iCcTN3GvWIY7oTcfyyOUHvBJT8FhwRnkO/S6 BPvH+tNB0HL5/TXyBO/ESsSYPraNg1OZRegboT4KEX+A7hPKrGAG5beUh5RDpzhx OWGcLeIqe3kbp+SqJTSGGjqS3SQMcjhrjbI1TKh5s9uXUtPDtuNokJUIu6uftZgI fIsI78jLqEwVlKU7bg4mUFMVavDRBibKJ+1svcCBRZFbtr83vyo40HqvYYIkOApM Uz/rq1qYlHwXEhdstMpx8zGULhr7M1/wL74sQZ+/aoVdOj5e/j9dVnuj9qHqQ5g/ kTWmCXs8KLg18nOqOm9z6NEWNFrR+kOD9+T4jSkUI/B840KZJgUW7Op8SCg6cX3I bJ04+LNczeaPJROlwuQzSsnqRewdMzGo2MfdvKHe0hpfDVdnRwzQxIGcalAyiYud CiUzMiREFInM1+NLnGZLP/UX62yxVt93yFT/rhY/KpCxDu7GK4NvUiQ5uANf0XbD Q5hcVKv87AWonndDvg== =qEAJ -----END PGP SIGNATURE----- gpgsig -----BEGIN PGP SIGNATURE----- iQJKBAABCgA0FiEEfWrbdQ+RCFWJSEvmd8DHXntlCAgFAmc/2m4WHGp2YWxsZXJv eUBtYWlsYm94Lm9yZwAKCRB3wMdee2UICPxFEACaTGH3Rckap+vXXArkdYR18XlC nAIHVMGpkBlHMCm2pka/UkznvACa+fYkdOExyRLkwTt/XCtWD/Tudbz+/Ei/P1TD 3gdsNIM+4ych94bd1xxLh8kPgVYXgHUjOFgASif2RPo5felWVRZny4BbkoHH2hAi ffNf3b8uBKaOcBFOr1EOU4Nxl45ODHF6BwyCFJQkOM9e9SJuUP9Y4Icy1Eft0dz/ uGvriWNmoFq0deNv8G6GwvL3VEdg97OapdHHRWOVw/mpOrIfLNefPhpYVN1FW//f eVZj7b1TZ5Y44Lg1//ux6/zJWArPo8o0Zk20A+CXbW5kzVeuoECN2wZ8vQjWsnTh CVrQy0PowhR8Q8EphsGsaRuuY8lLne3rcpjvTRDE36xnE3LaA+dZ/Rqjnp6ns3QV inyJNz6p23kI6JUEE8WTnkTXougUKvEVM/UPH8APhp+v0jYjdPvFFmsJHcIw/2m0 32YNSDy/Xxe1f8621LjZ43VbV95tcnrLpdDWv9/aEP5kOy1tkG5A2b3xZyJ5Dv9u Mxjh8FuNu4OCyDUpab1jkvPzCYaQe0aiCuToJkAPIdPSMwzpjJ1HC9dE4nEkqTzu 5U8MV6bX2PkF1JzkraAJzkWX0DGUJPMcNvUEDpBxlv7aAxmmeAzODwPtk1n9aSqZ REKLiS+lrcqGBPMBFw== =Qe/I -----END PGP SIGNATURE----- Merge tag 'v24.24' into debian/bookworm-backports freedombox Debian release 24.24 Signed-off-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
commit
5b3f8e4b11
20
container
20
container
@ -121,6 +121,7 @@ import os
|
||||
import pathlib
|
||||
import platform
|
||||
import re
|
||||
import shlex
|
||||
import shutil
|
||||
import subprocess
|
||||
import sys
|
||||
@ -245,6 +246,8 @@ export FREEDOMBOX_SAMBA_PORT=445
|
||||
chmod --recursive --silent a+rw .pytest_cache/
|
||||
chmod --recursive --silent a+w htmlcov
|
||||
chmod --silent a+w .coverage
|
||||
|
||||
exit 0
|
||||
'''
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
@ -1079,19 +1082,20 @@ def subcommand_ssh(arguments):
|
||||
def subcommand_run_tests(arguments):
|
||||
"""Run tests in the container."""
|
||||
distribution = arguments.distribution
|
||||
pytest_args = ' '.join(arguments.pytest_args or [])
|
||||
pytest_args_list = arguments.pytest_args or []
|
||||
pytest_args = ' '.join((shlex.quote(arg) for arg in pytest_args_list))
|
||||
|
||||
ip_address = _wait_for(lambda: _get_ip_address(distribution))
|
||||
ssh_command = _get_ssh_command(ip_address, distribution)
|
||||
|
||||
# Disable cache as root has no rights to overwrite files on /freedombox
|
||||
pytest_command = f'py.test-3 {pytest_args}'
|
||||
pytest_command = f'py.test-3 --color=yes {pytest_args}'
|
||||
logger.info('Pytest command: %s', pytest_command)
|
||||
|
||||
test_script = SETUP_AND_RUN_TESTS_SCRIPT.format(
|
||||
pytest_command=pytest_command, distribution=distribution)
|
||||
setup_and_run_command = ['sudo', 'bash', '-c', f"'{test_script}'"]
|
||||
command = ssh_command + setup_and_run_command
|
||||
os.execlp('ssh', *command)
|
||||
command = ssh_command + ['sudo', 'bash']
|
||||
process = subprocess.run(command, input=test_script.encode(), check=False)
|
||||
sys.exit(process.returncode)
|
||||
|
||||
|
||||
def subcommand_stop(arguments):
|
||||
@ -1108,11 +1112,11 @@ def subcommand_destroy(arguments):
|
||||
def subcommand_update(arguments):
|
||||
"""Update the disk image."""
|
||||
if _is_update_required(arguments.distribution):
|
||||
logger.info("Updating...")
|
||||
logger.info('Updating...')
|
||||
_download_disk_image(arguments.distribution, arguments.hkp_client,
|
||||
force=True)
|
||||
else:
|
||||
logger.info("Already using the latest image")
|
||||
logger.info('Already using the latest image')
|
||||
|
||||
|
||||
def set_URLs():
|
||||
|
||||
46
debian/changelog
vendored
46
debian/changelog
vendored
@ -1,3 +1,49 @@
|
||||
freedombox (24.24) unstable; urgency=medium
|
||||
|
||||
[ Burak Yavuz ]
|
||||
* Translated using Weblate (Turkish)
|
||||
|
||||
[ 大王叫我来巡山 ]
|
||||
* Translated using Weblate (Chinese (Simplified Han script))
|
||||
|
||||
[ 109247019824 ]
|
||||
* Translated using Weblate (Bulgarian)
|
||||
|
||||
[ Besnik Bleta ]
|
||||
* Translated using Weblate (Albanian)
|
||||
|
||||
[ Sunil Mohan Adapa ]
|
||||
* networks: Fix editing wireless connections with SSID field
|
||||
* networks: Fix display of mangled SSIDs when scanning Wi-Fi networks
|
||||
* networks: Fix display of strength and channel for Wi-Fi connections
|
||||
* networks: Improve styling of badges in the information tables
|
||||
* tests: functional: Wait for uninstall page load before uninstalling
|
||||
* i18n: Fix translation of FreedomBox name in various places
|
||||
* rssbridge: Mention miniflux in app description similar to tt-rss
|
||||
* tests: functional: Don't enable/disable app during tests
|
||||
* tests: functional: Fix visit() returning prematurely before page load
|
||||
* networks: Overhaul Wi-Fi network scan page
|
||||
* networks: wifi: In new connection page set form defaults properly
|
||||
* ui: Drop logo backgrounds for index, apps, and system pages
|
||||
* ui: Drop box shadow around the card in card lists
|
||||
* nextcloud: Switch to using FreedomBox container registry
|
||||
* nextcloud: Drop diagnostic for checking availability of docker.com
|
||||
|
||||
[ Dietmar ]
|
||||
* Translated using Weblate (German)
|
||||
|
||||
[ Jiří Podhorecký ]
|
||||
* Translated using Weblate (Czech)
|
||||
|
||||
[ Veiko Aasa ]
|
||||
* container: Quote arguments that contain spaces when restoring pytest args
|
||||
|
||||
[ James Valleroy ]
|
||||
* locale: Update translation strings
|
||||
* doc: Fetch latest manual
|
||||
|
||||
-- James Valleroy <jvalleroy@mailbox.org> Mon, 18 Nov 2024 20:39:56 -0500
|
||||
|
||||
freedombox (24.23~bpo12+1) bookworm-backports; urgency=medium
|
||||
|
||||
* Rebuild for bookworm-backports.
|
||||
|
||||
@ -8,11 +8,37 @@ For more technical details, see the [[https://salsa.debian.org/freedombox-team/f
|
||||
|
||||
The following are the release notes for each !FreedomBox version.
|
||||
|
||||
== FreedomBox 24.24 (2024-11-18) ==
|
||||
|
||||
=== Highlights ===
|
||||
|
||||
* nextcloud: Switch to using !FreedomBox container registry
|
||||
* networks: Overhaul Wi-Fi network scan page
|
||||
|
||||
=== Other Changes ===
|
||||
|
||||
* container: Quote arguments that contain spaces when restoring pytest args
|
||||
* i18n: Fix translation of !FreedomBox name in various places
|
||||
* locale: Update translations for Albanian, Bulgarian, Chinese (Simplified Han script), Czech, German, Turkish
|
||||
* networks: Fix display of mangled SSIDs when scanning Wi-Fi networks
|
||||
* networks: Fix display of strength and channel for Wi-Fi connections
|
||||
* networks: Fix editing wireless connections with SSID field
|
||||
* networks: Improve styling of badges in the information tables
|
||||
* networks: wifi: In new connection page set form defaults properly
|
||||
* nextcloud: Drop diagnostic for checking availability of docker.com
|
||||
* rssbridge: Mention miniflux in app description similar to tt-rss
|
||||
* tests: functional: Don't enable/disable app during tests
|
||||
* tests: functional: Fix visit() returning prematurely before page load
|
||||
* tests: functional: Wait for uninstall page load before uninstalling
|
||||
* ui: Drop box shadow around the card in card lists
|
||||
* ui: Drop logo backgrounds for index, apps, and system pages
|
||||
|
||||
== FreedomBox 24.23 (2024-11-04) ==
|
||||
|
||||
* backups: Better explanation for the format of upload file
|
||||
* backups: Sort list of apps in backup, restore, and schedules
|
||||
* base: Add link to about for unauthenticated users
|
||||
* debian: Drop python3-flake8 build dependency
|
||||
* ejabberd: Set mod_mam default to always
|
||||
* functional tests: Add pytest testinfra plugin
|
||||
* help: Add all footer links to about page
|
||||
|
||||
@ -8,11 +8,37 @@ For more technical details, see the [[https://salsa.debian.org/freedombox-team/f
|
||||
|
||||
The following are the release notes for each !FreedomBox version.
|
||||
|
||||
== FreedomBox 24.24 (2024-11-18) ==
|
||||
|
||||
=== Highlights ===
|
||||
|
||||
* nextcloud: Switch to using !FreedomBox container registry
|
||||
* networks: Overhaul Wi-Fi network scan page
|
||||
|
||||
=== Other Changes ===
|
||||
|
||||
* container: Quote arguments that contain spaces when restoring pytest args
|
||||
* i18n: Fix translation of !FreedomBox name in various places
|
||||
* locale: Update translations for Albanian, Bulgarian, Chinese (Simplified Han script), Czech, German, Turkish
|
||||
* networks: Fix display of mangled SSIDs when scanning Wi-Fi networks
|
||||
* networks: Fix display of strength and channel for Wi-Fi connections
|
||||
* networks: Fix editing wireless connections with SSID field
|
||||
* networks: Improve styling of badges in the information tables
|
||||
* networks: wifi: In new connection page set form defaults properly
|
||||
* nextcloud: Drop diagnostic for checking availability of docker.com
|
||||
* rssbridge: Mention miniflux in app description similar to tt-rss
|
||||
* tests: functional: Don't enable/disable app during tests
|
||||
* tests: functional: Fix visit() returning prematurely before page load
|
||||
* tests: functional: Wait for uninstall page load before uninstalling
|
||||
* ui: Drop box shadow around the card in card lists
|
||||
* ui: Drop logo backgrounds for index, apps, and system pages
|
||||
|
||||
== FreedomBox 24.23 (2024-11-04) ==
|
||||
|
||||
* backups: Better explanation for the format of upload file
|
||||
* backups: Sort list of apps in backup, restore, and schedules
|
||||
* base: Add link to about for unauthenticated users
|
||||
* debian: Drop python3-flake8 build dependency
|
||||
* ejabberd: Set mod_mam default to always
|
||||
* functional tests: Add pytest testinfra plugin
|
||||
* help: Add all footer links to about page
|
||||
|
||||
@ -3,4 +3,4 @@
|
||||
Package init file.
|
||||
"""
|
||||
|
||||
__version__ = '24.23'
|
||||
__version__ = '24.24'
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2023-10-19 06:18+0000\n"
|
||||
"Last-Translator: Shaik <arifashaik807@gmail.com>\n"
|
||||
"Language-Team: Arabic <https://hosted.weblate.org/projects/freedombox/"
|
||||
@ -4786,7 +4786,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr ""
|
||||
|
||||
@ -4802,7 +4802,7 @@ msgid "Create Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -4822,14 +4822,14 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr ""
|
||||
|
||||
@ -4840,7 +4840,7 @@ msgstr ""
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr ""
|
||||
|
||||
@ -4849,7 +4849,7 @@ msgid "Computer"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -4857,7 +4857,7 @@ msgstr ""
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr ""
|
||||
|
||||
@ -4867,13 +4867,13 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr ""
|
||||
@ -5047,6 +5047,27 @@ msgid ""
|
||||
"full instructions on how to perform this task."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, python-format
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
msgid "Last scanned: "
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
@ -5244,51 +5265,51 @@ msgstr ""
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
@ -5991,20 +6012,20 @@ msgstr ""
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr ""
|
||||
|
||||
@ -8366,7 +8387,7 @@ msgid ""
|
||||
"account for Zoph."
|
||||
msgstr ""
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2020-06-10 15:41+0000\n"
|
||||
"Last-Translator: aiman an <an1f3@hotmail.com>\n"
|
||||
"Language-Team: Arabic (Saudi Arabia) <https://hosted.weblate.org/projects/"
|
||||
@ -4805,7 +4805,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr ""
|
||||
|
||||
@ -4821,7 +4821,7 @@ msgid "Create Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -4841,14 +4841,14 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr ""
|
||||
|
||||
@ -4859,7 +4859,7 @@ msgstr ""
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr ""
|
||||
|
||||
@ -4868,7 +4868,7 @@ msgid "Computer"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -4876,7 +4876,7 @@ msgstr ""
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr ""
|
||||
|
||||
@ -4886,13 +4886,13 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr ""
|
||||
@ -5066,6 +5066,27 @@ msgid ""
|
||||
"full instructions on how to perform this task."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, python-format
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
msgid "Last scanned: "
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
@ -5263,51 +5284,51 @@ msgstr ""
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
@ -6012,20 +6033,20 @@ msgstr ""
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr ""
|
||||
|
||||
@ -8389,7 +8410,7 @@ msgid ""
|
||||
"account for Zoph."
|
||||
msgstr ""
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
@ -4771,7 +4771,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr ""
|
||||
|
||||
@ -4787,7 +4787,7 @@ msgid "Create Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -4807,14 +4807,14 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr ""
|
||||
|
||||
@ -4825,7 +4825,7 @@ msgstr ""
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr ""
|
||||
|
||||
@ -4834,7 +4834,7 @@ msgid "Computer"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -4842,7 +4842,7 @@ msgstr ""
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr ""
|
||||
|
||||
@ -4852,13 +4852,13 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr ""
|
||||
@ -5032,6 +5032,27 @@ msgid ""
|
||||
"full instructions on how to perform this task."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, python-format
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
msgid "Last scanned: "
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
@ -5229,51 +5250,51 @@ msgstr ""
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
@ -5974,20 +5995,20 @@ msgstr ""
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr ""
|
||||
|
||||
@ -8346,7 +8367,7 @@ msgid ""
|
||||
"account for Zoph."
|
||||
msgstr ""
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"PO-Revision-Date: 2024-10-23 05:15+0000\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2024-11-06 05:06+0000\n"
|
||||
"Last-Translator: 109247019824 <stoyan@gmx.com>\n"
|
||||
"Language-Team: Bulgarian <https://hosted.weblate.org/projects/freedombox/"
|
||||
"freedombox/bg/>\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 5.8.2-dev\n"
|
||||
"X-Generator: Weblate 5.8.2\n"
|
||||
|
||||
#: config.py:103
|
||||
#, python-brace-format
|
||||
@ -244,7 +244,7 @@ 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“ изключва този вид резервно копие. Изпълнява се в "
|
||||
"определен час всеки ден."
|
||||
|
||||
@ -326,6 +326,9 @@ msgid ""
|
||||
"file previously downloaded from the result of a successful backup on a "
|
||||
"{box_name}. It must have a .tar.gz extension."
|
||||
msgstr ""
|
||||
"Изберете файла с резервно копие, който да изпратите от компютъра. Това "
|
||||
"трябва да бъде файл, резултат от успешно резервно копие на {box_name}, който "
|
||||
"е бил изтеглен предварително. Трябва да има разширение .tar.gz."
|
||||
|
||||
#: modules/backups/forms.py:152
|
||||
msgid "Repository path format incorrect."
|
||||
@ -2776,10 +2779,8 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: modules/help/templates/help_about.html:85
|
||||
#, fuzzy
|
||||
#| msgid "Learn more"
|
||||
msgid "Learn"
|
||||
msgstr "Научете повече"
|
||||
msgstr "Научете"
|
||||
|
||||
#: modules/help/templates/help_about.html:88
|
||||
msgid "Homepage"
|
||||
@ -2791,17 +2792,15 @@ msgstr "Дарение"
|
||||
|
||||
#: modules/help/templates/help_about.html:107
|
||||
msgid "Join project"
|
||||
msgstr ""
|
||||
msgstr "Присъединете се към проекта"
|
||||
|
||||
#: modules/help/templates/help_about.html:111
|
||||
msgid "Translate"
|
||||
msgstr ""
|
||||
msgstr "Превеждане"
|
||||
|
||||
#: modules/help/templates/help_about.html:117
|
||||
#, fuzzy
|
||||
#| msgid "Get Support"
|
||||
msgid "Support"
|
||||
msgstr "Получаване на помощ"
|
||||
msgstr "Поддръжка"
|
||||
|
||||
#: modules/help/templates/help_about.html:121
|
||||
msgid "Forum"
|
||||
@ -5016,7 +5015,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr ""
|
||||
|
||||
@ -5032,7 +5031,7 @@ msgid "Create Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -5052,14 +5051,14 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr ""
|
||||
|
||||
@ -5070,7 +5069,7 @@ msgstr ""
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr ""
|
||||
|
||||
@ -5079,7 +5078,7 @@ msgid "Computer"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr "Редактиране на връзката"
|
||||
|
||||
@ -5087,7 +5086,7 @@ msgstr "Редактиране на връзката"
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr "PPPoE"
|
||||
|
||||
@ -5097,13 +5096,13 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr ""
|
||||
@ -5277,6 +5276,27 @@ msgid ""
|
||||
"full instructions on how to perform this task."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, python-format
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
msgid "Last scanned: "
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
@ -5474,51 +5494,51 @@ msgstr "Връзката не може да бъде променена: връ
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
@ -6244,25 +6264,29 @@ msgstr ""
|
||||
"потребител</a>, принадлежащ към групата feed-reader."
|
||||
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
#, fuzzy, python-brace-format
|
||||
#| msgid ""
|
||||
#| "You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
#| "follow various websites. When adding a feed, enable authentication and "
|
||||
#| "use your {box_name} credentials."
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
"Можете да използвате RSS-Bridge заедно с <a href=\"{ttrss_url}\">Tiny Tiny "
|
||||
"RSS</a>, за да следвате различни страници. При добавяне на емисия, включете "
|
||||
"удостоверяването и използвайте данните за вход на {box_name}."
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr "Четене и абонамент за новинарски емисии"
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr "RSS-Bridge"
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr "Създател на емисии на RSS"
|
||||
|
||||
@ -8147,8 +8171,6 @@ msgstr ""
|
||||
"бъдат пренебрегнати."
|
||||
|
||||
#: modules/users/forms.py:252
|
||||
#, fuzzy
|
||||
#| msgid "Delete User"
|
||||
msgid "Delete user"
|
||||
msgstr "Премахване на потребител"
|
||||
|
||||
@ -8157,12 +8179,12 @@ msgid ""
|
||||
"Deleting the user account will also remove all the files related to the "
|
||||
"user. Deleting files can be avoided by setting the user account as inactive."
|
||||
msgstr ""
|
||||
"Премахването на профил на потребител ще премахне и всички прилежащи файлове. "
|
||||
"Премахването на файлове може да бъде избегнато, като профилът бъде изключен."
|
||||
|
||||
#: modules/users/forms.py:305
|
||||
#, fuzzy
|
||||
#| msgid "Failed to add user to group."
|
||||
msgid "Failed to delete user."
|
||||
msgstr "Потребителят не е добавен към групата."
|
||||
msgstr "Потребителят не е премахнат."
|
||||
|
||||
#: modules/users/forms.py:320
|
||||
msgid "Renaming LDAP user failed."
|
||||
@ -8288,31 +8310,32 @@ msgid "Save Changes"
|
||||
msgstr "Запазване на промените"
|
||||
|
||||
#: modules/users/templates/users_update.html:41
|
||||
#, fuzzy, python-format
|
||||
#| msgid "Delete user <strong>%(username)s</strong> permanently?"
|
||||
#, python-format
|
||||
msgid "Delete user <em>%(username)s</em> and all the user's files?"
|
||||
msgstr ""
|
||||
"Потвърждавате ли премахването на потребителя <strong>%(username)s</strong>?"
|
||||
"Потвърждавате ли премахването на потребителя <em>%(username)s</em> и всички "
|
||||
"негови файлове?"
|
||||
|
||||
#: modules/users/templates/users_update.html:46 templates/messages.html:11
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
msgstr "Затваряне"
|
||||
|
||||
#: modules/users/templates/users_update.html:51
|
||||
msgid ""
|
||||
"Deleting a user account also removes all the files user's home directory. If "
|
||||
"you wish to keep these files, disable the user account instead."
|
||||
msgstr ""
|
||||
"При премахване на профил на потребител се премахват и всички файлове от "
|
||||
"домашната му папка. Ако желаете тези файлове да бъдат запазени, вместо да "
|
||||
"премахвате профила го изключете.."
|
||||
|
||||
#: modules/users/templates/users_update.html:59
|
||||
#, fuzzy
|
||||
#| msgid "Delete %(username)s"
|
||||
msgid "Delete user and files"
|
||||
msgstr "Премахване на %(username)s"
|
||||
msgstr "Премахване на файловете на %(username)s"
|
||||
|
||||
#: modules/users/templates/users_update.html:62
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
msgstr "Отказ"
|
||||
|
||||
#: modules/users/views.py:41
|
||||
#, python-format
|
||||
@ -8329,10 +8352,9 @@ msgid "Edit User"
|
||||
msgstr "Промяна на потребител"
|
||||
|
||||
#: modules/users/views.py:111
|
||||
#, fuzzy, python-format
|
||||
#| msgid "User %(username)s created."
|
||||
#, python-format
|
||||
msgid "User %(username)s deleted."
|
||||
msgstr "Потребителят %(username)s е създаден."
|
||||
msgstr "Потребителят %(username)s е премахнат."
|
||||
|
||||
#: modules/users/views.py:130
|
||||
msgid "Change Password"
|
||||
@ -8730,7 +8752,7 @@ msgstr "Zoph"
|
||||
|
||||
#: modules/zoph/__init__.py:57
|
||||
msgid "Photo Organizer"
|
||||
msgstr ""
|
||||
msgstr "Организатор на фотографии"
|
||||
|
||||
#: modules/zoph/forms.py:14
|
||||
msgid "Enable OpenStreetMap for maps"
|
||||
@ -8746,7 +8768,7 @@ msgstr ""
|
||||
|
||||
#: modules/zoph/manifest.py:26
|
||||
msgid "Photo"
|
||||
msgstr ""
|
||||
msgstr "Фотографии"
|
||||
|
||||
#: modules/zoph/manifest.py:26
|
||||
msgid "Organizer"
|
||||
@ -8764,7 +8786,7 @@ msgid ""
|
||||
"account for Zoph."
|
||||
msgstr ""
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
@ -8946,7 +8968,7 @@ msgstr "Услугата <em>%(service_name)s</em> не работи."
|
||||
|
||||
#: templates/apps.html:29
|
||||
msgid "Search with tags"
|
||||
msgstr ""
|
||||
msgstr "Търсене по етикети"
|
||||
|
||||
#: templates/base.html:31
|
||||
msgid ""
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2021-06-16 07:33+0000\n"
|
||||
"Last-Translator: Oymate <dhruboadittya96@gmail.com>\n"
|
||||
"Language-Team: Bengali <https://hosted.weblate.org/projects/freedombox/"
|
||||
@ -4819,7 +4819,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr ""
|
||||
|
||||
@ -4835,7 +4835,7 @@ msgid "Create Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -4855,14 +4855,14 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr ""
|
||||
|
||||
@ -4873,7 +4873,7 @@ msgstr ""
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr ""
|
||||
|
||||
@ -4882,7 +4882,7 @@ msgid "Computer"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -4890,7 +4890,7 @@ msgstr ""
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr ""
|
||||
|
||||
@ -4900,13 +4900,13 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr ""
|
||||
@ -5080,6 +5080,27 @@ msgid ""
|
||||
"full instructions on how to perform this task."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, python-format
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
msgid "Last scanned: "
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
@ -5277,51 +5298,51 @@ msgstr ""
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
@ -6024,20 +6045,20 @@ msgstr ""
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr ""
|
||||
|
||||
@ -8404,7 +8425,7 @@ msgid ""
|
||||
"account for Zoph."
|
||||
msgstr ""
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"PO-Revision-Date: 2024-10-24 15:15+0000\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2024-11-07 15:00+0000\n"
|
||||
"Last-Translator: Jiří Podhorecký <j.podhorecky@volny.cz>\n"
|
||||
"Language-Team: Czech <https://hosted.weblate.org/projects/freedombox/"
|
||||
"freedombox/cs/>\n"
|
||||
@ -17,7 +17,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 5.8.2-dev\n"
|
||||
"X-Generator: Weblate 5.8.2\n"
|
||||
|
||||
#: config.py:103
|
||||
#, python-brace-format
|
||||
@ -322,6 +322,9 @@ msgid ""
|
||||
"file previously downloaded from the result of a successful backup on a "
|
||||
"{box_name}. It must have a .tar.gz extension."
|
||||
msgstr ""
|
||||
"Vyberte záložní soubor, který chcete nahrát z místního počítače. Musí se "
|
||||
"jednat o soubor, který byl dříve stažen jako výsledek úspěšného zálohování "
|
||||
"na {box_name}. Musí mít příponu .tar.gz."
|
||||
|
||||
#: modules/backups/forms.py:152
|
||||
msgid "Repository path format incorrect."
|
||||
@ -2946,8 +2949,6 @@ msgstr ""
|
||||
"source <i>package_name </i>\" v terminálu (pomocí Cockpit nebo SSH)."
|
||||
|
||||
#: modules/help/templates/help_about.html:85
|
||||
#, fuzzy
|
||||
#| msgid "Learn more"
|
||||
msgid "Learn"
|
||||
msgstr "Více informací"
|
||||
|
||||
@ -2961,17 +2962,15 @@ msgstr "Podpořit vývoj darem"
|
||||
|
||||
#: modules/help/templates/help_about.html:107
|
||||
msgid "Join project"
|
||||
msgstr ""
|
||||
msgstr "Připojte se k projektu"
|
||||
|
||||
#: modules/help/templates/help_about.html:111
|
||||
msgid "Translate"
|
||||
msgstr ""
|
||||
msgstr "Přeložte"
|
||||
|
||||
#: modules/help/templates/help_about.html:117
|
||||
#, fuzzy
|
||||
#| msgid "Get Support"
|
||||
msgid "Support"
|
||||
msgstr "Získejte podporu"
|
||||
msgstr "Podpora"
|
||||
|
||||
#: modules/help/templates/help_about.html:121
|
||||
msgid "Forum"
|
||||
@ -5399,7 +5398,7 @@ msgstr ""
|
||||
"dostupné pouze vnitřně nebudou dostupné."
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr "Vnější"
|
||||
|
||||
@ -5417,7 +5416,7 @@ msgid "Create Connection"
|
||||
msgstr "Vytvořit připojení"
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr "Smazat připojení"
|
||||
|
||||
@ -5437,14 +5436,14 @@ msgstr "Mezery"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr "Ethernet"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr "Wi-Fi"
|
||||
|
||||
@ -5455,7 +5454,7 @@ msgstr "Wi-Fi"
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr "Zobrazit připojení %(name)s"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr "Vnitřní"
|
||||
|
||||
@ -5464,7 +5463,7 @@ msgid "Computer"
|
||||
msgstr "Počítač"
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr "Upravit připojení"
|
||||
|
||||
@ -5472,7 +5471,7 @@ msgstr "Upravit připojení"
|
||||
msgid "General"
|
||||
msgstr "Obecné"
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr "PPPoE"
|
||||
|
||||
@ -5482,13 +5481,13 @@ msgstr "Připojení"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr "Wi-Fi sítě poblíž"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr "Přidat připojení"
|
||||
@ -5704,6 +5703,32 @@ msgstr ""
|
||||
"směrovače a vyhledejte na internetu jeho příručku. Ten vám poskytne úplné "
|
||||
"pokyny k provedení tohoto úkolu."
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, fuzzy, python-format
|
||||
#| msgid "Delete %(username)s"
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr "Smazat %(username)s"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
#, fuzzy
|
||||
#| msgid "Last Connected Time"
|
||||
msgid "Last scanned: "
|
||||
msgstr "Čas posledního připojení"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
#, fuzzy
|
||||
#| msgid "Wi-Fi network not found"
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr "Síť Wi-Fi nebyla nalezena"
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
msgid "disabled"
|
||||
msgstr "vypnuto"
|
||||
@ -5901,53 +5926,53 @@ msgstr "Připojení nelze upravit: Připojení neexistuje."
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr "Tento typ připojení ještě není podporován."
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr "Připojení {name} aktivováno."
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr "Aktivace připojení se nezdařila: Připojení nenalezeno."
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr ""
|
||||
"Nepodařilo se aktivovat připojení {name}: Není k dispozici žádné použitelné "
|
||||
"zařízení."
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr "Připojení {name} deaktivováno."
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr "Deaktivace připojení se nezdařila: Připojení nenalezeno."
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr "Přidávání nového generického připojení"
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr "Přidávání nového ethernetového připojení"
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr "Přidávání nového PPPoE připojení"
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr "Přidávání nového Wi-Fi připojení"
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr "Připojení {name} smazáno."
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr "Smazání připojení se nezdařilo: Připojení nenalezeno."
|
||||
|
||||
@ -6795,25 +6820,29 @@ msgstr ""
|
||||
"href=\"{users_url}\">každý uživatel </a> patřící do skupiny feed-reader."
|
||||
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
#, fuzzy, python-brace-format
|
||||
#| msgid ""
|
||||
#| "You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
#| "follow various websites. When adding a feed, enable authentication and "
|
||||
#| "use your {box_name} credentials."
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
"RSS-Bridge můžete používat s <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> pro "
|
||||
"sledování různých webových stránek. Při přidávání kanálu povolte ověřování a "
|
||||
"použijte své přihlašovací údaje {box_name}."
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr "Číst a přihlásit se k odběru novinek"
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr "RSS-Bridge"
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr "Generátor kanálů RSS"
|
||||
|
||||
@ -8834,8 +8863,6 @@ msgstr ""
|
||||
"řádek. Prázdné řádky a ty, které začínají na znak # budou ignorovány."
|
||||
|
||||
#: modules/users/forms.py:252
|
||||
#, fuzzy
|
||||
#| msgid "Delete User"
|
||||
msgid "Delete user"
|
||||
msgstr "Smazat uživatele"
|
||||
|
||||
@ -8844,12 +8871,13 @@ msgid ""
|
||||
"Deleting the user account will also remove all the files related to the "
|
||||
"user. Deleting files can be avoided by setting the user account as inactive."
|
||||
msgstr ""
|
||||
"Odstraněním uživatelského účtu se odstraní také všechny soubory související "
|
||||
"s uživatelem. Odstranění souborů lze zabránit nastavením uživatelského účtu "
|
||||
"jako neaktivního."
|
||||
|
||||
#: modules/users/forms.py:305
|
||||
#, fuzzy
|
||||
#| msgid "Failed to add user to group."
|
||||
msgid "Failed to delete user."
|
||||
msgstr "Přidání uživatele do skupiny se nezdařilo."
|
||||
msgstr "Uživatele se nepodařilo odstranit."
|
||||
|
||||
#: modules/users/forms.py:320
|
||||
msgid "Renaming LDAP user failed."
|
||||
@ -8974,10 +9002,9 @@ msgid "Save Changes"
|
||||
msgstr "Uložit změny"
|
||||
|
||||
#: modules/users/templates/users_update.html:41
|
||||
#, fuzzy, python-format
|
||||
#| msgid "Delete user <strong>%(username)s</strong> permanently?"
|
||||
#, python-format
|
||||
msgid "Delete user <em>%(username)s</em> and all the user's files?"
|
||||
msgstr "Nevratně smazat uživatele <strong>%(username)s</strong>?"
|
||||
msgstr "Smazat uživatele <em>%(username)s</em> a všechny jeho soubory?"
|
||||
|
||||
#: modules/users/templates/users_update.html:46 templates/messages.html:11
|
||||
msgid "Close"
|
||||
@ -8988,12 +9015,13 @@ msgid ""
|
||||
"Deleting a user account also removes all the files user's home directory. If "
|
||||
"you wish to keep these files, disable the user account instead."
|
||||
msgstr ""
|
||||
"Odstraněním uživatelského účtu se odstraní také všechny soubory domovského "
|
||||
"adresáře uživatele. Pokud si přejete tyto soubory zachovat, zakažte raději "
|
||||
"uživatelský účet."
|
||||
|
||||
#: modules/users/templates/users_update.html:59
|
||||
#, fuzzy
|
||||
#| msgid "Delete files"
|
||||
msgid "Delete user and files"
|
||||
msgstr "Smazat soubory"
|
||||
msgstr "Odstranit uživatele a soubory"
|
||||
|
||||
#: modules/users/templates/users_update.html:62
|
||||
msgid "Cancel"
|
||||
@ -9014,10 +9042,9 @@ msgid "Edit User"
|
||||
msgstr "Upravit uživatele"
|
||||
|
||||
#: modules/users/views.py:111
|
||||
#, fuzzy, python-format
|
||||
#| msgid "User %(username)s created."
|
||||
#, python-format
|
||||
msgid "User %(username)s deleted."
|
||||
msgstr "Uživatel %(username)s vytvořen."
|
||||
msgstr "Uživatel %(username)s smazán."
|
||||
|
||||
#: modules/users/views.py:130
|
||||
msgid "Change Password"
|
||||
@ -9508,7 +9535,7 @@ msgstr ""
|
||||
"Uživatelský účet <strong>%(username)s</strong> se stane administrátorským "
|
||||
"účtem pro Zoph."
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr "Obecné"
|
||||
|
||||
@ -9985,10 +10012,6 @@ msgstr "gudžarátština"
|
||||
#~ "Více informací o projektu %(box_name)s naleznete na <a href=\"https://"
|
||||
#~ "wiki.debian.org/FreedomBox\">%(box_name)s Wiki</a>."
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete %(username)s"
|
||||
#~ msgstr "Smazat %(username)s"
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete user %(username)s"
|
||||
#~ msgstr "Smazat uživatele %(username)s"
|
||||
|
||||
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: FreedomBox UI\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2022-09-14 17:19+0000\n"
|
||||
"Last-Translator: ikmaak <info@ikmaak.nl>\n"
|
||||
"Language-Team: Danish <https://hosted.weblate.org/projects/freedombox/"
|
||||
@ -5510,7 +5510,7 @@ msgstr ""
|
||||
"beregnet til at være eksternt tilgængelige ikke være det."
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr "Ekstern"
|
||||
|
||||
@ -5526,7 +5526,7 @@ msgid "Create Connection"
|
||||
msgstr "Opret Forbindelse"
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr "Slet Forbindelse"
|
||||
|
||||
@ -5546,14 +5546,14 @@ msgstr "Afstand"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr "Ethernet"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr "Wi-Fi"
|
||||
|
||||
@ -5564,7 +5564,7 @@ msgstr "Wi-Fi"
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr "Vis forbindelse %(name)s"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr "Intern"
|
||||
|
||||
@ -5573,7 +5573,7 @@ msgid "Computer"
|
||||
msgstr "Computer"
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr "Rediger Forbindelse"
|
||||
|
||||
@ -5581,7 +5581,7 @@ msgstr "Rediger Forbindelse"
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr "PPPoE"
|
||||
|
||||
@ -5593,13 +5593,13 @@ msgstr "Forbindelse"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr "Wi-Fi-netværk i Nærheden"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr "Tilføj forbindelse"
|
||||
@ -5779,6 +5779,32 @@ msgid ""
|
||||
"full instructions on how to perform this task."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, fuzzy, python-format
|
||||
#| msgid "Delete %(username)s"
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr "Slet %(username)s"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
#, fuzzy
|
||||
#| msgid "Create Connection"
|
||||
msgid "Last scanned: "
|
||||
msgstr "Opret Forbindelse"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
#, fuzzy
|
||||
#| msgid "packages not found"
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr "pakker ikke fundet"
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
#, fuzzy
|
||||
#| msgid "Disabled"
|
||||
@ -6022,54 +6048,54 @@ msgstr "Kan ikke redigere forbindelse: Forbindelse ikke fundet."
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr "Denne type forbindelse kan ikke konfigureres herfra endnu."
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr "Aktiverede forbindelse {name}."
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr "Kunne ikke aktivere forbindelse: Forbindelse ikke fundet."
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr ""
|
||||
"Kunne ikke aktivere forbindelse {name}: Ingen passende enhed er tilgængelig."
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr "Deaktiverede forbindelse {name}."
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr "Kan ikke deaktivere forbindelse: Forbindelse ikke fundet."
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
#, fuzzy
|
||||
#| msgid "Adding New Ethernet Connection"
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr "Tilføjer Ny Ethernet Forbindelse"
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr "Tilføjer Ny Ethernet Forbindelse"
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr "Tilføjer Ny PPPoE Forbindelse"
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr "Tilføjer Ny Wi-Fi Forbindelse"
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr "Slettede forbindelse {name}."
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr "Kunne ikke slette forbindelse: Forbindelse ikke fundet."
|
||||
|
||||
@ -6963,22 +6989,22 @@ msgstr ""
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
#, fuzzy
|
||||
#| msgid "Bridge"
|
||||
msgid "RSS-Bridge"
|
||||
msgstr "Bro"
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr ""
|
||||
|
||||
@ -9692,7 +9718,7 @@ msgid ""
|
||||
"account for Zoph."
|
||||
msgstr ""
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
@ -10209,10 +10235,6 @@ msgstr ""
|
||||
#~ "For mere information om %(box_name)s-projektet, se <a href=\"https://wiki."
|
||||
#~ "debian.org/FreedomBox\">%(box_name)s Wiki-siden</a>."
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete %(username)s"
|
||||
#~ msgstr "Slet %(username)s"
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete user %(username)s"
|
||||
#~ msgstr "Slet bruger %(username)s"
|
||||
|
||||
@ -9,9 +9,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: FreedomBox UI\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"PO-Revision-Date: 2024-10-26 23:15+0000\n"
|
||||
"Last-Translator: Ettore Atalan <atalanttore@googlemail.com>\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2024-11-07 15:00+0000\n"
|
||||
"Last-Translator: Dietmar <sagen@permondes.de>\n"
|
||||
"Language-Team: German <https://hosted.weblate.org/projects/freedombox/"
|
||||
"freedombox/de/>\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 5.8.2-dev\n"
|
||||
"X-Generator: Weblate 5.8.2\n"
|
||||
|
||||
#: config.py:103
|
||||
#, python-brace-format
|
||||
@ -330,6 +330,10 @@ msgid ""
|
||||
"file previously downloaded from the result of a successful backup on a "
|
||||
"{box_name}. It must have a .tar.gz extension."
|
||||
msgstr ""
|
||||
"Wählen Sie die Sicherungsdatei aus, die vom lokalen Computer hochgeladen "
|
||||
"werden soll. Es muss sich um eine Datei handeln, die zuvor nach einer "
|
||||
"erfolgreichen Sicherung einer {box_name} heruntergeladen wurde. Sie muss "
|
||||
"eine .tar.gz-Erweiterung haben."
|
||||
|
||||
#: modules/backups/forms.py:152
|
||||
msgid "Repository path format incorrect."
|
||||
@ -1249,16 +1253,12 @@ msgid "Server Administration"
|
||||
msgstr "Serververwaltung"
|
||||
|
||||
#: modules/config/__init__.py:18
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Here you can set some general configuration options like hostname, domain "
|
||||
#| "name, webserver home page etc."
|
||||
msgid ""
|
||||
"Here you can set some general configuration options like webserver home page "
|
||||
"etc."
|
||||
msgstr ""
|
||||
"Hier können Sie einige allgemeine Konfigurationsoptionen wie Hostname, "
|
||||
"Domainname, Webserver-Homepage usw. festlegen."
|
||||
"Hier können Sie einige allgemeine Konfigurationsoptionen wie die Startseite "
|
||||
"des Webservers usw. einstellen."
|
||||
|
||||
#: modules/config/__init__.py:40
|
||||
msgid "General Configuration"
|
||||
@ -2084,35 +2084,24 @@ msgid "XMPP"
|
||||
msgstr "XMPP"
|
||||
|
||||
#: modules/ejabberd/templates/ejabberd.html:18
|
||||
#, fuzzy, python-format
|
||||
#| msgid ""
|
||||
#| "Your XMPP server domain is set to <b>%(domainname)s</b>. User IDs will "
|
||||
#| "look like <i>username@%(domainname)s</i>. You can setup your domain on "
|
||||
#| "the system <a href=\"%(index_url)s\">Configure</a> page."
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Your XMPP server domain is set to <b>%(domain_name)s</b>. User IDs will look "
|
||||
"like <i>username@%(domain_name)s</i>. You can setup your domain on the "
|
||||
"system <a href=\"%(names_url)s\">Name Services</a> page."
|
||||
msgstr ""
|
||||
"Ihre XMPP-Serverdomain ist auf <b>%(domainname)s</b> eingestellt. Benutzer-"
|
||||
"IDs erscheinen als <i>username@%(domainname)s</i>. Sie können Ihre Domain "
|
||||
"auf der Seite <a href=\"%(index_url)s\">Systemeinstellungen</a> "
|
||||
"konfigurieren."
|
||||
"Ihre XMPP-Serverdomain ist auf <b>%(domain_name)s</b> eingestellt. Benutzer-"
|
||||
"IDs erscheinen als <i>username@%(domain_name)s</i>. Sie können Ihre Domain "
|
||||
"auf der Seite <a href=\"%(names_url)s\">Namen Dienste</a> konfigurieren."
|
||||
|
||||
#: modules/ejabberd/templates/ejabberd.html:25
|
||||
#, fuzzy, python-format
|
||||
#| msgid ""
|
||||
#| "Your XMPP server domain is set to <b>%(domainname)s</b>. User IDs will "
|
||||
#| "look like <i>username@%(domainname)s</i>. You can setup your domain on "
|
||||
#| "the system <a href=\"%(index_url)s\">Configure</a> page."
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Your XMPP server domain is not set. You can setup your domain on the system "
|
||||
"<a href=\"%(names_url)s\">Name Services</a> page."
|
||||
msgstr ""
|
||||
"Ihre XMPP-Serverdomain ist auf <b>%(domainname)s</b> eingestellt. Benutzer-"
|
||||
"IDs erscheinen als <i>username@%(domainname)s</i>. Sie können Ihre Domain "
|
||||
"auf der Seite <a href=\"%(index_url)s\">Systemeinstellungen</a> "
|
||||
"konfigurieren."
|
||||
"Die Domäne Ihres XMPP-Servers ist nicht festgelegt. Sie können Ihre Domäne "
|
||||
"auf der Seite <a href=\"%(names_url)s\">Namensdienste</a> konfigurieren."
|
||||
|
||||
#: modules/email/__init__.py:26
|
||||
msgid ""
|
||||
@ -2244,7 +2233,7 @@ msgstr "IMAP"
|
||||
|
||||
#: modules/email/manifest.py:82
|
||||
msgid "Spam control"
|
||||
msgstr ""
|
||||
msgstr "Spam-Kontrolle"
|
||||
|
||||
#: modules/email/templates/email-aliases.html:13
|
||||
#: modules/email/templates/email.html:15
|
||||
@ -2311,6 +2300,10 @@ msgid ""
|
||||
"a single HTML file on your {box_name}. You can use it as a personal wiki, as "
|
||||
"a web notebook, or for project documentation."
|
||||
msgstr ""
|
||||
"Feather Wiki ist ein Werkzeug zur Erstellung einfacher, in sich "
|
||||
"geschlossener Wikis, die jeweils in einer einzigen HTML-Datei auf Ihrer "
|
||||
"{box_name} gespeichert sind. Sie können es als persönliches Wiki, als Web-"
|
||||
"Notizbuch oder zur Projektdokumentation verwenden."
|
||||
|
||||
#: modules/featherwiki/__init__.py:29
|
||||
msgid ""
|
||||
@ -2318,6 +2311,9 @@ msgid ""
|
||||
"wiki per topic. Customize each wiki to your liking with extensions and other "
|
||||
"customization options."
|
||||
msgstr ""
|
||||
"Jedes Wiki ist eine kleine Datei. Sie können so viele Wikis erstellen, wie "
|
||||
"Sie möchten, z. B. ein Wiki pro Thema. Passen Sie jedes Wiki nach Ihren "
|
||||
"Wünschen mit Erweiterungen und anderen Anpassungsoptionen an."
|
||||
|
||||
#: modules/featherwiki/__init__.py:33
|
||||
#, python-brace-format
|
||||
@ -2325,6 +2321,8 @@ msgid ""
|
||||
"Feather Wiki is downloaded from {box_name} website and not from Debian. "
|
||||
"Wikis need to be upgraded to newer version manually."
|
||||
msgstr ""
|
||||
"Feather Wiki wird von der {box_name} Website heruntergeladen und nicht von "
|
||||
"Debian. Wikis müssen manuell auf eine neuere Version aktualisiert werden."
|
||||
|
||||
#: modules/featherwiki/__init__.py:37 modules/tiddlywiki/__init__.py:41
|
||||
#, python-brace-format
|
||||
@ -2334,6 +2332,11 @@ msgid ""
|
||||
"{box_name} belonging to the wiki group. Simultaneous editing is not "
|
||||
"supported."
|
||||
msgstr ""
|
||||
"Wikis sind standardmäßig nicht öffentlich, aber sie können zum Teilen oder "
|
||||
"Veröffentlichen heruntergeladen werden. Sie können von <a "
|
||||
"href=\"„{users_url}“\">jedem Benutzer</a> auf {box_name}, der zur Wiki-"
|
||||
"Gruppe gehört, bearbeitet werden. Gleichzeitige Bearbeitung wird nicht "
|
||||
"unterstützt."
|
||||
|
||||
#: modules/featherwiki/__init__.py:56 modules/ikiwiki/__init__.py:80
|
||||
#: modules/tiddlywiki/__init__.py:61
|
||||
@ -2346,37 +2349,40 @@ msgstr "Feather-Wiki"
|
||||
|
||||
#: modules/featherwiki/__init__.py:61
|
||||
msgid "Personal Notebooks"
|
||||
msgstr ""
|
||||
msgstr "Persönliche Notizbücher"
|
||||
|
||||
#: modules/featherwiki/forms.py:13 modules/tiddlywiki/forms.py:13
|
||||
msgid "Name of the wiki file, with file extension \".html\""
|
||||
msgstr ""
|
||||
msgstr "Name der Wiki-Datei, mit Dateierweiterung „.html“"
|
||||
|
||||
#: modules/featherwiki/forms.py:15 modules/tiddlywiki/forms.py:15
|
||||
msgid ""
|
||||
"Wiki title and description can be set from within the wiki. This file name "
|
||||
"is independent of the wiki title."
|
||||
msgstr ""
|
||||
"Wiki-Titel und -Beschreibung können innerhalb des Wikis festgelegt werden. "
|
||||
"Dieser Dateiname ist unabhängig vom Titel des Wikis."
|
||||
|
||||
#: modules/featherwiki/forms.py:23 modules/tiddlywiki/forms.py:23
|
||||
msgid "New name for the wiki file, with file extension \".html\""
|
||||
msgstr ""
|
||||
msgstr "Neuer Name für die Wiki-Datei, mit Dateierweiterung „.html“"
|
||||
|
||||
#: modules/featherwiki/forms.py:25 modules/tiddlywiki/forms.py:25
|
||||
msgid "Renaming the file has no effect on the title of the wiki."
|
||||
msgstr ""
|
||||
"Die Umbenennung der Datei hat keine Auswirkung auf den Titel des Wikis."
|
||||
|
||||
#: modules/featherwiki/forms.py:32
|
||||
msgid "A Feather Wiki file with .html file extension"
|
||||
msgstr ""
|
||||
msgstr "Eine Feather-Wiki-Datei mit der Dateierweiterung .html"
|
||||
|
||||
#: modules/featherwiki/forms.py:35
|
||||
msgid "Feather Wiki files must be in HTML format"
|
||||
msgstr ""
|
||||
msgstr "Feather-Wiki-Dateien müssen im HTML-Format vorliegen"
|
||||
|
||||
#: modules/featherwiki/forms.py:37
|
||||
msgid "Upload an existing Feather Wiki file from this computer."
|
||||
msgstr ""
|
||||
msgstr "Laden Sie eine bestehende Feather-Wiki-Datei von diesem Computer hoch."
|
||||
|
||||
#: modules/featherwiki/manifest.py:18 modules/help/templates/help_about.html:96
|
||||
#: modules/ikiwiki/manifest.py:15 modules/mediawiki/__init__.py:52
|
||||
@ -2459,6 +2465,8 @@ msgid ""
|
||||
"<strong>Hint</strong>: You can download a copy of this wiki from within "
|
||||
"Feather Wiki before deleting it."
|
||||
msgstr ""
|
||||
"<strong>Hinweis</strong>: Sie können eine Kopie dieses Wikis aus dem Feather "
|
||||
"Wiki herunterladen, bevor Sie es löschen."
|
||||
|
||||
#: modules/featherwiki/templates/featherwiki_delete.html:25
|
||||
#: modules/tiddlywiki/templates/tiddlywiki_delete.html:25
|
||||
@ -2658,6 +2666,9 @@ msgid ""
|
||||
"Automatic <a href=\"%(upgrades_url)s\" target=\"_blank\">software update</a> "
|
||||
"runs daily by default. For the first time, manually run it now."
|
||||
msgstr ""
|
||||
"Die automatische <a href=\"„%(upgrades_url)s“\" "
|
||||
"target=\"„_blank“\">Softwareaktualisierung</a> läuft standardmäßig täglich. "
|
||||
"Führen Sie es jetzt zum ersten Mal manuell aus."
|
||||
|
||||
#: modules/first_boot/templates/firstboot_complete.html:27
|
||||
#: modules/upgrades/templates/upgrades_configure.html:108
|
||||
@ -2669,6 +2680,8 @@ msgstr "Jetzt aktualisieren"
|
||||
msgid ""
|
||||
"Review <a href=\"%(privacy_url)s\" target=\"_blank\">privacy options</a>."
|
||||
msgstr ""
|
||||
"Überprüfen Sie die <a href=\"„%(privacy_url)s“\" "
|
||||
"target=\"„_blank“\">Datenschutzoptionen</a>."
|
||||
|
||||
#: modules/first_boot/templates/firstboot_complete.html:46
|
||||
#, python-format
|
||||
@ -2676,12 +2689,17 @@ msgid ""
|
||||
"Review and setup <a href=\"%(networks_url)s\" target=\"_blank\">network "
|
||||
"connections</a>. Change the default Wi-Fi password, if applicable."
|
||||
msgstr ""
|
||||
"Überprüfen und richten Sie <a href=\"„%(networks_url)s“\" "
|
||||
"target=\"„_blank“\">Netzwerkverbindungen</a> ein. Ändern Sie das Standard-Wi-"
|
||||
"Fi-Passwort, falls erforderlich."
|
||||
|
||||
#: modules/first_boot/templates/firstboot_complete.html:57
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Configure a <a href=\"%(names_url)s\" target=\"_blank\">domain name</a>."
|
||||
msgstr ""
|
||||
"Konfigurieren Sie einen <a href=\"„%(names_url)s“\" "
|
||||
"target=\"„_blank“\">Domainnamen</a>."
|
||||
|
||||
#: modules/first_boot/templates/firstboot_complete.html:67
|
||||
#, python-format
|
||||
@ -2689,6 +2707,8 @@ msgid ""
|
||||
"Configure and schedule remote <a href=\"%(backups_url)s\" "
|
||||
"target=\"_blank\">backups</a>."
|
||||
msgstr ""
|
||||
"Konfigurieren und planen Sie Remote <a href=\"„%(backups_url)s“\" "
|
||||
"target=\"„_blank“\">Backups</a>."
|
||||
|
||||
#: modules/first_boot/templates/firstboot_complete.html:78
|
||||
#, python-format
|
||||
@ -2696,6 +2716,8 @@ msgid ""
|
||||
"Put %(box_name)s to use by installing <a href=\"%(apps_url)s\" "
|
||||
"target=\"_blank\">apps</a>."
|
||||
msgstr ""
|
||||
"Verwenden Sie %(box_name)s, indem Sie <a href=\"%(apps_url)s\" "
|
||||
"target=\"_blank\">apps</a> installieren."
|
||||
|
||||
#: modules/first_boot/templates/firstboot_welcome.html:29
|
||||
msgid "Start Setup"
|
||||
@ -3006,11 +3028,11 @@ msgstr "Spenden"
|
||||
|
||||
#: modules/help/templates/help_about.html:107
|
||||
msgid "Join project"
|
||||
msgstr ""
|
||||
msgstr "Dem Projekt beitreten"
|
||||
|
||||
#: modules/help/templates/help_about.html:111
|
||||
msgid "Translate"
|
||||
msgstr ""
|
||||
msgstr "Übersetzen"
|
||||
|
||||
#: modules/help/templates/help_about.html:117
|
||||
#, fuzzy
|
||||
@ -3331,7 +3353,7 @@ msgstr "Anonymisierungsnetzwerk"
|
||||
#: modules/shadowsocks/manifest.py:19 modules/shadowsocksserver/manifest.py:18
|
||||
#: modules/tor/manifest.py:60 modules/torproxy/manifest.py:57
|
||||
msgid "Censorship resistance"
|
||||
msgstr ""
|
||||
msgstr "Schutz vor Zensur"
|
||||
|
||||
#: modules/i2p/templates/i2p.html:12
|
||||
msgid "I2P Proxies and Tunnels"
|
||||
@ -3417,7 +3439,7 @@ msgstr "Admin-Konto-Passwort"
|
||||
|
||||
#: modules/ikiwiki/manifest.py:15 modules/wordpress/manifest.py:26
|
||||
msgid "Blog"
|
||||
msgstr ""
|
||||
msgstr "Blog"
|
||||
|
||||
#: modules/ikiwiki/templates/ikiwiki_configure.html:12
|
||||
msgid "Manage Wikis and Blogs"
|
||||
@ -3534,7 +3556,7 @@ msgstr ""
|
||||
|
||||
#: modules/infinoted/manifest.py:46
|
||||
msgid "Collaborative editing"
|
||||
msgstr ""
|
||||
msgstr "Gemeinschaftliche Bearbeitung"
|
||||
|
||||
#: modules/janus/__init__.py:23
|
||||
msgid "Janus is a lightweight WebRTC server."
|
||||
@ -3564,14 +3586,12 @@ msgid "Janus Video Room"
|
||||
msgstr "Janus-Videoraum"
|
||||
|
||||
#: modules/janus/manifest.py:16
|
||||
#, fuzzy
|
||||
#| msgid "WebRTC server"
|
||||
msgid "WebRTC"
|
||||
msgstr "WebRTC-Server"
|
||||
msgstr "WebRTC"
|
||||
|
||||
#: modules/janus/manifest.py:16
|
||||
msgid "Web conference"
|
||||
msgstr ""
|
||||
msgstr "Web-Konferenz"
|
||||
|
||||
#: modules/janus/templates/janus_video_room.html:205
|
||||
#: modules/jsxc/templates/jsxc_launch.html:117 templates/base.html:263
|
||||
@ -3595,16 +3615,14 @@ msgid "Chat Client"
|
||||
msgstr "Chatclient"
|
||||
|
||||
#: modules/jsxc/manifest.py:16
|
||||
#, fuzzy
|
||||
#| msgid "Web Search"
|
||||
msgid "Web chat"
|
||||
msgstr "Websuche"
|
||||
msgstr "Web-Chat"
|
||||
|
||||
#: modules/jsxc/manifest.py:16 modules/quassel/manifest.py:54
|
||||
#, fuzzy
|
||||
#| msgid "IRC Client"
|
||||
msgid "Client"
|
||||
msgstr "IRC-Client"
|
||||
msgstr "Client"
|
||||
|
||||
#: modules/kiwix/__init__.py:21
|
||||
msgid ""
|
||||
@ -3680,22 +3698,18 @@ msgstr ""
|
||||
"sofort gelöscht, um Speicherplatz zu sparen."
|
||||
|
||||
#: modules/kiwix/manifest.py:23
|
||||
#, fuzzy
|
||||
#| msgid "Offline Wikipedia"
|
||||
msgid "Offline reader"
|
||||
msgstr "Wikipedia offline"
|
||||
msgstr "Offline-Leser"
|
||||
|
||||
#: modules/kiwix/manifest.py:24
|
||||
#, fuzzy
|
||||
#| msgid "Archive name"
|
||||
msgid "Archival"
|
||||
msgstr "Archivname"
|
||||
msgstr "Archivierung"
|
||||
|
||||
#: modules/kiwix/manifest.py:26
|
||||
#, fuzzy
|
||||
#| msgid "Offline Wikipedia"
|
||||
msgid "Wikipedia"
|
||||
msgstr "Wikipedia offline"
|
||||
msgstr "Wikipedia"
|
||||
|
||||
#: modules/kiwix/templates/kiwix-add-package.html:24
|
||||
#, python-format
|
||||
@ -3749,10 +3763,8 @@ msgid "Add a new content package"
|
||||
msgstr "Ein neues Inhaltspaket hinzufügen"
|
||||
|
||||
#: modules/kiwix/views.py:76
|
||||
#, fuzzy
|
||||
#| msgid "Content package added."
|
||||
msgid "Content package already exists."
|
||||
msgstr "Inhaltspaket hinzugefügt."
|
||||
msgstr "Das Inhaltspaket existiert bereits."
|
||||
|
||||
#: modules/kiwix/views.py:79
|
||||
msgid "Failed to add content package."
|
||||
@ -3849,16 +3861,13 @@ msgid "Obtain"
|
||||
msgstr "Beziehen"
|
||||
|
||||
#: modules/letsencrypt/templates/letsencrypt.html:112
|
||||
#, fuzzy, python-format
|
||||
#| msgid ""
|
||||
#| "No domains have been configured. <a href=\"%(config_url)s\">Configure "
|
||||
#| "domains</a> to be able to obtain certificates for them."
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No domains have been configured. <a href=\"%(names_url)s\">Configure "
|
||||
"domains</a> to be able to obtain certificates for them."
|
||||
msgstr ""
|
||||
"Es wurden keine Domains konfiguriert. Um Zertifikate erhalten zu können, "
|
||||
"müssen <a href=\"%(config_url)s\">Domains konfiguriert</a> werden."
|
||||
"müssen <a href=\"%(names_url)s\">Domains konfiguriert</a> werden."
|
||||
|
||||
#: modules/letsencrypt/views.py:40
|
||||
#, python-brace-format
|
||||
@ -3984,16 +3993,12 @@ msgid "FluffyChat"
|
||||
msgstr "FluffyChat"
|
||||
|
||||
#: modules/matrixsynapse/manifest.py:101 modules/quassel/manifest.py:54
|
||||
#, fuzzy
|
||||
#| msgid "IRC Chatroom"
|
||||
msgid "Chat room"
|
||||
msgstr "IRC-Chatraum"
|
||||
msgstr "Chatraum"
|
||||
|
||||
#: modules/matrixsynapse/manifest.py:105
|
||||
#, fuzzy
|
||||
#| msgid "Media streaming server"
|
||||
msgid "Matrix server"
|
||||
msgstr "Medien-Streaming-Server"
|
||||
msgstr "Matrix Server"
|
||||
|
||||
#: modules/matrixsynapse/templates/matrix-synapse-pre-setup.html:15
|
||||
#: modules/miniflux/templates/miniflux.html:12
|
||||
@ -4338,10 +4343,8 @@ msgstr ""
|
||||
"erleiden."
|
||||
|
||||
#: modules/minetest/manifest.py:49
|
||||
#, fuzzy
|
||||
#| msgid "Updated server."
|
||||
msgid "Game server"
|
||||
msgstr "Aktualisierter Server."
|
||||
msgstr "Spiele Server"
|
||||
|
||||
#: modules/minetest/manifest.py:49
|
||||
#, fuzzy
|
||||
@ -4351,7 +4354,7 @@ msgstr "Block-Sandkasten"
|
||||
|
||||
#: modules/minetest/manifest.py:49
|
||||
msgid "Platform"
|
||||
msgstr ""
|
||||
msgstr "Plattform"
|
||||
|
||||
#: modules/minetest/templates/minetest.html:17 modules/networks/forms.py:105
|
||||
#: modules/networks/forms.py:145
|
||||
@ -4414,24 +4417,20 @@ msgid "totem"
|
||||
msgstr "Totem"
|
||||
|
||||
#: modules/minidlna/manifest.py:116
|
||||
#, fuzzy
|
||||
#| msgid "Simple Media Server"
|
||||
msgid "Media server"
|
||||
msgstr "Einfacher Medienserver"
|
||||
msgstr "Medienserver"
|
||||
|
||||
#: modules/minidlna/manifest.py:116
|
||||
msgid "Television"
|
||||
msgstr ""
|
||||
msgstr "Television"
|
||||
|
||||
#: modules/minidlna/manifest.py:116
|
||||
msgid "UPnP"
|
||||
msgstr ""
|
||||
msgstr "UPnP"
|
||||
|
||||
#: modules/minidlna/manifest.py:116
|
||||
#, fuzzy
|
||||
#| msgid "MiniDLNA"
|
||||
msgid "DLNA"
|
||||
msgstr "MiniDLNA"
|
||||
msgstr "DLNA"
|
||||
|
||||
#: modules/minidlna/views.py:33
|
||||
msgid "Updated media directory"
|
||||
@ -4445,6 +4444,12 @@ msgid ""
|
||||
"subscribe to your favorite sites and access full article contents within the "
|
||||
"reader itself."
|
||||
msgstr ""
|
||||
"Miniflux ist ein webbasiertes Werkzeug, das Nachrichten und Blog-Updates von "
|
||||
"verschiedenen Websites in einem zentralen, leicht zu lesenden Format "
|
||||
"zusammenfasst. Es hat eine einfache Schnittstelle und konzentriert sich auf "
|
||||
"ein ablenkungsfreies Leseerlebnis. Sie können Ihre Lieblingsseiten "
|
||||
"abonnieren und auf den kompletten Inhalt der Artikel direkt im Reader "
|
||||
"zugreifen."
|
||||
|
||||
#: modules/miniflux/__init__.py:23
|
||||
msgid ""
|
||||
@ -4454,45 +4459,40 @@ msgid ""
|
||||
"are several third-party <a href=\"https://miniflux.app/docs/apps."
|
||||
"html\">clients</a> as well."
|
||||
msgstr ""
|
||||
"Zu den wichtigsten Funktionen gehören Tastaturkürzel für die schnelle "
|
||||
"Navigation, Volltextsuche, Filtern von Artikeln, Kategorien und Favoriten. "
|
||||
"Miniflux wahrt die Privatsphäre der Nutzer, indem es Tracker entfernt. Die "
|
||||
"primäre Schnittstelle ist webbasiert. Es gibt auch mehrere <a "
|
||||
"href=\"„https://miniflux.app/docs/apps.html“\">Clients</a> von "
|
||||
"Drittanbietern."
|
||||
|
||||
#: modules/miniflux/__init__.py:42 modules/miniflux/manifest.py:10
|
||||
msgid "Miniflux"
|
||||
msgstr ""
|
||||
msgstr "Miniflux"
|
||||
|
||||
#: modules/miniflux/__init__.py:44 modules/ttrss/__init__.py:51
|
||||
msgid "News Feed Reader"
|
||||
msgstr "Feedreader"
|
||||
|
||||
#: modules/miniflux/forms.py:12
|
||||
#, fuzzy
|
||||
#| msgid "Enter a valid username."
|
||||
msgid "Enter a username for the user."
|
||||
msgstr "Einen gültigen Benutzernamen eingeben."
|
||||
msgstr "Geben Sie einen Namen für den Benutzer ein."
|
||||
|
||||
#: modules/miniflux/forms.py:16
|
||||
msgid "Enter a strong password with a minimum of 6 characters."
|
||||
msgstr ""
|
||||
msgstr "Geben Sie ein sicheres Passwort mit mindestens 6 Zeichen ein."
|
||||
|
||||
#: modules/miniflux/forms.py:18
|
||||
#, fuzzy
|
||||
#| msgid "Updating configuration"
|
||||
msgid "Password confirmation"
|
||||
msgstr "Aktualisieren der Konfiguration"
|
||||
msgstr "Bestätigung des Passworts"
|
||||
|
||||
#: modules/miniflux/forms.py:20
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Enter the password for user \"{user}\" to authorize account modifications."
|
||||
msgid "Enter the same password for confirmation."
|
||||
msgstr ""
|
||||
"Geben Sie das Passwort für den Benutzer „{user}“ ein, um Kontoänderungen zu "
|
||||
"autorisieren."
|
||||
msgstr "Geben Sie zur Bestätigung das gleiche Passwort ein."
|
||||
|
||||
#: modules/miniflux/forms.py:31
|
||||
#, fuzzy
|
||||
#| msgid "Password updated"
|
||||
msgid "Passwords do not match."
|
||||
msgstr "Passwort geändert"
|
||||
msgstr "Passwörter stimmen nicht überein."
|
||||
|
||||
#: modules/miniflux/manifest.py:18
|
||||
msgid "Fluent Reader Lite"
|
||||
@ -4502,7 +4502,7 @@ msgstr ""
|
||||
#, fuzzy
|
||||
#| msgid "News Feed Reader"
|
||||
msgid "Fluent Reader"
|
||||
msgstr "Feedreader"
|
||||
msgstr "Fluent Reader"
|
||||
|
||||
#: modules/miniflux/manifest.py:46
|
||||
msgid "FluxNews"
|
||||
@ -4524,7 +4524,7 @@ msgstr ""
|
||||
#, fuzzy
|
||||
#| msgid "Read"
|
||||
msgid "Read You"
|
||||
msgstr "Lesen"
|
||||
msgstr "Read You"
|
||||
|
||||
#: modules/miniflux/manifest.py:106
|
||||
msgid "RSS Guard"
|
||||
@ -4538,14 +4538,14 @@ msgstr "Feedreader"
|
||||
|
||||
#: modules/miniflux/manifest.py:138 modules/ttrss/manifest.py:55
|
||||
msgid "News aggregation"
|
||||
msgstr ""
|
||||
msgstr "Aggregation von Nachrichten"
|
||||
|
||||
#: modules/miniflux/manifest.py:138 modules/rssbridge/manifest.py:16
|
||||
#: modules/ttrss/manifest.py:55
|
||||
#, fuzzy
|
||||
#| msgid "SSH"
|
||||
msgid "RSS"
|
||||
msgstr "SSH"
|
||||
msgstr "RSS"
|
||||
|
||||
#: modules/miniflux/manifest.py:138 modules/rssbridge/manifest.py:16
|
||||
#: modules/ttrss/manifest.py:55
|
||||
@ -4557,6 +4557,8 @@ msgid ""
|
||||
"Create an admin user to get started. Other users can be created from within "
|
||||
"Miniflux."
|
||||
msgstr ""
|
||||
"Erstellen Sie einen Admin-Benutzer, um zu beginnen. Weitere Benutzer können "
|
||||
"von Miniflux aus erstellt werden."
|
||||
|
||||
#: modules/miniflux/templates/miniflux.html:22
|
||||
#: modules/miniflux/templates/miniflux.html:24
|
||||
@ -4729,6 +4731,7 @@ msgstr "Secure Shell"
|
||||
#: modules/names/forms.py:21
|
||||
msgid "Use DNS-over-TLS for resolving domains (global preference)"
|
||||
msgstr ""
|
||||
"DNS-over-TLS für die Auflösung von Domänen verwenden (globale Präferenz)"
|
||||
|
||||
#: modules/names/forms.py:49
|
||||
msgid "Use DNSSEC when resolving domains (global preference)"
|
||||
@ -5040,6 +5043,8 @@ msgid ""
|
||||
"Link-local: Configure automatically to use an address that is only relevant "
|
||||
"to this network."
|
||||
msgstr ""
|
||||
"Link-local: Automatisch konfigurieren, um eine Adresse zu verwenden, die nur "
|
||||
"für dieses Netzwerk relevant ist."
|
||||
|
||||
#: modules/networks/forms.py:141
|
||||
msgid "Ignore: Ignore this addressing method"
|
||||
@ -5521,7 +5526,7 @@ msgstr ""
|
||||
"Dienste, die nur intern zur Verfügung stehen sollten, nicht verfügbar sein."
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr "Extern"
|
||||
|
||||
@ -5539,7 +5544,7 @@ msgid "Create Connection"
|
||||
msgstr "Verbindung anlegen"
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr "Verbindung löschen"
|
||||
|
||||
@ -5559,14 +5564,14 @@ msgstr "Abstand"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr "Ethernet"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr "WLAN"
|
||||
|
||||
@ -5577,7 +5582,7 @@ msgstr "WLAN"
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr "Verbindung %(name)s anzeigen"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr "Intern"
|
||||
|
||||
@ -5586,7 +5591,7 @@ msgid "Computer"
|
||||
msgstr "Computer"
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr "Verbindung bearbeiten"
|
||||
|
||||
@ -5594,7 +5599,7 @@ msgstr "Verbindung bearbeiten"
|
||||
msgid "General"
|
||||
msgstr "Allgemein"
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr "PPPoE"
|
||||
|
||||
@ -5604,13 +5609,13 @@ msgstr "Verbindungen"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr "WLANs in der Nähe"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr "Verbindung hinzufügen"
|
||||
@ -5830,6 +5835,32 @@ msgstr ""
|
||||
"Routers. Hier finden Sie eine vollständige Anleitung, wie diese Aufgabe zu "
|
||||
"erfüllen ist."
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, fuzzy, python-format
|
||||
#| msgid "Delete %(username)s"
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr "%(username)s löschen"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
#, fuzzy
|
||||
#| msgid "Last Connected Time"
|
||||
msgid "Last scanned: "
|
||||
msgstr "Letzte verbundene Zeit"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
#, fuzzy
|
||||
#| msgid "Wi-Fi network not found"
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr "Wi-Fi-Netzwerk nicht gefunden"
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
msgid "disabled"
|
||||
msgstr "deaktiviert"
|
||||
@ -5851,8 +5882,9 @@ msgid "link-local"
|
||||
msgstr "link-lokal"
|
||||
|
||||
#: modules/networks/views.py:32
|
||||
#, fuzzy
|
||||
msgid "dhcp"
|
||||
msgstr ""
|
||||
msgstr "dhcp"
|
||||
|
||||
#: modules/networks/views.py:33
|
||||
msgid "ignore"
|
||||
@ -6027,53 +6059,53 @@ msgstr "Kann Verbindung nicht bearbeiten: Verbindung nicht gefunden."
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr "Dieser Verbindungstyp ist noch nicht bekannt."
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr "Verbindung {name} aktiviert."
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr "Fehler beim Einschalten der Verbindung: Verbindung nicht gefunden."
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr ""
|
||||
"Fehler beim Einschalten der Verbindung {name}: Kein geeignetes Gerät "
|
||||
"verfügbar."
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr "Verbindung {name} ausgeschaltet."
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr "Konnte Verbindung nicht ausschalten: Verbindung nicht gefunden."
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr "Neue generische Verbindung wird hinzugefügt"
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr "Neue Ethernet-Verbindung wird hinzugefügt"
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr "Neue PPPoE-Verbindung wird hinzugefügt"
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr "WLAN-Verbindung wird hinzugefügt"
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr "Verbindung {name} gelöscht."
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr "Konnte Verbindung nicht löschen: Verbindung nicht gefunden."
|
||||
|
||||
@ -6622,6 +6654,10 @@ msgid ""
|
||||
"available. Can be disabled in most cases if network connectivity is stable "
|
||||
"and reliable."
|
||||
msgstr ""
|
||||
"Verwendung bekannter öffentlicher DNS-Server zur Auflösung von Domänennamen "
|
||||
"unter ungewöhnlichen Umständen, wenn keine DNS-Server bekannt sind, aber "
|
||||
"eine Internetverbindung besteht. Kann in den meisten Fällen deaktiviert "
|
||||
"werden, wenn die Netzwerkverbindung stabil und zuverlässig ist."
|
||||
|
||||
#: modules/privoxy/__init__.py:25
|
||||
msgid ""
|
||||
@ -6935,26 +6971,30 @@ msgstr ""
|
||||
"a> der zur Feed-Reader-Gruppe gehört, aufgerufen werden."
|
||||
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
#, fuzzy, python-brace-format
|
||||
#| msgid ""
|
||||
#| "You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
#| "follow various websites. When adding a feed, enable authentication and "
|
||||
#| "use your {box_name} credentials."
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
"Sie können RSS-Bridge mit <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> "
|
||||
"verwenden, um verschiedenen Websites zu folgen. Aktivieren Sie beim "
|
||||
"Hinzufügen eines Feeds die Authentifizierung und verwenden Sie Ihre "
|
||||
"{box_name}-Anmeldeinformationen."
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr "Lesen und Abonnieren von Neuigkeiten-Feeds"
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr "RSS-Bridge"
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr "RSS Feed Generator"
|
||||
|
||||
@ -8251,6 +8291,11 @@ msgid ""
|
||||
"several short notes called Tiddlers and link them together into a dense "
|
||||
"graph."
|
||||
msgstr ""
|
||||
"TiddlyWiki ist eine interaktive Anwendung, die vollständig im Webbrowser "
|
||||
"läuft. Jedes Wiki ist eine in sich geschlossene HTML-Datei, die auf Ihrer "
|
||||
"{box_name} gespeichert ist. Anstatt lange Wiki-Seiten zu schreiben, regt "
|
||||
"TiddlyWiki dazu an, mehrere kurze Notizen, so genannte Tiddlers, zu "
|
||||
"schreiben und sie zu einem kompakten Diagramm zu verknüpfen."
|
||||
|
||||
#: modules/tiddlywiki/__init__.py:30
|
||||
msgid ""
|
||||
@ -8260,6 +8305,12 @@ msgid ""
|
||||
"TiddlyWiki. Encrypting individual tiddlers or password-protecting a wiki "
|
||||
"file is possible from within the application."
|
||||
msgstr ""
|
||||
"Es ist eine vielseitige Anwendung mit einer Vielzahl von "
|
||||
"Einsatzmöglichkeiten - nichtlineares Notizbuch, Webseite, persönliche "
|
||||
"Wissensdatenbank, Aufgaben- und Projektmanagementsystem, persönliches "
|
||||
"Tagebuch usw. Plugins können die Funktionalität von TiddlyWiki erweitern. "
|
||||
"Das Verschlüsseln einzelner Tiddler oder das Schützen einer Wiki-Datei mit "
|
||||
"einem Passwort ist innerhalb der Anwendung möglich."
|
||||
|
||||
#: modules/tiddlywiki/__init__.py:37
|
||||
#, python-brace-format
|
||||
@ -8267,10 +8318,14 @@ msgid ""
|
||||
"TiddlyWiki is downloaded from {box_name} website and not from Debian. Wikis "
|
||||
"need to be upgraded to newer version manually."
|
||||
msgstr ""
|
||||
"TiddlyWiki wird von der {box_name} Website heruntergeladen und nicht von "
|
||||
"Debian. Wikis müssen manuell auf eine neuere Version aktualisiert werden."
|
||||
|
||||
#: modules/tiddlywiki/__init__.py:46
|
||||
msgid "Create a new wiki or upload your existing wiki file to get started."
|
||||
msgstr ""
|
||||
"Erstellen Sie ein neues Wiki oder laden Sie Ihre bestehende Wiki-Datei hoch, "
|
||||
"um zu starten."
|
||||
|
||||
#: modules/tiddlywiki/__init__.py:64 modules/tiddlywiki/manifest.py:9
|
||||
msgid "TiddlyWiki"
|
||||
@ -8282,15 +8337,15 @@ msgstr ""
|
||||
|
||||
#: modules/tiddlywiki/forms.py:32
|
||||
msgid "A TiddlyWiki file with .html file extension"
|
||||
msgstr ""
|
||||
msgstr "Eine TiddlyWiki-Datei mit der Dateierweiterung .html"
|
||||
|
||||
#: modules/tiddlywiki/forms.py:35
|
||||
msgid "TiddlyWiki files must be in HTML format"
|
||||
msgstr ""
|
||||
msgstr "TiddlyWiki-Dateien müssen im HTML-Format vorliegen"
|
||||
|
||||
#: modules/tiddlywiki/forms.py:37
|
||||
msgid "Upload an existing TiddlyWiki file from this computer."
|
||||
msgstr ""
|
||||
msgstr "Laden Sie eine bestehende TiddlyWiki-Datei von diesem Computer hoch."
|
||||
|
||||
#: modules/tiddlywiki/manifest.py:22
|
||||
msgid "Journal"
|
||||
@ -8309,6 +8364,8 @@ msgid ""
|
||||
"<strong>Hint</strong>: You can download a copy of this wiki from within "
|
||||
"TiddlyWiki before deleting it."
|
||||
msgstr ""
|
||||
"<strong>Hinweis</strong>: Sie können eine Kopie dieses Wikis aus TiddlyWiki "
|
||||
"herunterladen, bevor Sie es löschen."
|
||||
|
||||
#: modules/tor/__init__.py:33 modules/torproxy/__init__.py:29
|
||||
msgid ""
|
||||
@ -8691,6 +8748,8 @@ msgid ""
|
||||
"Automatic software update runs daily by default. For the first time, "
|
||||
"manually run it now."
|
||||
msgstr ""
|
||||
"Die automatische Software-Aktualisierung wird standardmäßig täglich "
|
||||
"ausgeführt. Führen Sie es jetzt zum ersten Mal manuell aus."
|
||||
|
||||
#: modules/upgrades/__init__.py:242
|
||||
msgid "Could not start distribution update"
|
||||
@ -9009,8 +9068,6 @@ msgstr ""
|
||||
"ignoriert."
|
||||
|
||||
#: modules/users/forms.py:252
|
||||
#, fuzzy
|
||||
#| msgid "Delete User"
|
||||
msgid "Delete user"
|
||||
msgstr "Benutzer löschen"
|
||||
|
||||
@ -9019,12 +9076,13 @@ msgid ""
|
||||
"Deleting the user account will also remove all the files related to the "
|
||||
"user. Deleting files can be avoided by setting the user account as inactive."
|
||||
msgstr ""
|
||||
"Beim Löschen des Benutzerkontos werden auch alle mit dem Benutzer "
|
||||
"verbundenen Dateien gelöscht. Das Löschen von Dateien kann vermieden werden, "
|
||||
"indem das Benutzerkonto als inaktiv eingestuft wird."
|
||||
|
||||
#: modules/users/forms.py:305
|
||||
#, fuzzy
|
||||
#| msgid "Failed to add user to group."
|
||||
msgid "Failed to delete user."
|
||||
msgstr "Hinzufügen eines Benutzers zur Gruppe ist fehlgeschlagen."
|
||||
msgstr "Benutzer konnte nicht gelöscht werden."
|
||||
|
||||
#: modules/users/forms.py:320
|
||||
msgid "Renaming LDAP user failed."
|
||||
@ -9152,10 +9210,9 @@ msgid "Save Changes"
|
||||
msgstr "Änderungen speichern"
|
||||
|
||||
#: modules/users/templates/users_update.html:41
|
||||
#, fuzzy, python-format
|
||||
#| msgid "Delete user <strong>%(username)s</strong> permanently?"
|
||||
#, python-format
|
||||
msgid "Delete user <em>%(username)s</em> and all the user's files?"
|
||||
msgstr "Benutzer <strong>%(username)s</strong> dauerhaft löschen?"
|
||||
msgstr "Benutzer <em>%(username)s</em> und alle Dateien des Benutzers löschen?"
|
||||
|
||||
#: modules/users/templates/users_update.html:46 templates/messages.html:11
|
||||
msgid "Close"
|
||||
@ -9166,12 +9223,13 @@ msgid ""
|
||||
"Deleting a user account also removes all the files user's home directory. If "
|
||||
"you wish to keep these files, disable the user account instead."
|
||||
msgstr ""
|
||||
"Beim Löschen eines Benutzerkontos werden auch alle Dateien aus dem Home-"
|
||||
"Verzeichnis des Benutzers entfernt. Wenn Sie diese Dateien behalten möchten, "
|
||||
"deaktivieren Sie stattdessen das Benutzerkonto."
|
||||
|
||||
#: modules/users/templates/users_update.html:59
|
||||
#, fuzzy
|
||||
#| msgid "Delete files"
|
||||
msgid "Delete user and files"
|
||||
msgstr "Dateien löschen"
|
||||
msgstr "Benutzer und Dateien löschen"
|
||||
|
||||
#: modules/users/templates/users_update.html:62
|
||||
msgid "Cancel"
|
||||
@ -9192,10 +9250,9 @@ msgid "Edit User"
|
||||
msgstr "Benutzer bearbeiten"
|
||||
|
||||
#: modules/users/views.py:111
|
||||
#, fuzzy, python-format
|
||||
#| msgid "User %(username)s created."
|
||||
#, python-format
|
||||
msgid "User %(username)s deleted."
|
||||
msgstr "Benutzer %(username)s angelegt."
|
||||
msgstr "Benutzer %(username)s gelöscht."
|
||||
|
||||
#: modules/users/views.py:130
|
||||
msgid "Change Password"
|
||||
@ -9703,7 +9760,7 @@ msgstr ""
|
||||
"Das Benutzerkonto <strong>%(username)s</strong> wird das Administratorkonto "
|
||||
"für Zoph."
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr "Allgemein"
|
||||
|
||||
@ -10183,10 +10240,6 @@ msgstr "Gujarati"
|
||||
#~ "Mehr Informationen über das %(box_name)s Projekt finden Sie im <a "
|
||||
#~ "href=\"https://wiki.debian.org/de/FreedomBox\">%(box_name)s-Wiki</a>."
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete %(username)s"
|
||||
#~ msgstr "%(username)s löschen"
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete user %(username)s"
|
||||
#~ msgstr "Benutzer %(username)s löschen"
|
||||
|
||||
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -4772,7 +4772,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr ""
|
||||
|
||||
@ -4788,7 +4788,7 @@ msgid "Create Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -4808,14 +4808,14 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr ""
|
||||
|
||||
@ -4826,7 +4826,7 @@ msgstr ""
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr ""
|
||||
|
||||
@ -4835,7 +4835,7 @@ msgid "Computer"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -4843,7 +4843,7 @@ msgstr ""
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr ""
|
||||
|
||||
@ -4853,13 +4853,13 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr ""
|
||||
@ -5033,6 +5033,27 @@ msgid ""
|
||||
"full instructions on how to perform this task."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, python-format
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
msgid "Last scanned: "
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
@ -5230,51 +5251,51 @@ msgstr ""
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
@ -5975,20 +5996,20 @@ msgstr ""
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr ""
|
||||
|
||||
@ -8347,7 +8368,7 @@ msgid ""
|
||||
"account for Zoph."
|
||||
msgstr ""
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2022-09-14 17:20+0000\n"
|
||||
"Last-Translator: ikmaak <info@ikmaak.nl>\n"
|
||||
"Language-Team: Greek <https://hosted.weblate.org/projects/freedombox/"
|
||||
@ -5627,7 +5627,7 @@ msgstr ""
|
||||
"προορίζονται να είναι διαθέσιμες μόνο εσωτερικά δεν θα είναι διαθέσιμες."
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr "Εξωτερική"
|
||||
|
||||
@ -5643,7 +5643,7 @@ msgid "Create Connection"
|
||||
msgstr "Δημιουργία σύνδεσης"
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr "Διαγραφή σύνδεσης"
|
||||
|
||||
@ -5663,14 +5663,14 @@ msgstr "Διαχωρισμός"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr "Ethernet"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr "Wi-Fi"
|
||||
|
||||
@ -5681,7 +5681,7 @@ msgstr "Wi-Fi"
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr "Εμφάνιση σύνδεσης %(name)s"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr "Εσωτερική"
|
||||
|
||||
@ -5690,7 +5690,7 @@ msgid "Computer"
|
||||
msgstr "Υπολογιστής"
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr "Επεξεργασία σύνδεσης"
|
||||
|
||||
@ -5700,7 +5700,7 @@ msgstr "Επεξεργασία σύνδεσης"
|
||||
msgid "General"
|
||||
msgstr "Γενικός"
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr "PPPoE"
|
||||
|
||||
@ -5710,13 +5710,13 @@ msgstr "Συνδέσεις"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr "Κοντινά δίκτυα Wi-Fi"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr "Προσθήκη σύνδεσης"
|
||||
@ -5896,6 +5896,32 @@ msgid ""
|
||||
"full instructions on how to perform this task."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, fuzzy, python-format
|
||||
#| msgid "Delete %(username)s"
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr "Διαγραφή %(username)s"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
#, fuzzy
|
||||
#| msgid "Create Connection"
|
||||
msgid "Last scanned: "
|
||||
msgstr "Δημιουργία σύνδεσης"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
#, fuzzy
|
||||
#| msgid "Repository not found"
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr "Το αποθετήριο δεν βρέθηκε"
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
#, fuzzy
|
||||
#| msgid "Disabled"
|
||||
@ -6151,53 +6177,53 @@ msgstr "Δεν είναι δυνατή η επεξεργασία της σύνδ
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr "Αυτός ο τύπος σύνδεσης δεν έχει κατανοηθεί ακόμα."
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr "H σύνδεση {name} ενεργοποιήθηκε."
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr "Απέτυχε η ενεργοποίηση της σύνδεσης: η σύνδεση δεν βρέθηκε."
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr ""
|
||||
"Απέτυχε η ενεργοποίηση της σύνδεσης {name}: δεν υπάρχει διαθέσιμη κατάλληλη "
|
||||
"συσκευή."
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr "Aπενεργοποιήθηκε η σύνδεση {name}."
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr "Απέτυχε η απενεργοποίηση της σύνδεσης: η σύνδεση δεν βρέθηκε."
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr "Προσθήκη νέας γενικής σύνδεσης"
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr "Προσθήκη νέας σύνδεσης Ethernet"
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr "Προσθήκη νέας σύνδεσης PPPoE"
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr "Προσθήκη νέας σύνδεσης Wi-Fi"
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr "Η σύνδεση {name} διαγράφηκε."
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr "Απέτυχε η διαγραφή της σύνδεσης: η σύνδεση δεν βρέθηκε."
|
||||
|
||||
@ -7098,20 +7124,20 @@ msgstr ""
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr "Διαβάστε και εγγραφείτε τροφοδοσίες ειδήσεων"
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr ""
|
||||
|
||||
@ -9950,7 +9976,7 @@ msgid ""
|
||||
"account for Zoph."
|
||||
msgstr ""
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr "Γενικός"
|
||||
|
||||
@ -10480,10 +10506,6 @@ msgstr "Gujarati"
|
||||
#~ "στο <a href = \"https://wiki.debian.org/FreedomBox\" >%(box_name)s wiki </"
|
||||
#~ "a>."
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete %(username)s"
|
||||
#~ msgstr "Διαγραφή %(username)s"
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete user %(username)s"
|
||||
#~ msgstr "Διαγραφή χρήστη %(username)s"
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2024-11-01 17:00+0000\n"
|
||||
"Last-Translator: gallegonovato <fran-carro@hotmail.es>\n"
|
||||
"Language-Team: Spanish <https://hosted.weblate.org/projects/freedombox/"
|
||||
@ -5478,7 +5478,7 @@ msgstr ""
|
||||
"estarán disponibles."
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr "Externa"
|
||||
|
||||
@ -5496,7 +5496,7 @@ msgid "Create Connection"
|
||||
msgstr "Crear conexión"
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr "Eliminar conexión"
|
||||
|
||||
@ -5516,14 +5516,14 @@ msgstr "Espaciado"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr "Ethernet"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr "Wi-Fi"
|
||||
|
||||
@ -5534,7 +5534,7 @@ msgstr "Wi-Fi"
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr "Mostrar la conexión %(name)s"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr "Interna"
|
||||
|
||||
@ -5543,7 +5543,7 @@ msgid "Computer"
|
||||
msgstr "Ordenador"
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr "Editar conexión"
|
||||
|
||||
@ -5551,7 +5551,7 @@ msgstr "Editar conexión"
|
||||
msgid "General"
|
||||
msgstr "General"
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr "PPPoE"
|
||||
|
||||
@ -5561,13 +5561,13 @@ msgstr "Conexiones"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr "Redes Wi-Fi cercanas"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr "Añadir conexión"
|
||||
@ -5778,6 +5778,32 @@ msgstr ""
|
||||
"Internet el manual de su modelo de router, que le proporcionará las "
|
||||
"instrucciones necesarias sobre cómo hacerlo."
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, fuzzy, python-format
|
||||
#| msgid "Delete %(username)s"
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr "Eliminar %(username)s"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
#, fuzzy
|
||||
#| msgid "Last Connected Time"
|
||||
msgid "Last scanned: "
|
||||
msgstr "Última conexión"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
#, fuzzy
|
||||
#| msgid "Wi-Fi network not found"
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr "Red Wi-Fi no encontrada"
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
msgid "disabled"
|
||||
msgstr "desactivada"
|
||||
@ -5975,53 +6001,53 @@ msgstr "No se puede editar la conexión: no se encontró."
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr "Este tipo de conexión no está aún soportada."
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr "Activar conexión {name}."
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr "Ha fallado la activación de la conexión: no se encontró."
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr ""
|
||||
"Ha fallado la activación de la conexión {name}: no hay ningún dispositivo "
|
||||
"disponible."
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr "Conexión {name} desactivada."
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr "Ha fallado la desactivación de la conexión: no se encontró."
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr "Añadir nueva conexión genérica"
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr "Añadir nueva conexión Ethernet"
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr "Añadir nueva conexión PPPoE"
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr "Añadir nueva conexión Wi-Fi"
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr "Conexión {name} eliminada."
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr "Ha fallado la eliminación de la conexión: no se encontró."
|
||||
|
||||
@ -6888,25 +6914,29 @@ msgstr ""
|
||||
"href=\"{users_url}\">persona perteneciente a un grupo de lector de feeds</a>."
|
||||
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
#, fuzzy, python-brace-format
|
||||
#| msgid ""
|
||||
#| "You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
#| "follow various websites. When adding a feed, enable authentication and "
|
||||
#| "use your {box_name} credentials."
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
"Puedes usar RSS-Bridge con <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> para "
|
||||
"seguir varios sitios web. Habilita la autenticación y usa tus credenciales "
|
||||
"de {box_name} al añadir un feed."
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr "Leer y suscribirse a nuevos agregadores"
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr "RSS-Bridge"
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr "Generador de feeds RSS"
|
||||
|
||||
@ -9661,7 +9691,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"El usuario <strong>%(username)s</strong> será el administrador de Zoph."
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr "Genérica"
|
||||
|
||||
@ -10144,10 +10174,6 @@ msgstr "Gujarati"
|
||||
#~ "Para ampliar información sobre el proyecto %(box_name)s, consulte la <a "
|
||||
#~ "href=\"https://wiki.debian.org/es/FreedomBox\">Wiki de %(box_name)s</a>."
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete %(username)s"
|
||||
#~ msgstr "Eliminar %(username)s"
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete user %(username)s"
|
||||
#~ msgstr "Eliminar usuaria/o %(username)s"
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2022-09-14 17:19+0000\n"
|
||||
"Last-Translator: ikmaak <info@ikmaak.nl>\n"
|
||||
"Language-Team: Persian <https://hosted.weblate.org/projects/freedombox/"
|
||||
@ -5350,7 +5350,7 @@ msgstr ""
|
||||
"باشند غیرقابل دسترسی میشوند."
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr ""
|
||||
|
||||
@ -5366,7 +5366,7 @@ msgid "Create Connection"
|
||||
msgstr "ساختن اتصال"
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr "پاککردن اتصال"
|
||||
|
||||
@ -5387,14 +5387,14 @@ msgstr "Spacing"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr "اترنت"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr "Wi-Fi"
|
||||
|
||||
@ -5405,7 +5405,7 @@ msgstr "Wi-Fi"
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr "اتصال %(name)s را نشان بده"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr ""
|
||||
|
||||
@ -5414,7 +5414,7 @@ msgid "Computer"
|
||||
msgstr "کامپیوتر"
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr "ویرایش اتصال"
|
||||
|
||||
@ -5422,7 +5422,7 @@ msgstr "ویرایش اتصال"
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr ""
|
||||
|
||||
@ -5434,13 +5434,13 @@ msgstr "اتصال"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr "شبکههای بیسیم در نزدیکی"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr "افزودن اتصال"
|
||||
@ -5621,6 +5621,31 @@ msgid ""
|
||||
"full instructions on how to perform this task."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, python-format
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
#, fuzzy
|
||||
#| msgid "Create Connection"
|
||||
msgid "Last scanned: "
|
||||
msgstr "ساختن اتصال"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
#, fuzzy
|
||||
#| msgid "Nearby Wi-Fi Networks"
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr "شبکههای بیسیم در نزدیکی"
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
#, fuzzy
|
||||
#| msgid "Disabled"
|
||||
@ -5866,51 +5891,51 @@ msgstr "نمیتوان اتصال را ویراست: اتصالی پیدا ن
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr "از این نوع اتصال هنوز پشتیبانی نمیشود."
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr "اتصال {name} فعال شد."
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr "فعالسازی اتصال شکست خورد: اتصالی پیدا نشد."
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr "فعالسازی اتصال {name} شکست خورد: دستگاه مناسبی موجود نیست."
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr "اتصال {name} غیرفعال شد."
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr "غیرفعالسازی اتصال شکست خورد: اتصالی پیدا نشد."
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr "افزودن یک اتصال عام تازه"
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr "افزودن اتصال اترنت تازه"
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr "افزودن اتصال PPPoE تازه"
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr "افزودن اتصال Wi-Fi تازه"
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr "اتصال {name} پاک شد."
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr "پاککردن اتصال شکست خورد: اتصال پیدا نشد."
|
||||
|
||||
@ -6640,20 +6665,20 @@ msgstr ""
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr ""
|
||||
|
||||
@ -9234,7 +9259,7 @@ msgid ""
|
||||
"account for Zoph."
|
||||
msgstr ""
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Plinth 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2016-01-31 22:24+0530\n"
|
||||
"Last-Translator: Sunil Mohan Adapa <sunil@medhas.org>\n"
|
||||
"Language-Team: Plinth Developers <freedombox-discuss@lists.alioth.debian."
|
||||
@ -5546,7 +5546,7 @@ msgstr ""
|
||||
"INTERNALLY WILL NOT BE AVAILABLE."
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr "EXTERNAL"
|
||||
|
||||
@ -5562,7 +5562,7 @@ msgid "Create Connection"
|
||||
msgstr "CREATE CONNECTION"
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr "DELETE CONNECTION"
|
||||
|
||||
@ -5582,14 +5582,14 @@ msgstr "SPACING"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr "ETHERNET"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr "WI-FI"
|
||||
|
||||
@ -5600,7 +5600,7 @@ msgstr "WI-FI"
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr "SHOW CONNECTION %(name)s"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr "INTERNAL"
|
||||
|
||||
@ -5609,7 +5609,7 @@ msgid "Computer"
|
||||
msgstr "COMPUTER"
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr "EDIT CONNECTION"
|
||||
|
||||
@ -5617,7 +5617,7 @@ msgstr "EDIT CONNECTION"
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr "PPPOE"
|
||||
|
||||
@ -5629,13 +5629,13 @@ msgstr "CONNECTION"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr "NEARBY WI-FI NETWORKS"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr "ADD CONNECTION"
|
||||
@ -5815,6 +5815,32 @@ msgid ""
|
||||
"full instructions on how to perform this task."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, fuzzy, python-format
|
||||
#| msgid "Delete %(username)s"
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr "DELETE %(username)s"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
#, fuzzy
|
||||
#| msgid "Create Connection"
|
||||
msgid "Last scanned: "
|
||||
msgstr "CREATE CONNECTION"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
#, fuzzy
|
||||
#| msgid "packages not found"
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr "PACKAGES NOT FOUND"
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
#, fuzzy
|
||||
#| msgid "Disabled"
|
||||
@ -6060,53 +6086,53 @@ msgstr "CANNOT EDIT CONNECTION: CONNECTION NOT FOUND."
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr "THIS TYPE OF CONNECTION IS NOT YET UNDERSTOOD."
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr "ACTIVATED CONNECTION {name}."
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr "FAILED TO ACTIVATE CONNECTION: CONNECTION NOT FOUND."
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr "FAILED TO ACTIVATE CONNECTION {name}: NO SUITABLE DEVICE IS AVAILABLE."
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr "DEACTIVATED CONNECTION {name}."
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr "FAILED TO DE-ACTIVATE CONNECTION: CONNECTION NOT FOUND."
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
#, fuzzy
|
||||
#| msgid "Adding New Ethernet Connection"
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr "ADDING NEW ETHERNET CONNECTION"
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr "ADDING NEW ETHERNET CONNECTION"
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr "ADDING NEW PPPOE CONNECTION"
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr "ADDING NEW WI-FI CONNECTION"
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr "CONNECTION {name} DELETED."
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr "FAILED TO DELETE CONNECTION: CONNECTION NOT FOUND."
|
||||
|
||||
@ -7011,22 +7037,22 @@ msgstr ""
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
#, fuzzy
|
||||
#| msgid "Bridge"
|
||||
msgid "RSS-Bridge"
|
||||
msgstr "BRIDGE"
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr ""
|
||||
|
||||
@ -9743,7 +9769,7 @@ msgid ""
|
||||
"account for Zoph."
|
||||
msgstr ""
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
@ -10270,10 +10296,6 @@ msgstr ""
|
||||
#~ "FOR MORE INFORMATION ABOUT THE %(box_name)s PROJECT, SEE THE <a "
|
||||
#~ "href=\"https://wiki.debian.org/FreedomBox\">%(box_name)s WIKI</a>."
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete %(username)s"
|
||||
#~ msgstr "DELETE %(username)s"
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete user %(username)s"
|
||||
#~ msgstr "DELETE USER %(username)s"
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: FreedomBox UI\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2024-11-01 17:00+0000\n"
|
||||
"Last-Translator: Coucouf <coucouf@coucouf.fr>\n"
|
||||
"Language-Team: French <https://hosted.weblate.org/projects/freedombox/"
|
||||
@ -5604,7 +5604,7 @@ msgstr ""
|
||||
"usage interne ne seront pas disponibles."
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr "Externe"
|
||||
|
||||
@ -5622,7 +5622,7 @@ msgid "Create Connection"
|
||||
msgstr "Créer Connexion"
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr "Supprimer Connexion"
|
||||
|
||||
@ -5642,14 +5642,14 @@ msgstr "Espacement"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr "Ethernet"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr "Wi-Fi"
|
||||
|
||||
@ -5660,7 +5660,7 @@ msgstr "Wi-Fi"
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr "Détails de la connexion %(name)s"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr "Interne"
|
||||
|
||||
@ -5669,7 +5669,7 @@ msgid "Computer"
|
||||
msgstr "Machine"
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr "Modifier la connexion"
|
||||
|
||||
@ -5679,7 +5679,7 @@ msgstr "Modifier la connexion"
|
||||
msgid "General"
|
||||
msgstr "Générique"
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr "PPPoE"
|
||||
|
||||
@ -5689,13 +5689,13 @@ msgstr "Connexions"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr "Réseaux Wi-Fi à proximité"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr "Ajouter une connexion"
|
||||
@ -5918,6 +5918,32 @@ msgstr ""
|
||||
"Elle vous donnera les instructions détaillées sur comment réaliser cette "
|
||||
"opération."
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, fuzzy, python-format
|
||||
#| msgid "Delete %(username)s"
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr "Supprimer %(username)s"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
#, fuzzy
|
||||
#| msgid "Last Connected Time"
|
||||
msgid "Last scanned: "
|
||||
msgstr "Date de dernière connexion"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
#, fuzzy
|
||||
#| msgid "Wi-Fi network not found"
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr "Réseau wifi introuvable"
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
msgid "disabled"
|
||||
msgstr "désactivé"
|
||||
@ -6121,53 +6147,53 @@ msgid "This type of connection is not yet understood."
|
||||
msgstr ""
|
||||
"La configuration de ce type de connexion n’est pas encore pris en charge."
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr "Connexion {name} activée."
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr "Échec d’activation de la connexion : connexion introuvable."
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr ""
|
||||
"Échec d’activation de la connexion {name} : pas de périphérique adéquat "
|
||||
"disponible."
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr "Connexion {name} désactivée."
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr "Échec de désactivation de la connexion : connexion introuvable."
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr "Ajout d’une nouvelle connexion générique"
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr "Ajout d’une nouvelle connexion Ethernet"
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr "Ajout d’une nouvelle connexion PPPoE"
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr "Ajout d’une nouvelle connexion Wi-Fi"
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr "Connexion {name} supprimée."
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr "Échec de suppression de la connexion : connexion introuvable."
|
||||
|
||||
@ -7053,25 +7079,29 @@ msgstr ""
|
||||
"des lecteurs de fils d’actualités."
|
||||
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
#, fuzzy, python-brace-format
|
||||
#| msgid ""
|
||||
#| "You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
#| "follow various websites. When adding a feed, enable authentication and "
|
||||
#| "use your {box_name} credentials."
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
"Vous pouvez utiliser RSS-Bridge avec <a href=\"{ttrss_url}\">Tiny Tiny RSS</"
|
||||
"a> pour suivre différents sites internet. Lors de l’ajout d’un fil, activez "
|
||||
"l’authentification et utilisez les identifiants de {box_name}."
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr "Lecture et abonnement à des flux d’actualités"
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr "RSS-Bridge"
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr "Générateur de fil RSS"
|
||||
|
||||
@ -9861,7 +9891,7 @@ msgstr ""
|
||||
"L’utilisateur <strong>%(username)s</strong> deviendra le compte "
|
||||
"administrateur pour Zoph."
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr "Générique"
|
||||
|
||||
@ -10350,10 +10380,6 @@ msgstr "Gujarati"
|
||||
#~ "Pour plus d’informations sur le projet %(box_name)s, visitez le <a "
|
||||
#~ "href=\"https://wiki.debian.org/fr/FreedomBox\">Wiki %(box_name)s</a>."
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete %(username)s"
|
||||
#~ msgstr "Supprimer %(username)s"
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete user %(username)s"
|
||||
#~ msgstr "Supprimer l’utilisateur %(username)s"
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2022-12-30 10:51+0000\n"
|
||||
"Last-Translator: gallegonovato <fran-carro@hotmail.es>\n"
|
||||
"Language-Team: Galician <https://hosted.weblate.org/projects/freedombox/"
|
||||
@ -4802,7 +4802,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr ""
|
||||
|
||||
@ -4818,7 +4818,7 @@ msgid "Create Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -4838,14 +4838,14 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr ""
|
||||
|
||||
@ -4856,7 +4856,7 @@ msgstr ""
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr ""
|
||||
|
||||
@ -4865,7 +4865,7 @@ msgid "Computer"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -4873,7 +4873,7 @@ msgstr ""
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr ""
|
||||
|
||||
@ -4883,13 +4883,13 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr ""
|
||||
@ -5063,6 +5063,27 @@ msgid ""
|
||||
"full instructions on how to perform this task."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, python-format
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
msgid "Last scanned: "
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
@ -5262,51 +5283,51 @@ msgstr ""
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
@ -6011,20 +6032,20 @@ msgstr ""
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr ""
|
||||
|
||||
@ -8402,7 +8423,7 @@ msgid ""
|
||||
"account for Zoph."
|
||||
msgstr ""
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2021-01-18 12:32+0000\n"
|
||||
"Last-Translator: ikmaak <info@ikmaak.nl>\n"
|
||||
"Language-Team: Gujarati <https://hosted.weblate.org/projects/freedombox/"
|
||||
@ -5119,7 +5119,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr ""
|
||||
|
||||
@ -5135,7 +5135,7 @@ msgid "Create Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -5155,14 +5155,14 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr ""
|
||||
|
||||
@ -5173,7 +5173,7 @@ msgstr ""
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr ""
|
||||
|
||||
@ -5182,7 +5182,7 @@ msgid "Computer"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -5190,7 +5190,7 @@ msgstr ""
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr ""
|
||||
|
||||
@ -5202,13 +5202,13 @@ msgstr "વાતચીત"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr ""
|
||||
@ -5385,6 +5385,27 @@ msgid ""
|
||||
"full instructions on how to perform this task."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, python-format
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
msgid "Last scanned: "
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
#, fuzzy
|
||||
#| msgid "Disabled"
|
||||
@ -5594,51 +5615,51 @@ msgstr ""
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
@ -6355,20 +6376,20 @@ msgstr ""
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr ""
|
||||
|
||||
@ -8814,7 +8835,7 @@ msgid ""
|
||||
"account for Zoph."
|
||||
msgstr ""
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2023-10-19 06:30+0000\n"
|
||||
"Last-Translator: Shaik <arifashaik807@gmail.com>\n"
|
||||
"Language-Team: Hindi <https://hosted.weblate.org/projects/freedombox/"
|
||||
@ -5494,7 +5494,7 @@ msgstr ""
|
||||
"होंगी."
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr "बाहरी"
|
||||
|
||||
@ -5510,7 +5510,7 @@ msgid "Create Connection"
|
||||
msgstr "कनेक्शन बनाएँ"
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr "कनेक्शन हटाएँ"
|
||||
|
||||
@ -5530,14 +5530,14 @@ msgstr "स्पेसिंग"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr "इथरनेट"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr "वाई-फ़ाई"
|
||||
|
||||
@ -5548,7 +5548,7 @@ msgstr "वाई-फ़ाई"
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr "कनेक्शन दिखाइये %(name)s"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr "आंतरिक"
|
||||
|
||||
@ -5557,7 +5557,7 @@ msgid "Computer"
|
||||
msgstr "कंप्यूटर"
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr "कनेक्शन संपादित करें"
|
||||
|
||||
@ -5567,7 +5567,7 @@ msgstr "कनेक्शन संपादित करें"
|
||||
msgid "General"
|
||||
msgstr "जेनेरिक"
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr "पीपीपीअोइ"
|
||||
|
||||
@ -5579,13 +5579,13 @@ msgstr "कनेक्शन"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr "पास के वाई-फाई नेटवर्क"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr "कनेक्शन जोड़ें"
|
||||
@ -5765,6 +5765,32 @@ msgid ""
|
||||
"full instructions on how to perform this task."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, fuzzy, python-format
|
||||
#| msgid "Delete %(username)s"
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr "हटाइये %(username)s"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
#, fuzzy
|
||||
#| msgid "Create Connection"
|
||||
msgid "Last scanned: "
|
||||
msgstr "कनेक्शन बनाएँ"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
#, fuzzy
|
||||
#| msgid "Nearby Wi-Fi Networks"
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr "पास के वाई-फाई नेटवर्क"
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
#, fuzzy
|
||||
#| msgid "Disabled"
|
||||
@ -6020,51 +6046,51 @@ msgstr "कनेक्शन नहीं संपादित कर सक
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr "इस प्रकार का कनेक्शन अभी समझ में नहीं आता."
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr "कनेक्शन सक्रिय है {name}."
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr "कनेक्शन सक्रिय करने में विफल: कनेक्शन नहीं मिला."
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr "कनेक्शन सक्रिय करने में विफल {name}: कोई उपयुक्त डिवाइस उपलब्ध नहीं है."
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr "निष्क्रिय कनेक्शन {name}."
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr "कनेक्शन को निष्क्रिय करने में विफल: कनेक्शन नहीं मिला."
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr "नया जेनेरिक कनेक्शन जोड़ रहा है"
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr "नया ईथरनेट कनेक्शन जोड़ रहा है"
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr "नया PPPoE कनेक्शन जोड़ रहा है"
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr "नया वाई-फाई कनेक्शन जोड़ रहा है"
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr "कनेक्शन {name} हटाया गया."
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr "कनेक्शन हटाने में विफल: कनेक्शन नहीं मिला."
|
||||
|
||||
@ -6948,20 +6974,20 @@ msgstr ""
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr "समाचार फ़ीड्स पढ़ें और सब्सक्राइब करें"
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr ""
|
||||
|
||||
@ -9733,7 +9759,7 @@ msgid ""
|
||||
"account for Zoph."
|
||||
msgstr ""
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr "जेनेरिक"
|
||||
|
||||
@ -10242,10 +10268,6 @@ msgstr ""
|
||||
#~ "%(box_name)s के बारे में और सिखने के लिये यह देखिये <a href=\"https://wiki.debian."
|
||||
#~ "org/FreedomBox\">%(box_name)s Wiki</a>."
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete %(username)s"
|
||||
#~ msgstr "हटाइये %(username)s"
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete user %(username)s"
|
||||
#~ msgstr "यूसर हटाइये %(username)s"
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2022-10-24 18:39+0000\n"
|
||||
"Last-Translator: Sunil Mohan Adapa <sunil@medhas.org>\n"
|
||||
"Language-Team: Hungarian <https://hosted.weblate.org/projects/freedombox/"
|
||||
@ -5603,7 +5603,7 @@ msgstr ""
|
||||
"tervezett szolgáltatás nem lesz elérhető."
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr "Külső"
|
||||
|
||||
@ -5621,7 +5621,7 @@ msgid "Create Connection"
|
||||
msgstr "Kapcsolat létrehozása"
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr "Kapcsolat törlése"
|
||||
|
||||
@ -5641,14 +5641,14 @@ msgstr "Térköz"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr "Ethernet"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr "Wi-Fi"
|
||||
|
||||
@ -5659,7 +5659,7 @@ msgstr "Wi-Fi"
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr "%(name)s kapcsolat megjelenítése"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr "Belső"
|
||||
|
||||
@ -5668,7 +5668,7 @@ msgid "Computer"
|
||||
msgstr "Számítógép"
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr "Kapcsolat szerkesztése"
|
||||
|
||||
@ -5678,7 +5678,7 @@ msgstr "Kapcsolat szerkesztése"
|
||||
msgid "General"
|
||||
msgstr "Általános"
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr "PPPoE"
|
||||
|
||||
@ -5688,13 +5688,13 @@ msgstr "Kapcsolatok"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr "Wi-Fi hálózatok a közelben"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr "Kapcsolat hozzáadása"
|
||||
@ -5910,6 +5910,32 @@ msgstr ""
|
||||
"meg az interneten a router kézikönyvét. Ebben teljes körű utasításokat "
|
||||
"találsz a feladat elvégzéséhez."
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, fuzzy, python-format
|
||||
#| msgid "Delete %(username)s"
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr "%(username)s törlése"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
#, fuzzy
|
||||
#| msgid "Last Connected Time"
|
||||
msgid "Last scanned: "
|
||||
msgstr "Utolsó csatlakozási idő"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
#, fuzzy
|
||||
#| msgid "Wi-Fi network not found"
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr "Wi-Fi hálózat nem található"
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
msgid "disabled"
|
||||
msgstr "letiltva"
|
||||
@ -6111,53 +6137,53 @@ msgstr "A kapcsolat nem szerkeszthető, mivel nem található."
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr "Az ilyen típusú kapcsolat még nem ismert."
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr "{name} kapcsolat aktiválva."
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr "Kapcsolat aktiválása sikertelen: kapcsolat nem található."
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr ""
|
||||
"{name} kapcsolat aktiválása sikertelen: nem áll rendelkezésre megfelelő "
|
||||
"eszköz."
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr "{name} kapcsolat deaktiválva."
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr "Kapcsolat deaktiválása sikertelen: kapcsolat nem található."
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr "Új általános kapcsolat hozzáadása"
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr "Új Ethernet kapcsolat hozzáadása"
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr "Új PPPoE kapcsolat hozzáadása"
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr "Új Wi-Fi kapcsolat hozzáadása"
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr "Kapcsolat törölve: {name}."
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr "A kapcsolat törlése sikertelen, mivel nem található."
|
||||
|
||||
@ -7039,20 +7065,20 @@ msgstr ""
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr "Hírcsatornák olvasása és feliratkozás"
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr "RSS-Bridge"
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr "RSS-hírfolyam generátor"
|
||||
|
||||
@ -9827,7 +9853,7 @@ msgstr ""
|
||||
"A(z) <strong>%(username)s</strong> felhasználói fiók lesz a Zoph "
|
||||
"rendszergazdai fiókja."
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr "Általános"
|
||||
|
||||
@ -10339,10 +10365,6 @@ msgstr "Gudzsaráti"
|
||||
#~ "A %(box_name)s projektről további információkat a <a href=\"https://wiki."
|
||||
#~ "debian.org/FreedomBox\">%(box_name)s Wiki</a> oldalon találsz."
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete %(username)s"
|
||||
#~ msgstr "%(username)s törlése"
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete user %(username)s"
|
||||
#~ msgstr "%(username)s felhasználó törlése"
|
||||
|
||||
@ -2,7 +2,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Indonesian (FreedomBox)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2022-09-14 17:19+0000\n"
|
||||
"Last-Translator: ikmaak <info@ikmaak.nl>\n"
|
||||
"Language-Team: Indonesian <https://hosted.weblate.org/projects/freedombox/"
|
||||
@ -5377,7 +5377,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr "Eksternal"
|
||||
|
||||
@ -5393,7 +5393,7 @@ msgid "Create Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr "Hapus Koneksi"
|
||||
|
||||
@ -5413,14 +5413,14 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr "Ethernet"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr "Wi-Fi"
|
||||
|
||||
@ -5431,7 +5431,7 @@ msgstr "Wi-Fi"
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr ""
|
||||
|
||||
@ -5440,7 +5440,7 @@ msgid "Computer"
|
||||
msgstr "Komputer"
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr "Sunting Koneksi"
|
||||
|
||||
@ -5448,7 +5448,7 @@ msgstr "Sunting Koneksi"
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr "PPPoE"
|
||||
|
||||
@ -5458,13 +5458,13 @@ msgstr "Koneksi"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr "Jaringan Wi-Fi terdekat"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr "Tambah Koneksi"
|
||||
@ -5638,6 +5638,29 @@ msgid ""
|
||||
"full instructions on how to perform this task."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, python-format
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
msgid "Last scanned: "
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
#, fuzzy
|
||||
#| msgid "Nearby Wi-Fi Networks"
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr "Jaringan Wi-Fi terdekat"
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
msgid "disabled"
|
||||
msgstr "dinonaktifkan"
|
||||
@ -5835,51 +5858,51 @@ msgstr ""
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr "Menambah koneksi generik baru"
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr "Menambah koneksi ethernet baru"
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr "Menambah koneksi PPPoE baru"
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr "Menambah koneksi Wi-Fi baru"
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr "Koneksi {name} dihapus."
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
@ -6611,20 +6634,20 @@ msgstr ""
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr ""
|
||||
|
||||
@ -9133,7 +9156,7 @@ msgid ""
|
||||
"account for Zoph."
|
||||
msgstr ""
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2022-09-14 17:19+0000\n"
|
||||
"Last-Translator: ikmaak <info@ikmaak.nl>\n"
|
||||
"Language-Team: Italian <https://hosted.weblate.org/projects/freedombox/"
|
||||
@ -5436,7 +5436,7 @@ msgstr ""
|
||||
"solo internamente, non saranno disponibili."
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr "Esterna"
|
||||
|
||||
@ -5452,7 +5452,7 @@ msgid "Create Connection"
|
||||
msgstr "Crea Connessione"
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr "Cancella Connessione"
|
||||
|
||||
@ -5472,14 +5472,14 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr "Ethernet"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr "Wi-Fi"
|
||||
|
||||
@ -5490,7 +5490,7 @@ msgstr "Wi-Fi"
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr "Mostra connessione %(name)s"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr "Interna"
|
||||
|
||||
@ -5499,7 +5499,7 @@ msgid "Computer"
|
||||
msgstr "Computer"
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr "Modifica Concessione"
|
||||
|
||||
@ -5507,7 +5507,7 @@ msgstr "Modifica Concessione"
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr "PPPoE"
|
||||
|
||||
@ -5517,13 +5517,13 @@ msgstr "Connessioni"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr "Reti WiFi vicine"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr "Aggiungi Connessione"
|
||||
@ -5697,6 +5697,31 @@ msgid ""
|
||||
"full instructions on how to perform this task."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, python-format
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
#, fuzzy
|
||||
#| msgid "Last Connected Time"
|
||||
msgid "Last scanned: "
|
||||
msgstr "Data dell'ultima connessione"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
#, fuzzy
|
||||
#| msgid "Nearby Wi-Fi Networks"
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr "Reti WiFi vicine"
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
msgid "disabled"
|
||||
msgstr "disabilitato"
|
||||
@ -5898,53 +5923,53 @@ msgstr "Impossibile modificare la connessione: connessione non trovata."
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr "Questo tipo di connessione non è ancora riconosciuto."
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr "Attivata connessione {name}."
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr "Attivazione connessione fallita: connessione non trovata."
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr ""
|
||||
"Attivazione connessione {name} fallita: non è disponibile nessun dispositivo "
|
||||
"idoneo."
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr "Disattivata connessione {name}."
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr "Disattivazione connessione fallita: connessione non trovata."
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr "Aggiungendo Nuova Connessione Generica"
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr "Aggiungendo Nuova Connessione Ethernet"
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr "Aggiungendo Nuova Connessione PPPoE"
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr "Aggiungendo Nuova Connessione WiFi"
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr "Connessione {name} cancellata."
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr "Cancellazione connessione fallita: connessione non trovata."
|
||||
|
||||
@ -6767,20 +6792,20 @@ msgstr ""
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr ""
|
||||
|
||||
@ -9196,7 +9221,7 @@ msgid ""
|
||||
"account for Zoph."
|
||||
msgstr ""
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2023-05-07 23:50+0000\n"
|
||||
"Last-Translator: Nobuhiro Iwamatsu <iwamatsu@gmail.com>\n"
|
||||
"Language-Team: Japanese <https://hosted.weblate.org/projects/freedombox/"
|
||||
@ -4776,7 +4776,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr ""
|
||||
|
||||
@ -4792,7 +4792,7 @@ msgid "Create Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -4812,14 +4812,14 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr ""
|
||||
|
||||
@ -4830,7 +4830,7 @@ msgstr ""
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr ""
|
||||
|
||||
@ -4839,7 +4839,7 @@ msgid "Computer"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -4847,7 +4847,7 @@ msgstr ""
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr ""
|
||||
|
||||
@ -4857,13 +4857,13 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr ""
|
||||
@ -5037,6 +5037,27 @@ msgid ""
|
||||
"full instructions on how to perform this task."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, python-format
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
msgid "Last scanned: "
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
@ -5234,51 +5255,51 @@ msgstr ""
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
@ -5979,20 +6000,20 @@ msgstr ""
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr ""
|
||||
|
||||
@ -8351,7 +8372,7 @@ msgid ""
|
||||
"account for Zoph."
|
||||
msgstr ""
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2020-07-16 16:41+0000\n"
|
||||
"Last-Translator: Yogesh <yogesh@karnatakaeducation.org.in>\n"
|
||||
"Language-Team: Kannada <https://hosted.weblate.org/projects/freedombox/"
|
||||
@ -4774,7 +4774,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr ""
|
||||
|
||||
@ -4790,7 +4790,7 @@ msgid "Create Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -4810,14 +4810,14 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr ""
|
||||
|
||||
@ -4828,7 +4828,7 @@ msgstr ""
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr ""
|
||||
|
||||
@ -4837,7 +4837,7 @@ msgid "Computer"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -4845,7 +4845,7 @@ msgstr ""
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr ""
|
||||
|
||||
@ -4855,13 +4855,13 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr ""
|
||||
@ -5035,6 +5035,27 @@ msgid ""
|
||||
"full instructions on how to perform this task."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, python-format
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
msgid "Last scanned: "
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
@ -5232,51 +5253,51 @@ msgstr ""
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
@ -5977,20 +5998,20 @@ msgstr ""
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr ""
|
||||
|
||||
@ -8351,7 +8372,7 @@ msgid ""
|
||||
"account for Zoph."
|
||||
msgstr ""
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2022-09-14 17:19+0000\n"
|
||||
"Last-Translator: ikmaak <info@ikmaak.nl>\n"
|
||||
"Language-Team: Lithuanian <https://hosted.weblate.org/projects/freedombox/"
|
||||
@ -4790,7 +4790,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr ""
|
||||
|
||||
@ -4806,7 +4806,7 @@ msgid "Create Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -4826,14 +4826,14 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr ""
|
||||
|
||||
@ -4844,7 +4844,7 @@ msgstr ""
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr ""
|
||||
|
||||
@ -4853,7 +4853,7 @@ msgid "Computer"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -4861,7 +4861,7 @@ msgstr ""
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr ""
|
||||
|
||||
@ -4871,13 +4871,13 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr ""
|
||||
@ -5051,6 +5051,27 @@ msgid ""
|
||||
"full instructions on how to perform this task."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, python-format
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
msgid "Last scanned: "
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
@ -5248,51 +5269,51 @@ msgstr ""
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
@ -5995,20 +6016,20 @@ msgstr ""
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr ""
|
||||
|
||||
@ -8369,7 +8390,7 @@ msgid ""
|
||||
"account for Zoph."
|
||||
msgstr ""
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2022-09-14 17:20+0000\n"
|
||||
"Last-Translator: ikmaak <info@ikmaak.nl>\n"
|
||||
"Language-Team: Latvian <https://hosted.weblate.org/projects/freedombox/"
|
||||
@ -4789,7 +4789,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr ""
|
||||
|
||||
@ -4805,7 +4805,7 @@ msgid "Create Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -4825,14 +4825,14 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr ""
|
||||
|
||||
@ -4843,7 +4843,7 @@ msgstr ""
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr ""
|
||||
|
||||
@ -4852,7 +4852,7 @@ msgid "Computer"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -4860,7 +4860,7 @@ msgstr ""
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr ""
|
||||
|
||||
@ -4870,13 +4870,13 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr ""
|
||||
@ -5050,6 +5050,27 @@ msgid ""
|
||||
"full instructions on how to perform this task."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, python-format
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
msgid "Last scanned: "
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
@ -5247,51 +5268,51 @@ msgstr ""
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
@ -5994,20 +6015,20 @@ msgstr ""
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr ""
|
||||
|
||||
@ -8368,7 +8389,7 @@ msgid ""
|
||||
"account for Zoph."
|
||||
msgstr ""
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -15,7 +15,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: FreedomBox UI\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2024-10-27 23:30+0000\n"
|
||||
"Last-Translator: Sunil Mohan Adapa <sunil@medhas.org>\n"
|
||||
"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/"
|
||||
@ -5552,7 +5552,7 @@ msgstr ""
|
||||
"tilgjengelig internt ikke være tilgjengelige."
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr "Eksternt"
|
||||
|
||||
@ -5568,7 +5568,7 @@ msgid "Create Connection"
|
||||
msgstr "Lage forbindelse"
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr "Slett tilkobling"
|
||||
|
||||
@ -5588,14 +5588,14 @@ msgstr "Lage mellomrom"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr "Ethernet"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr "Wi-Fi"
|
||||
|
||||
@ -5606,7 +5606,7 @@ msgstr "Wi-Fi"
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr "Vis forbindelse %(name)s"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr "Intern"
|
||||
|
||||
@ -5615,7 +5615,7 @@ msgid "Computer"
|
||||
msgstr "Datamaskin"
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr "Endre oppkobling"
|
||||
|
||||
@ -5625,7 +5625,7 @@ msgstr "Endre oppkobling"
|
||||
msgid "General"
|
||||
msgstr "Generisk"
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr "PPPoE"
|
||||
|
||||
@ -5637,13 +5637,13 @@ msgstr "Tilkobling"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr "Wi-Fi-nettverk i nærheten"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr "Legg til tilkobling"
|
||||
@ -5837,6 +5837,32 @@ msgid ""
|
||||
"full instructions on how to perform this task."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, fuzzy, python-format
|
||||
#| msgid "Delete %(username)s"
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr "Slett %(username)s"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
#, fuzzy
|
||||
#| msgid "Create Connection"
|
||||
msgid "Last scanned: "
|
||||
msgstr "Lage forbindelse"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
#, fuzzy
|
||||
#| msgid "Client not found"
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr "Finner ikke klient"
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
#, fuzzy
|
||||
#| msgid "Disabled"
|
||||
@ -6080,53 +6106,53 @@ msgstr "Kan ikke redigere tilkobling: Tilkobling ikke funnet."
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr "Denne typen tilkobling er ennå ikke forstått."
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr "Aktiverte tilkobling {name}."
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr "Kunne ikke aktivere tilkobling: Tilkobling ikke funnet."
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr ""
|
||||
"Klarte ikke aktivere tilkoblingen {name}: Ingen passende enhet er "
|
||||
"tilgjengelig."
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr "Deaktivert tilkobling {name}."
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr "Kunne ikke deaktivere tilkobling: Tilkobling ikke funnet."
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr "Legger til ny generell tilkobling"
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr "Legge til ny Ethernet-tilkobling"
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr "Legge til ny PPPoE-tilkobling"
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr "Legge til ny Wi-Fi-tilkobling"
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr "Tilkobling {name} slettet."
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr "Kunne ikke slette tilkobling: Tilkobling ikke funnet."
|
||||
|
||||
@ -7004,22 +7030,22 @@ msgstr ""
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr "Les og abonner på nyhetsstrømmer"
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
#, fuzzy
|
||||
#| msgid "Bridge"
|
||||
msgid "RSS-Bridge"
|
||||
msgstr "Bro"
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr ""
|
||||
|
||||
@ -9760,7 +9786,7 @@ msgstr ""
|
||||
"Brukerkontoen <strong>%(username)s</strong> vil bli administratorkonto for "
|
||||
"Zoph."
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr "Generisk"
|
||||
|
||||
@ -10266,10 +10292,6 @@ msgstr "Gujarati"
|
||||
#~ "For mer info om %(box_name)s-prosjektet, sjekk <a href=\"https://wiki."
|
||||
#~ "debian.org/FreedomBox\">%(box_name)s wiki</a>."
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete %(username)s"
|
||||
#~ msgstr "Slett %(username)s"
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete user %(username)s"
|
||||
#~ msgstr "Slett bruker %(username)s"
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2024-09-21 01:05+0000\n"
|
||||
"Last-Translator: ikmaak <info@ikmaak.nl>\n"
|
||||
"Language-Team: Dutch <https://hosted.weblate.org/projects/freedombox/"
|
||||
@ -5496,7 +5496,7 @@ msgstr ""
|
||||
"beschikbaar zijn niet bereikbaar."
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr "Extern"
|
||||
|
||||
@ -5514,7 +5514,7 @@ msgid "Create Connection"
|
||||
msgstr "Maak Verbinding"
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr "Verwijder verbinding"
|
||||
|
||||
@ -5534,14 +5534,14 @@ msgstr "Verbinding"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr "Ethernet"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr "Wi-Fi"
|
||||
|
||||
@ -5552,7 +5552,7 @@ msgstr "Wi-Fi"
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr "Tonen verbinding %(name)s"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr "Intern"
|
||||
|
||||
@ -5561,7 +5561,7 @@ msgid "Computer"
|
||||
msgstr "Computer"
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr "Wijzig verbinding"
|
||||
|
||||
@ -5569,7 +5569,7 @@ msgstr "Wijzig verbinding"
|
||||
msgid "General"
|
||||
msgstr "Algemeen"
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr "PPPoE"
|
||||
|
||||
@ -5579,13 +5579,13 @@ msgstr "Verbindingen"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr "Wi-Fi Netwerken dichtbij"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr "Verbinding toevoegen"
|
||||
@ -5800,6 +5800,32 @@ msgstr ""
|
||||
"handleiding van de router. Daarin wordt de juiste methode van instellen "
|
||||
"beschreven."
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, fuzzy, python-format
|
||||
#| msgid "Delete %(username)s"
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr "Verwijder %(username)s"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
#, fuzzy
|
||||
#| msgid "Last Connected Time"
|
||||
msgid "Last scanned: "
|
||||
msgstr "Tijdstip vorige verbinding"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
#, fuzzy
|
||||
#| msgid "Wi-Fi network not found"
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr "Wifi netwerk niet gevonden"
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
msgid "disabled"
|
||||
msgstr "uitgeschakeld"
|
||||
@ -5997,51 +6023,51 @@ msgstr "Kan verbinding niet wijzigen: Verbinding niet gevonden."
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr "Deze verbindingsmethode is (nog) niet bekend."
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr "Geactiveerde verbinding {name}."
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr "Kan verbinding niet inschakelen: Verbinding niet gevonden."
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr "Kan verbinding {name} niet inschakelen: Verbinding niet gevonden."
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr "Verbinding {name} uitgeschakeld."
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr "Kan verbinding niet uitschakelen: Verbinding niet gevonden."
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr "Toevoegen nieuwe Verbinding"
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr "Toevoegen nieuwe Ethernetverbinding"
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr "Toevoegen nieuwe PPPoE verbinding"
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr "Toevoegen nieuwe W-Fi verbinding"
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr "Verbinding {name} verwijderd."
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr "Kan verbinding niet verwijderen: Verbinding niet gevonden."
|
||||
|
||||
@ -6900,25 +6926,29 @@ msgstr ""
|
||||
"href=\"{users_url}\">elke gebruiker</a> die tot de feed-reader groep behoort."
|
||||
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
#, fuzzy, python-brace-format
|
||||
#| msgid ""
|
||||
#| "You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
#| "follow various websites. When adding a feed, enable authentication and "
|
||||
#| "use your {box_name} credentials."
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
"RSS-Bridge wordt met <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> gebruikt om "
|
||||
"verschillende websites te volgen. Schakel bij het toevoegen van een feed "
|
||||
"authenticatie in en gebruik de {box_name}-inloggegevens."
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr "Lezen en abonneren op nieuwsfeeds"
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr "RSS-Bridge"
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr "RSS Feed Generator"
|
||||
|
||||
@ -9663,7 +9693,7 @@ msgstr ""
|
||||
"Gebruikersaccount <strong>%(username)s</strong> wordt het beheerdersaccount "
|
||||
"voor Zoph."
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr "Generiek"
|
||||
|
||||
@ -10147,10 +10177,6 @@ msgstr "Gujarati"
|
||||
#~ "Voor meer informatie over het %(box_name)s project, zie de <a "
|
||||
#~ "href=\"https://wiki.debian.org/FreedomBox\">%(box_name)s Wiki</a>."
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete %(username)s"
|
||||
#~ msgstr "Verwijder %(username)s"
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete user %(username)s"
|
||||
#~ msgstr "Verwijder gebruiker %(username)s"
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2024-07-13 12:09+0000\n"
|
||||
"Last-Translator: Monika <adamdomenek@protonmail.com>\n"
|
||||
"Language-Team: Polish <https://hosted.weblate.org/projects/freedombox/"
|
||||
@ -5293,7 +5293,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr ""
|
||||
|
||||
@ -5309,7 +5309,7 @@ msgid "Create Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -5329,14 +5329,14 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr ""
|
||||
|
||||
@ -5347,7 +5347,7 @@ msgstr ""
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr ""
|
||||
|
||||
@ -5356,7 +5356,7 @@ msgid "Computer"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -5364,7 +5364,7 @@ msgstr ""
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr "PPPoE"
|
||||
|
||||
@ -5376,13 +5376,13 @@ msgstr "Odmowa dostępu"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr ""
|
||||
@ -5556,6 +5556,29 @@ msgid ""
|
||||
"full instructions on how to perform this task."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, python-format
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
msgid "Last scanned: "
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
#, fuzzy
|
||||
#| msgid "Repository not found"
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr "Nie odnaleziono repozytorium"
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
#, fuzzy
|
||||
#| msgid "Disabled"
|
||||
@ -5773,51 +5796,51 @@ msgstr ""
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
@ -6550,20 +6573,20 @@ msgstr ""
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr ""
|
||||
|
||||
@ -9121,7 +9144,7 @@ msgid ""
|
||||
"account for Zoph."
|
||||
msgstr ""
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2023-05-22 15:50+0000\n"
|
||||
"Last-Translator: Frederico Gomes <fefekrzr@gmail.com>\n"
|
||||
"Language-Team: Portuguese <https://hosted.weblate.org/projects/freedombox/"
|
||||
@ -5155,7 +5155,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr "Externa"
|
||||
|
||||
@ -5171,7 +5171,7 @@ msgid "Create Connection"
|
||||
msgstr "Criar ligação"
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr "Eliminar ligação"
|
||||
|
||||
@ -5191,14 +5191,14 @@ msgstr "Espaçamento"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr "Ethernet"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr "Wi-Fi"
|
||||
|
||||
@ -5209,7 +5209,7 @@ msgstr "Wi-Fi"
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr "Mostrar ligação %(name)s"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr "Interna"
|
||||
|
||||
@ -5218,7 +5218,7 @@ msgid "Computer"
|
||||
msgstr "Computador"
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr "Editar ligação"
|
||||
|
||||
@ -5226,7 +5226,7 @@ msgstr "Editar ligação"
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr ""
|
||||
|
||||
@ -5238,13 +5238,13 @@ msgstr "Conexão recusada"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr "Redes de Wi-Fi nas proximidades"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr "Adicionar ligação"
|
||||
@ -5418,6 +5418,29 @@ msgid ""
|
||||
"full instructions on how to perform this task."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, python-format
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
msgid "Last scanned: "
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
#, fuzzy
|
||||
#| msgid "Repository not found"
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr "Repositório não encontrado"
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
#, fuzzy
|
||||
#| msgid "Applications"
|
||||
@ -5639,53 +5662,53 @@ msgstr "Não é possível editar a ligação: Ligação não encontrada."
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr "Este tipo de ligação ainda não é compreendido."
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr "Ligação {name} ativada."
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr "Falha ao ativar a ligação: Ligação não encontrada."
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr ""
|
||||
"Falha ao ativar a ligação {name}: Nenhum dispositivo adequado está "
|
||||
"disponível."
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr "Ligação {name} desativada."
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr "Falha ao desativar a ligação: Ligação não encontrada."
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr "Adicionando nova ligação Ethernet"
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr "Adicionando nova ligação PPPoE"
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr "Adicionando nova ligação Wi-Fi"
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr "Ligação {name} eliminada."
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr "Falha ao eliminar a ligação: Ligação não encontrada."
|
||||
|
||||
@ -6414,20 +6437,20 @@ msgstr ""
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr ""
|
||||
|
||||
@ -8886,7 +8909,7 @@ msgid ""
|
||||
"account for Zoph."
|
||||
msgstr ""
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2024-05-26 04:09+0000\n"
|
||||
"Last-Translator: gfbdrgng <hnaofegnp@hldrive.com>\n"
|
||||
"Language-Team: Russian <https://hosted.weblate.org/projects/freedombox/"
|
||||
@ -5547,7 +5547,7 @@ msgstr ""
|
||||
"его к локальной сети/машине, многие внутренние службы будут не доступны."
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr "Внешний"
|
||||
|
||||
@ -5565,7 +5565,7 @@ msgid "Create Connection"
|
||||
msgstr "Создание подключения"
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr "Удаление подключения"
|
||||
|
||||
@ -5585,14 +5585,14 @@ msgstr "Интервал"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr "Ethernet"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr "Wi-Fi"
|
||||
|
||||
@ -5603,7 +5603,7 @@ msgstr "Wi-Fi"
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr "Показать подключение %(name)s"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr "Внутренний"
|
||||
|
||||
@ -5612,7 +5612,7 @@ msgid "Computer"
|
||||
msgstr "Компьютер"
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr "Редактирование подключения"
|
||||
|
||||
@ -5622,7 +5622,7 @@ msgstr "Редактирование подключения"
|
||||
msgid "General"
|
||||
msgstr "Универсальный"
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr "PPPоE"
|
||||
|
||||
@ -5632,13 +5632,13 @@ msgstr "Подключения"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr "Соседние сети Wi-Fi"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr "Добавить подключение"
|
||||
@ -5855,6 +5855,32 @@ msgstr ""
|
||||
"маршрутизатору. Это предоставит полные инструкции о том, как выполнить эту "
|
||||
"задачу."
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, fuzzy, python-format
|
||||
#| msgid "Delete %(username)s"
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr "Удаление %(username)s"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
#, fuzzy
|
||||
#| msgid "Last Connected Time"
|
||||
msgid "Last scanned: "
|
||||
msgstr "Время последнего подключения"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
#, fuzzy
|
||||
#| msgid "Wi-Fi network not found"
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr "Сеть Wi-Fi не найдена"
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
msgid "disabled"
|
||||
msgstr "выключено"
|
||||
@ -6056,51 +6082,51 @@ msgstr "Нельзя редактировать подключение: подк
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr "Этот тип подключения еще не понятен."
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr "Установленное подключение {name}."
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr "Невозможно установить подключение: Подключение не найдено."
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr "Не удалось установить подключение {name}: Нет подходящего устройства."
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr "Разорвано подключение {name}."
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr "Не удалось разорвать подключение: соединение не найдено."
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr "Добавление нового общего подключения"
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr "Добавление нового подключения Ethernet"
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr "Добавление нового подключения PPPoE"
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr "Добавление нового подключения Wi-Fi"
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr "Подключение {name} удалено."
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr "Не удалось удалить подключение: соединение не найдено."
|
||||
|
||||
@ -6981,25 +7007,29 @@ msgstr ""
|
||||
"фидов."
|
||||
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
#, fuzzy, python-brace-format
|
||||
#| msgid ""
|
||||
#| "You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
#| "follow various websites. When adding a feed, enable authentication and "
|
||||
#| "use your {box_name} credentials."
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
"Вы можете использовать RSS-мостик с <a href=\"{ttrss_url}\">Tiny Tiny RSS</"
|
||||
"a>, чтобы следить за различными сайтами. При добавлении ленты включите "
|
||||
"аутентификацию и используйте свои учетные данные {box_name}."
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr "Чтение и подписка на ленты новостей"
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr "RSS-мост"
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr "Генератор RSS-каналов"
|
||||
|
||||
@ -9735,7 +9765,7 @@ msgstr ""
|
||||
"Учетная запись пользователя <strong>%(username)s</strong> станет учетной "
|
||||
"записью администратора для Zoph."
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr "Универсальный"
|
||||
|
||||
@ -10222,10 +10252,6 @@ msgstr "Гуджарати"
|
||||
#~ "Дополнительную информацию о проекте %(box_name)s можно найти на <a "
|
||||
#~ "href=\"https://wiki.debian.org/FreedomBox\">%(box_name)s Wiki</a>."
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete %(username)s"
|
||||
#~ msgstr "Удаление %(username)s"
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete user %(username)s"
|
||||
#~ msgstr "Удалить пользователя %(username)s"
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2021-04-27 13:32+0000\n"
|
||||
"Last-Translator: HelaBasa <R45XvezA@protonmail.ch>\n"
|
||||
"Language-Team: Sinhala <https://hosted.weblate.org/projects/freedombox/"
|
||||
@ -4774,7 +4774,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr ""
|
||||
|
||||
@ -4790,7 +4790,7 @@ msgid "Create Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -4810,14 +4810,14 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr ""
|
||||
|
||||
@ -4828,7 +4828,7 @@ msgstr ""
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr ""
|
||||
|
||||
@ -4837,7 +4837,7 @@ msgid "Computer"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -4845,7 +4845,7 @@ msgstr ""
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr ""
|
||||
|
||||
@ -4855,13 +4855,13 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr ""
|
||||
@ -5035,6 +5035,27 @@ msgid ""
|
||||
"full instructions on how to perform this task."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, python-format
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
msgid "Last scanned: "
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
@ -5232,51 +5253,51 @@ msgstr ""
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
@ -5977,20 +5998,20 @@ msgstr ""
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr ""
|
||||
|
||||
@ -8349,7 +8370,7 @@ msgid ""
|
||||
"account for Zoph."
|
||||
msgstr ""
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2022-09-14 17:19+0000\n"
|
||||
"Last-Translator: ikmaak <info@ikmaak.nl>\n"
|
||||
"Language-Team: Slovenian <https://hosted.weblate.org/projects/freedombox/"
|
||||
@ -5063,7 +5063,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr ""
|
||||
|
||||
@ -5079,7 +5079,7 @@ msgid "Create Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -5099,14 +5099,14 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr ""
|
||||
|
||||
@ -5117,7 +5117,7 @@ msgstr ""
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr ""
|
||||
|
||||
@ -5126,7 +5126,7 @@ msgid "Computer"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -5134,7 +5134,7 @@ msgstr ""
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr ""
|
||||
|
||||
@ -5146,13 +5146,13 @@ msgstr "Povezava je zavrnjena"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr ""
|
||||
@ -5326,6 +5326,29 @@ msgid ""
|
||||
"full instructions on how to perform this task."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, python-format
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
msgid "Last scanned: "
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
#, fuzzy
|
||||
#| msgid "Repository not found"
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr "Ne najdem skladišča"
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
@ -5533,51 +5556,51 @@ msgstr ""
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
@ -6297,20 +6320,20 @@ msgstr ""
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr ""
|
||||
|
||||
@ -8767,7 +8790,7 @@ msgid ""
|
||||
"account for Zoph."
|
||||
msgstr ""
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"PO-Revision-Date: 2024-10-23 05:15+0000\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2024-11-06 05:06+0000\n"
|
||||
"Last-Translator: Besnik Bleta <besnik@programeshqip.org>\n"
|
||||
"Language-Team: Albanian <https://hosted.weblate.org/projects/freedombox/"
|
||||
"freedombox/sq/>\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 5.8.2-dev\n"
|
||||
"X-Generator: Weblate 5.8.2\n"
|
||||
|
||||
#: config.py:103
|
||||
#, python-brace-format
|
||||
@ -325,6 +325,10 @@ msgid ""
|
||||
"file previously downloaded from the result of a successful backup on a "
|
||||
"{box_name}. It must have a .tar.gz extension."
|
||||
msgstr ""
|
||||
"Përzgjidhni kartelën kopjeruajtje për t’u ngarkuar nga kompjuteri vendor. "
|
||||
"Kjo duhet të jetë një kartelë e shkarkuar më herët nga përfundimi i një "
|
||||
"kojeruajtjeje të suksesshme te një {box_name}. Duhet të ketë zgjatimin .tar."
|
||||
"gz."
|
||||
|
||||
#: modules/backups/forms.py:152
|
||||
msgid "Repository path format incorrect."
|
||||
@ -2975,10 +2979,8 @@ msgstr ""
|
||||
"<i>emër_pakete</i>” në një terminal (duke përdorur Cockpit, ose SSH)."
|
||||
|
||||
#: modules/help/templates/help_about.html:85
|
||||
#, fuzzy
|
||||
#| msgid "Learn more"
|
||||
msgid "Learn"
|
||||
msgstr "Mësoni më tepër"
|
||||
msgstr "Mësoni"
|
||||
|
||||
#: modules/help/templates/help_about.html:88
|
||||
msgid "Homepage"
|
||||
@ -2990,17 +2992,15 @@ msgstr "Dhuroni"
|
||||
|
||||
#: modules/help/templates/help_about.html:107
|
||||
msgid "Join project"
|
||||
msgstr ""
|
||||
msgstr "Merrni pjesë te projekti"
|
||||
|
||||
#: modules/help/templates/help_about.html:111
|
||||
msgid "Translate"
|
||||
msgstr ""
|
||||
msgstr "Përktheni"
|
||||
|
||||
#: modules/help/templates/help_about.html:117
|
||||
#, fuzzy
|
||||
#| msgid "Get Support"
|
||||
msgid "Support"
|
||||
msgstr "Merrni Asistencë"
|
||||
msgstr "Asistencë"
|
||||
|
||||
#: modules/help/templates/help_about.html:121
|
||||
msgid "Forum"
|
||||
@ -4612,7 +4612,7 @@ msgstr "Mumla"
|
||||
|
||||
#: modules/mumble/manifest.py:67
|
||||
msgid "Group conference"
|
||||
msgstr ""
|
||||
msgstr "Konferencë grupi"
|
||||
|
||||
#: modules/mumble/manifest.py:67 modules/radicale/manifest.py:91
|
||||
#: modules/shadowsocks/forms.py:24
|
||||
@ -4758,7 +4758,7 @@ msgstr "Shërbime"
|
||||
|
||||
#: modules/names/templates/names.html:56
|
||||
msgid "Resolver Status"
|
||||
msgstr ""
|
||||
msgstr "Gjendje Zgjidhësi"
|
||||
|
||||
#: modules/names/templates/names.html:66
|
||||
msgid "Global"
|
||||
@ -5461,7 +5461,7 @@ msgstr ""
|
||||
"përdorur vetëm së brendshmi, do të jenë të papërdorshme."
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr "Së jashtmi"
|
||||
|
||||
@ -5479,7 +5479,7 @@ msgid "Create Connection"
|
||||
msgstr "Krijoni Lidhje"
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr "Fshije Lidhjen"
|
||||
|
||||
@ -5499,14 +5499,14 @@ msgstr "Hapësirë"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr "Ethernet"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr "Wi-Fi"
|
||||
|
||||
@ -5517,7 +5517,7 @@ msgstr "Wi-Fi"
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr "Shfaq lidhjen %(name)s"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr "E brendshme"
|
||||
|
||||
@ -5526,7 +5526,7 @@ msgid "Computer"
|
||||
msgstr "Kompjuter"
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr "Përpunoni Lidhje"
|
||||
|
||||
@ -5534,7 +5534,7 @@ msgstr "Përpunoni Lidhje"
|
||||
msgid "General"
|
||||
msgstr "Të përgjithshme"
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr "PPPoE"
|
||||
|
||||
@ -5544,13 +5544,13 @@ msgstr "Lidhje"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr "Rrjete Wi-Fi Atypari"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr "Shtoni Lidhje"
|
||||
@ -5765,6 +5765,32 @@ msgstr ""
|
||||
"numrin e modelit të rrugëzuesit tuaj dhe kërkoni në internet për doracakun e "
|
||||
"rrugëzuesit. Kjo do t’ju japë udhëzimet e plota se si të kryhet kjo punë."
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, fuzzy, python-format
|
||||
#| msgid "Delete %(username)s"
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr "Fshije %(username)s"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
#, fuzzy
|
||||
#| msgid "Last Connected Time"
|
||||
msgid "Last scanned: "
|
||||
msgstr "Kohë e Lidhjes së Fundit"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
#, fuzzy
|
||||
#| msgid "Wi-Fi network not found"
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr "S’u gjet rrjet Wi-Fi"
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
msgid "disabled"
|
||||
msgstr "i çaktivizuar"
|
||||
@ -5962,52 +5988,52 @@ msgstr "S’përpunohet dot lidhje: S’u gjet lidhje."
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr "Ky lloj lidhjesh nuk kuptohet ende."
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr "U aktivizua lidhja {name}."
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr "S’u arrit të aktivizohet lidhje: S’u gjet lidhje."
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr ""
|
||||
"S’u arrit të aktivizohet lidhja {name}: S’u gjet pajisje e përshtatshme."
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr "U çaktivizua lidhja {name}."
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr "Dështoi çaktivizimi i lidhjes: S’u gjet lidhje."
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr "Po Shtohet Lidhje e Re Elementare"
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr "Po Shtohet Lidhje e Re Ethernet"
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr "Po Shtohet Lidhje e Re PPPoE"
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr "Po Shtohet Lidhje e Re Wi-Fi"
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr "Lidhja {name} u fshi."
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr "S’u arrit të fshihet lidhje: S’u gjet lidhje."
|
||||
|
||||
@ -6872,25 +6898,29 @@ msgstr ""
|
||||
"prurjeve."
|
||||
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
#, fuzzy, python-brace-format
|
||||
#| msgid ""
|
||||
#| "You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
#| "follow various websites. When adding a feed, enable authentication and "
|
||||
#| "use your {box_name} credentials."
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
"RSS-Bridge-in mund ta përdorni me <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> "
|
||||
"për të ndjekur sajte të ndryshëm. Kur shtohet një prurje, aktivizoni "
|
||||
"mirëfilltësimin dhe përdorni kredencialet tuaj për {box_name}."
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr "Lexoni dhe pajtohuni te prurje lajmesh"
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr "RSS-Bridge"
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr "Prodhues Prurjesh RSS"
|
||||
|
||||
@ -8943,22 +8973,21 @@ msgstr ""
|
||||
"shpërfillen."
|
||||
|
||||
#: modules/users/forms.py:252
|
||||
#, fuzzy
|
||||
#| msgid "Delete User"
|
||||
msgid "Delete user"
|
||||
msgstr "Fshi Përdorues"
|
||||
msgstr "Fshi përdorues"
|
||||
|
||||
#: modules/users/forms.py:254
|
||||
msgid ""
|
||||
"Deleting the user account will also remove all the files related to the "
|
||||
"user. Deleting files can be avoided by setting the user account as inactive."
|
||||
msgstr ""
|
||||
"Fshirja e llogarisë do të heqë gjithashtu krejt kartelat e lidhura me "
|
||||
"përdoruesin. Fshirja e kartelave mund të shmanget duke e vënë llogarinë e "
|
||||
"përdoruesit si joaktive."
|
||||
|
||||
#: modules/users/forms.py:305
|
||||
#, fuzzy
|
||||
#| msgid "Failed to add user to group."
|
||||
msgid "Failed to delete user."
|
||||
msgstr "S’u arrit të shtohej përdorues te grup."
|
||||
msgstr "S’u arrit të fshihej përdorues."
|
||||
|
||||
#: modules/users/forms.py:320
|
||||
msgid "Renaming LDAP user failed."
|
||||
@ -9086,10 +9115,9 @@ msgid "Save Changes"
|
||||
msgstr "Ruaji Ndryshimet"
|
||||
|
||||
#: modules/users/templates/users_update.html:41
|
||||
#, fuzzy, python-format
|
||||
#| msgid "Delete user <strong>%(username)s</strong> permanently?"
|
||||
#, python-format
|
||||
msgid "Delete user <em>%(username)s</em> and all the user's files?"
|
||||
msgstr "Të fshihet përgjithnjë përdoruesi <strong>%(username)s</strong>?"
|
||||
msgstr "Të fshihet përdoruesi %(username)s dhe krejt kartelat e përdoruesit?"
|
||||
|
||||
#: modules/users/templates/users_update.html:46 templates/messages.html:11
|
||||
msgid "Close"
|
||||
@ -9100,12 +9128,13 @@ msgid ""
|
||||
"Deleting a user account also removes all the files user's home directory. If "
|
||||
"you wish to keep these files, disable the user account instead."
|
||||
msgstr ""
|
||||
"Fshirja e llogarisë do të heqë gjithashtu krejt kartelat drejtorisë shtëpi "
|
||||
"të përdoruesit. Nëse dëshironi t’i mbani këto kartela, më mirë çaktivizoni "
|
||||
"llogarinë e përdoruesit."
|
||||
|
||||
#: modules/users/templates/users_update.html:59
|
||||
#, fuzzy
|
||||
#| msgid "Delete files"
|
||||
msgid "Delete user and files"
|
||||
msgstr "Fshini kartela"
|
||||
msgstr "Fshini përdorues dhe kartela"
|
||||
|
||||
#: modules/users/templates/users_update.html:62
|
||||
msgid "Cancel"
|
||||
@ -9126,10 +9155,9 @@ msgid "Edit User"
|
||||
msgstr "Përpunoni Përdorues"
|
||||
|
||||
#: modules/users/views.py:111
|
||||
#, fuzzy, python-format
|
||||
#| msgid "User %(username)s created."
|
||||
#, python-format
|
||||
msgid "User %(username)s deleted."
|
||||
msgstr "Përdoruesi %(username)s u krijua."
|
||||
msgstr "Përdoruesi %(username)s u fshi."
|
||||
|
||||
#: modules/users/views.py:130
|
||||
msgid "Change Password"
|
||||
@ -9624,7 +9652,7 @@ msgstr ""
|
||||
"Llogaria e përdoruesit <strong>%(username)s</strong> do të bëhet llogaria e "
|
||||
"përgjegjësit për Zoph."
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr "Elementar"
|
||||
|
||||
@ -10102,10 +10130,6 @@ msgstr "Gujaratase"
|
||||
#~ "Për më tepër hollësi mbi projektin %(box_name)s, shihni <a href=\"https://"
|
||||
#~ "wiki.debian.org/FreedomBox\">%(box_name)s Wiki</a>."
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete %(username)s"
|
||||
#~ msgstr "Fshije %(username)s"
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete user %(username)s"
|
||||
#~ msgstr "Fshije përdoruesin %(username)s"
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2022-09-14 17:20+0000\n"
|
||||
"Last-Translator: ikmaak <info@ikmaak.nl>\n"
|
||||
"Language-Team: Serbian <https://hosted.weblate.org/projects/freedombox/"
|
||||
@ -4949,7 +4949,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr ""
|
||||
|
||||
@ -4965,7 +4965,7 @@ msgid "Create Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -4985,14 +4985,14 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr ""
|
||||
|
||||
@ -5003,7 +5003,7 @@ msgstr ""
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr ""
|
||||
|
||||
@ -5012,7 +5012,7 @@ msgid "Computer"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -5020,7 +5020,7 @@ msgstr ""
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr ""
|
||||
|
||||
@ -5030,13 +5030,13 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr ""
|
||||
@ -5210,6 +5210,29 @@ msgid ""
|
||||
"full instructions on how to perform this task."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, python-format
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
msgid "Last scanned: "
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
#, fuzzy
|
||||
#| msgid "Repository not found"
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr "Repozitorijum nije pronađen"
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
@ -5415,51 +5438,51 @@ msgstr ""
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
@ -6177,20 +6200,20 @@ msgstr ""
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr ""
|
||||
|
||||
@ -8586,7 +8609,7 @@ msgid ""
|
||||
"account for Zoph."
|
||||
msgstr ""
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2024-07-30 01:31+0000\n"
|
||||
"Last-Translator: bittin1ddc447d824349b2 <bittin@reimu.nl>\n"
|
||||
"Language-Team: Swedish <https://hosted.weblate.org/projects/freedombox/"
|
||||
@ -5525,7 +5525,7 @@ msgstr ""
|
||||
"endast vara tillgängliga internt inte att vara tillgängliga."
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr "Externa"
|
||||
|
||||
@ -5543,7 +5543,7 @@ msgid "Create Connection"
|
||||
msgstr "Skapa anslutning"
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr "Ta Bort Anslutning"
|
||||
|
||||
@ -5563,14 +5563,14 @@ msgstr "Avstånd"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr "Ethernet"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr "Wi-Fi"
|
||||
|
||||
@ -5581,7 +5581,7 @@ msgstr "Wi-Fi"
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr "Visa anslutning %(name)s"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr "Interna"
|
||||
|
||||
@ -5590,7 +5590,7 @@ msgid "Computer"
|
||||
msgstr "Dator"
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr "Redigera Anslutning"
|
||||
|
||||
@ -5600,7 +5600,7 @@ msgstr "Redigera Anslutning"
|
||||
msgid "General"
|
||||
msgstr "Generiska"
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr "Pppoe"
|
||||
|
||||
@ -5610,13 +5610,13 @@ msgstr "Anslutningar"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr "Wi-Fi-nätverk i närheten"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr "Lägg till Anslutning"
|
||||
@ -5829,6 +5829,32 @@ msgstr ""
|
||||
"din router modellnummer och sök online för routerns manual. Detta ger "
|
||||
"fullständiga instruktioner om hur du utför den här uppgiften."
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, fuzzy, python-format
|
||||
#| msgid "Delete %(username)s"
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr "Ta bort %(username)s"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
#, fuzzy
|
||||
#| msgid "Last Connected Time"
|
||||
msgid "Last scanned: "
|
||||
msgstr "Senast ansluten tid"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
#, fuzzy
|
||||
#| msgid "Wi-Fi network not found"
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr "Wi-Fi-nätverket hittades inte"
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
msgid "disabled"
|
||||
msgstr "inaktiverad"
|
||||
@ -6030,53 +6056,53 @@ msgstr "Kan inte redigera anslutning: Ingen anslutning hittades."
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr "Denna typ av anslutning är inte förstådd ännu."
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr "Aktiverad anslutning {name}."
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr "Det gick inte att aktivera anslutning: Ingen anslutning hittades."
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr ""
|
||||
"Det gick inte att aktivera anslutningen {name}: Ingen lämplig enhet är "
|
||||
"tillgänglig."
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr "Inaktiverade anslutning {name}."
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr "Kunde inte de-aktivera anslutning: Anslutning hittades inte."
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr "Lägga till ny generiska anslutning"
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr "Lägg Till Ny Ethernet-Anslutning"
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr "Lägg Till Ny PPPoE-Anslutning"
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr "Lägg Till Ny Wi-Fi-Anslutning"
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr "Anslutning {name} borttagen."
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr "Det gick inte att ta bort anslutning: Anslutning hittades inte."
|
||||
|
||||
@ -6938,25 +6964,29 @@ msgstr ""
|
||||
"användare</a> som tillhör feed-reader-gruppen."
|
||||
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
#, fuzzy, python-brace-format
|
||||
#| msgid ""
|
||||
#| "You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
#| "follow various websites. When adding a feed, enable authentication and "
|
||||
#| "use your {box_name} credentials."
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
"Du kan använda RSS-Bridge med <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> för "
|
||||
"att följa olika webbplatser. När du lägger till ett feed aktiverar du "
|
||||
"autentisering och använder dina {box_name}-autentiseringsuppgifter."
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr "Läsa och prenumerera på nyhetsflöden"
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr "RSS-Bridge"
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr "RSS Feed Generator"
|
||||
|
||||
@ -9678,7 +9708,7 @@ msgstr ""
|
||||
"Användarkonto <strong>%(username)s</strong> kommer att bli "
|
||||
"administratörskonto för Zoph."
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr "Generiska"
|
||||
|
||||
@ -10163,10 +10193,6 @@ msgstr "Gujarati"
|
||||
#~ "Mer information om %(box_name)s -projektet finns på <a href=\"https://"
|
||||
#~ "wiki.debian.org/FreedomBox\"> %(box_name)s wiki</a>."
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete %(username)s"
|
||||
#~ msgstr "Ta bort %(username)s"
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete user %(username)s"
|
||||
#~ msgstr "Ta bort användare %(username)s"
|
||||
|
||||
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -4773,7 +4773,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr ""
|
||||
|
||||
@ -4789,7 +4789,7 @@ msgid "Create Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -4809,14 +4809,14 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr ""
|
||||
|
||||
@ -4827,7 +4827,7 @@ msgstr ""
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr ""
|
||||
|
||||
@ -4836,7 +4836,7 @@ msgid "Computer"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -4844,7 +4844,7 @@ msgstr ""
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr ""
|
||||
|
||||
@ -4854,13 +4854,13 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr ""
|
||||
@ -5034,6 +5034,27 @@ msgid ""
|
||||
"full instructions on how to perform this task."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, python-format
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
msgid "Last scanned: "
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
@ -5231,51 +5252,51 @@ msgstr ""
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
@ -5976,20 +5997,20 @@ msgstr ""
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr ""
|
||||
|
||||
@ -8348,7 +8369,7 @@ msgid ""
|
||||
"account for Zoph."
|
||||
msgstr ""
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: FreedomBox UI\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2024-09-03 14:09+0000\n"
|
||||
"Last-Translator: Hemanth Kumar Veeranki <hems.india1997@gmail.com>\n"
|
||||
"Language-Team: Telugu <https://hosted.weblate.org/projects/freedombox/"
|
||||
@ -5375,7 +5375,7 @@ msgstr ""
|
||||
"కేవలం అంతర్గతంగానే అందుబాటులో అనేది అనేక సేవలు అందుబాటులో వుండదు."
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr "బహిర్గత"
|
||||
|
||||
@ -5393,7 +5393,7 @@ msgid "Create Connection"
|
||||
msgstr "అనుసంధానం సృష్టించు"
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr "అనుసంధానం తొలగించు"
|
||||
|
||||
@ -5413,14 +5413,14 @@ msgstr "అంతరం"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr "ఈథర్నెట్"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr "Wi-Fi"
|
||||
|
||||
@ -5431,7 +5431,7 @@ msgstr "Wi-Fi"
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr "అనుసంధానం చూపించు %(name)s"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr "అంతర్గత"
|
||||
|
||||
@ -5440,7 +5440,7 @@ msgid "Computer"
|
||||
msgstr "కంప్యూటర్"
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr "అనుసంధానాన్ని సవరించండి"
|
||||
|
||||
@ -5450,7 +5450,7 @@ msgstr "అనుసంధానాన్ని సవరించండి"
|
||||
msgid "General"
|
||||
msgstr "సాధారణమైన"
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr "పిపిపిఒఇ"
|
||||
|
||||
@ -5460,13 +5460,13 @@ msgstr "అనుసంధానం"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr "సమీప వై-ఫై నెట్వర్కులు"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr "అనుసంధానాన్ని జతచేయండి"
|
||||
@ -5669,6 +5669,32 @@ msgstr ""
|
||||
"శోధించండి మరియు రూటర్ మాన్యువల్ కోసం ఆన్లైన్లో శోధించండి. ఈ పనిని ఎలా నిర్వహించాలో ఇది పూర్తి సూచనలను "
|
||||
"అందిస్తుంది."
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, fuzzy, python-format
|
||||
#| msgid "Delete %(username)s"
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr "%(username)s తొలగించు"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
#, fuzzy
|
||||
#| msgid "Last Connected Time"
|
||||
msgid "Last scanned: "
|
||||
msgstr "చివరిగా కనెక్ట్ చేయబడిన సమయం"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
#, fuzzy
|
||||
#| msgid "Wi-Fi network not found"
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr "Wi-Fi నెట్వర్క్ కనుగొనబడలేదు"
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
msgid "disabled"
|
||||
msgstr "నిలిపివేయబడింది"
|
||||
@ -5870,51 +5896,51 @@ msgstr "దొరకలేదు అనుసంధానం: అనుసంధ
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr "ఇటువంటి అనుసంధాన రకం ఇంకా అర్థంకాలేదు."
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr "{name} అనుసంధానం ఉత్తేజించబడింది."
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr "అనుసంధానాన్ని ఉత్తేజించుటలో విఫలమైంది: అనుసంధానం దొరకలేదు."
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr "{name} అనుసంధానాన్ని ఉత్తేజించుటలో విఫలమైంది: సరైన పరికరం అందుబాటులో లేదు."
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr "{name} అనుసంధానం క్రియారహితం చేయబడింది."
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr "అనుసంధానం క్రియారహితం విఫలమైంది: అనుసంధానం దొరకలేదు."
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr "కొత్త జెనరిక్ కనెక్షన్ని జోడిస్తోంది"
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr "కొత్త ఈథర్నెట్ అనుసంధానాన్ని కలుపుతోంది"
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr "కొత్త PPPoE అనుసంధానాన్ని కలుపుతోంది"
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr "కొత్త వై-ఫై అనుసంధానాన్ని కలుపుతోంది"
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr "{name} అనుసంధానం తొలగించబడింది."
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr "అనుసంధానం తొలగించడం విఫలమైంది: అనుసంధానం దొరకలేదు."
|
||||
|
||||
@ -6762,25 +6788,29 @@ msgstr ""
|
||||
"href=\"{users_url}\">ఏ వినియోగదారు</a> అయినా సాంగత్యం చేయవచ్చు."
|
||||
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
#, fuzzy, python-brace-format
|
||||
#| msgid ""
|
||||
#| "You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
#| "follow various websites. When adding a feed, enable authentication and "
|
||||
#| "use your {box_name} credentials."
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
"మీరు వివిధ వెబ్సైట్లను అనుసరించడానికి ఆర్ఎస్ఎస్- వంతెనను <a href=\"{ttrss_url}\">టైని టైని "
|
||||
"ఆర్ఎస్ఎస్</a>తొ వాడవచ్చు. ఫీడ్ను జోడించేటప్పుడు ప్రామాణీకరణ కోసం {box_name} ఆధారాలను ఇవ్వండి."
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr "న్యూస్ ఫీడ్లను చదవడం మరియు చందాదారునిగా చేరు"
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
#, fuzzy
|
||||
msgid "RSS-Bridge"
|
||||
msgstr "ఆర్ ఎస్ ఎస్- వంతెన"
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr "ఆర్ఎస్ఎస్ ఫీడ్ జనరేటర్"
|
||||
|
||||
@ -9443,7 +9473,7 @@ msgid ""
|
||||
"account for Zoph."
|
||||
msgstr "వినియోగదారు ఖాతా <strong>%(username)s</strong> జోఫ్ కోసం నిర్వాహక ఖాతా అవుతుంది."
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr "సాధారణమైన"
|
||||
|
||||
@ -9947,10 +9977,6 @@ msgstr "గుజరాతీ"
|
||||
#~ "%(box_name)s ప్రాజెక్ట్ కి సంబందించిన మరింత సమాచారం కోసం <a href=\"https://wiki."
|
||||
#~ "debian.org/FreedomBox\"> %(box_name)s వికీ </a> ను దర్శించండి."
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete %(username)s"
|
||||
#~ msgstr "%(username)s తొలగించు"
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete user %(username)s"
|
||||
#~ msgstr "వినియోగదారి %(username)s ను తొలగించు"
|
||||
|
||||
@ -6,8 +6,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"PO-Revision-Date: 2024-10-23 05:15+0000\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2024-11-06 05:06+0000\n"
|
||||
"Last-Translator: Burak Yavuz <hitowerdigit@hotmail.com>\n"
|
||||
"Language-Team: Turkish <https://hosted.weblate.org/projects/freedombox/"
|
||||
"freedombox/tr/>\n"
|
||||
@ -16,7 +16,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 5.8.2-dev\n"
|
||||
"X-Generator: Weblate 5.8.2\n"
|
||||
|
||||
#: config.py:103
|
||||
#, python-brace-format
|
||||
@ -321,6 +321,9 @@ msgid ""
|
||||
"file previously downloaded from the result of a successful backup on a "
|
||||
"{box_name}. It must have a .tar.gz extension."
|
||||
msgstr ""
|
||||
"Yerel bilgisayardan yüklenecek yedekleme dosyasını seçin. Bu, daha önce "
|
||||
"{box_name} üzerinde başarılı bir yedekleme sonucunda indirilen bir dosya "
|
||||
"olmak zorundadır. .tar.gz uzantısına sahip olmak zorundadır."
|
||||
|
||||
#: modules/backups/forms.py:152
|
||||
msgid "Repository path format incorrect."
|
||||
@ -2959,10 +2962,8 @@ msgstr ""
|
||||
"edilebilir."
|
||||
|
||||
#: modules/help/templates/help_about.html:85
|
||||
#, fuzzy
|
||||
#| msgid "Learn more"
|
||||
msgid "Learn"
|
||||
msgstr "Daha fazla bilgi edinin"
|
||||
msgstr "Bilgi edinin"
|
||||
|
||||
#: modules/help/templates/help_about.html:88
|
||||
msgid "Homepage"
|
||||
@ -2974,17 +2975,15 @@ msgstr "Bağış"
|
||||
|
||||
#: modules/help/templates/help_about.html:107
|
||||
msgid "Join project"
|
||||
msgstr ""
|
||||
msgstr "Projeye katıl"
|
||||
|
||||
#: modules/help/templates/help_about.html:111
|
||||
msgid "Translate"
|
||||
msgstr ""
|
||||
msgstr "Çevir"
|
||||
|
||||
#: modules/help/templates/help_about.html:117
|
||||
#, fuzzy
|
||||
#| msgid "Get Support"
|
||||
msgid "Support"
|
||||
msgstr "Destek Al"
|
||||
msgstr "Destek"
|
||||
|
||||
#: modules/help/templates/help_about.html:121
|
||||
msgid "Forum"
|
||||
@ -5428,7 +5427,7 @@ msgstr ""
|
||||
"kullanılamayacaktır."
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr "Harici"
|
||||
|
||||
@ -5446,7 +5445,7 @@ msgid "Create Connection"
|
||||
msgstr "Bağlantı Oluştur"
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr "Bağlantıyı Sil"
|
||||
|
||||
@ -5466,14 +5465,14 @@ msgstr "Aralık"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr "Ethernet"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr "Kablosuz (Wi-Fi)"
|
||||
|
||||
@ -5484,7 +5483,7 @@ msgstr "Kablosuz (Wi-Fi)"
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr "%(name)s bağlantısını göster"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr "Dahili"
|
||||
|
||||
@ -5493,7 +5492,7 @@ msgid "Computer"
|
||||
msgstr "Bilgisayar"
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr "Bağlantıyı Düzenle"
|
||||
|
||||
@ -5501,7 +5500,7 @@ msgstr "Bağlantıyı Düzenle"
|
||||
msgid "General"
|
||||
msgstr "Genel"
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr "PPPoE"
|
||||
|
||||
@ -5511,13 +5510,13 @@ msgstr "Bağlantılar"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr "Yakındaki Kablosuz (Wi-Fi) Ağları"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr "Bağlantı Ekle"
|
||||
@ -5729,6 +5728,32 @@ msgstr ""
|
||||
"kılavuzunu çevrimiçi olarak arayın. Bu, bu görevin nasıl "
|
||||
"gerçekleştirileceğine dair tam talimatlar sağlayacak."
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, fuzzy, python-format
|
||||
#| msgid "Delete %(username)s"
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr "%(username)s Kullanıcısını Sil"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
#, fuzzy
|
||||
#| msgid "Last Connected Time"
|
||||
msgid "Last scanned: "
|
||||
msgstr "Son Bağlanma Zamanı"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
#, fuzzy
|
||||
#| msgid "Wi-Fi network not found"
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr "Kablosuz (Wi-Fi) ağı bulunamadı"
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
msgid "disabled"
|
||||
msgstr "etkisizleştirildi"
|
||||
@ -5926,52 +5951,52 @@ msgstr "Bağlantı düzenlenemiyor: Bağlantı bulunamadı."
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr "Bu tür bir bağlantı henüz anlaşılmamaktadır."
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr "{name} bağlantısı etkinleştirildi."
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr "Bağlantıyı etkinleştirme başarısız oldu: Bağlantı bulunamadı."
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr ""
|
||||
"{name} bağlantısını etkinleştirme başarısız oldu: Mevcut uygun bir cihaz yok."
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr "{name} bağlantısı devre dışı bırakıldı."
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr "Bağlantıyı devre dışı bırakma başarısız oldu: Bağlantı bulunamadı."
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr "Yeni Genel Bağlantı Ekleme"
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr "Yeni Ethernet Bağlantısı Ekleme"
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr "Yeni PPPoE Bağlantısı Ekleme"
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr "Yeni Kablosuz (Wi-Fi) Bağlantısı Ekleme"
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr "{name} bağlantısı silindi."
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr "Bağlantının silinmesi başarısız oldu: Bağlantı bulunamadı."
|
||||
|
||||
@ -6827,25 +6852,29 @@ msgstr ""
|
||||
"href=\"{users_url}\">herhangi bir kullanıcı</a> tarafından erişilebilir."
|
||||
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
#, fuzzy, python-brace-format
|
||||
#| msgid ""
|
||||
#| "You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
#| "follow various websites. When adding a feed, enable authentication and "
|
||||
#| "use your {box_name} credentials."
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
"Çeşitli web sitelerini takip etmek için <a href=\"{ttrss_url}\">Tiny Tiny "
|
||||
"RSS</a> ile RSS-Bridge'i kullanabilirsiniz. Bir bildirim eklerken, kimlik "
|
||||
"doğrulamayı etkinleştirin ve {box_name} kimlik bilgilerinizi kullanın."
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr "Haber bildirimlerini oku ve abone ol"
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr "RSS-Bridge"
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr "RSS Bildirim Oluşturucu"
|
||||
|
||||
@ -8889,22 +8918,21 @@ msgstr ""
|
||||
"başlayan satırlar yoksayılacaktır."
|
||||
|
||||
#: modules/users/forms.py:252
|
||||
#, fuzzy
|
||||
#| msgid "Delete User"
|
||||
msgid "Delete user"
|
||||
msgstr "Kullanıcıyı Sil"
|
||||
msgstr "Kullanıcıyı sil"
|
||||
|
||||
#: modules/users/forms.py:254
|
||||
msgid ""
|
||||
"Deleting the user account will also remove all the files related to the "
|
||||
"user. Deleting files can be avoided by setting the user account as inactive."
|
||||
msgstr ""
|
||||
"Kullanıcı hesabının silinmesi, kullanıcıyla ilgili tüm dosyaları da "
|
||||
"kaldıracaktır. Kullanıcı hesabının etkin değil olarak ayarlanmasıyla "
|
||||
"dosyaların silinmesi önlenebilir."
|
||||
|
||||
#: modules/users/forms.py:305
|
||||
#, fuzzy
|
||||
#| msgid "Failed to add user to group."
|
||||
msgid "Failed to delete user."
|
||||
msgstr "Kullanıcıyı gruba ekleme başarısız oldu."
|
||||
msgstr "Kullanıcıyı silme başarısız oldu."
|
||||
|
||||
#: modules/users/forms.py:320
|
||||
msgid "Renaming LDAP user failed."
|
||||
@ -9029,10 +9057,10 @@ msgid "Save Changes"
|
||||
msgstr "Değişiklikleri Kaydet"
|
||||
|
||||
#: modules/users/templates/users_update.html:41
|
||||
#, fuzzy, python-format
|
||||
#| msgid "Delete user <strong>%(username)s</strong> permanently?"
|
||||
#, python-format
|
||||
msgid "Delete user <em>%(username)s</em> and all the user's files?"
|
||||
msgstr "<strong>%(username)s</strong> kullanıcısı kalıcı olarak silinsin mi?"
|
||||
msgstr ""
|
||||
"<em>%(username)s</em> kullanıcısı ve kullanıcının tüm dosyaları silinsin mi?"
|
||||
|
||||
#: modules/users/templates/users_update.html:46 templates/messages.html:11
|
||||
msgid "Close"
|
||||
@ -9043,12 +9071,13 @@ msgid ""
|
||||
"Deleting a user account also removes all the files user's home directory. If "
|
||||
"you wish to keep these files, disable the user account instead."
|
||||
msgstr ""
|
||||
"Bir kullanıcı hesabının silinmesi aynı zamanda kullanıcının ana dizinindeki "
|
||||
"tüm dosyaları da kaldırır. Eğer bu dosyaları saklamak istiyorsanız, bunun "
|
||||
"yerine kullanıcı hesabını etkisizleştirin."
|
||||
|
||||
#: modules/users/templates/users_update.html:59
|
||||
#, fuzzy
|
||||
#| msgid "Delete files"
|
||||
msgid "Delete user and files"
|
||||
msgstr "Dosyaları sil"
|
||||
msgstr "Kullanıcı ve dosyaları sil"
|
||||
|
||||
#: modules/users/templates/users_update.html:62
|
||||
msgid "Cancel"
|
||||
@ -9069,10 +9098,9 @@ msgid "Edit User"
|
||||
msgstr "Kullanıcıyı Düzenle"
|
||||
|
||||
#: modules/users/views.py:111
|
||||
#, fuzzy, python-format
|
||||
#| msgid "User %(username)s created."
|
||||
#, python-format
|
||||
msgid "User %(username)s deleted."
|
||||
msgstr "%(username)s kullanıcısı oluşturuldu."
|
||||
msgstr "%(username)s kullanıcısı silindi."
|
||||
|
||||
#: modules/users/views.py:130
|
||||
msgid "Change Password"
|
||||
@ -9563,7 +9591,7 @@ msgstr ""
|
||||
"Kullanıcı hesabı <strong>%(username)s</strong>, Zoph için yönetici hesabı "
|
||||
"olacaktır."
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr "Genel"
|
||||
|
||||
@ -10040,10 +10068,6 @@ msgstr "Gujarati"
|
||||
#~ "%(box_name)s projesi hakkında daha fazla bilgi için <a href=\"https://"
|
||||
#~ "wiki.debian.org/FreedomBox\">%(box_name)s Viki</a>'ye bakın."
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete %(username)s"
|
||||
#~ msgstr "%(username)s Kullanıcısını Sil"
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete user %(username)s"
|
||||
#~ msgstr "%(username)s kullanıcısını sil"
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2024-10-21 23:16+0000\n"
|
||||
"Last-Translator: Ihor Hordiichuk <igor_ck@outlook.com>\n"
|
||||
"Language-Team: Ukrainian <https://hosted.weblate.org/projects/freedombox/"
|
||||
@ -5510,7 +5510,7 @@ msgstr ""
|
||||
"для використання тільки всередині, будуть недоступні."
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr "Зовнішня"
|
||||
|
||||
@ -5528,7 +5528,7 @@ msgid "Create Connection"
|
||||
msgstr "Створити зʼєднання"
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr "Видалити зʼєднання"
|
||||
|
||||
@ -5548,14 +5548,14 @@ msgstr "Інтервал"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr "Ethernet"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr "Wi-Fi"
|
||||
|
||||
@ -5566,7 +5566,7 @@ msgstr "Wi-Fi"
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr "Показати зʼєднання %(name)s"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr "Внутрішня"
|
||||
|
||||
@ -5575,7 +5575,7 @@ msgid "Computer"
|
||||
msgstr "Компʼютер"
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr "Змінити зʼєднання"
|
||||
|
||||
@ -5585,7 +5585,7 @@ msgstr "Змінити зʼєднання"
|
||||
msgid "General"
|
||||
msgstr "Загальний"
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr "PPPoE"
|
||||
|
||||
@ -5595,13 +5595,13 @@ msgstr "Зʼєднання"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr "Мережі Wi-Fi поблизу"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr "Додати зʼєднання"
|
||||
@ -5815,6 +5815,32 @@ msgstr ""
|
||||
"Дізнайтеся номер моделі свого маршрутизатора і пошукайте в мережі для нього "
|
||||
"посібник . Це надасть повну інструкцію для виконання цього завдання."
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, fuzzy, python-format
|
||||
#| msgid "Delete %(username)s"
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr "Видалити %(username)s"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
#, fuzzy
|
||||
#| msgid "Last Connected Time"
|
||||
msgid "Last scanned: "
|
||||
msgstr "Час останнього зʼєднання"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
#, fuzzy
|
||||
#| msgid "Wi-Fi network not found"
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr "Не знайдено мережі Wi-Fi"
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
msgid "disabled"
|
||||
msgstr "вимкнено"
|
||||
@ -6014,52 +6040,52 @@ msgstr "Не можливо змінити зʼєднання: Зʼєднанн
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr "Цей тип з'єднання ще не зрозумілий."
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr "Активовано зʼєднання {name}."
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr "Не вдалося активувати зʼєднання: Зʼєднання не знайдено."
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr ""
|
||||
"Не вдалося активувати зʼєднання {name}: Не доступний підходящий пристрій."
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr "Деактивовано зʼєднання {name}."
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr "Не вдалося деактивувати зʼєднання: Зʼєднання не знайдено."
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr "Додавання нового загального з'єднання"
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr "Додавання нового зʼєднання Ethernet"
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr "Додавання нового зʼєднання PPPoE"
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr "Додавання нового зʼєднання Wi-Fi"
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr "Зʼєднання {name} видалено."
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr "Не вдалося видалити зʼєднання: Зʼєднання не знайдено."
|
||||
|
||||
@ -6920,25 +6946,29 @@ msgstr ""
|
||||
"reader."
|
||||
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
#, fuzzy, python-brace-format
|
||||
#| msgid ""
|
||||
#| "You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
#| "follow various websites. When adding a feed, enable authentication and "
|
||||
#| "use your {box_name} credentials."
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
"RSS-Bridge можна використовувати разом із <a href=\"{ttrss_url}\">Tiny Tiny "
|
||||
"RSS</a> для відстеження різних вебсайтів. Під час додавання стрічки "
|
||||
"дозвольте автентифікацію і використовуйте свої облікові дані {box_name}."
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr "Читати і підписатися на стрічки новин"
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr "RSS-міст"
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr "Ґенератор стрічок RSS"
|
||||
|
||||
@ -9656,7 +9686,7 @@ msgstr ""
|
||||
"Обліковий запис користувача <strong>%(username)s</strong> стане обліковим "
|
||||
"записом адміністратора Zoph."
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr "Загальний"
|
||||
|
||||
@ -10139,10 +10169,6 @@ msgstr "Gujarati"
|
||||
#~ "Докладніше про проєкт %(box_name)s дивіться <a href=\"https://wiki.debian."
|
||||
#~ "org/FreedomBox\">%(box_name)s Вікі</a>."
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete %(username)s"
|
||||
#~ msgstr "Видалити %(username)s"
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete user %(username)s"
|
||||
#~ msgstr "Видалити користувача %(username)s"
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2021-07-28 08:34+0000\n"
|
||||
"Last-Translator: bruh <quangtrung02hn16@gmail.com>\n"
|
||||
"Language-Team: Vietnamese <https://hosted.weblate.org/projects/freedombox/"
|
||||
@ -5121,7 +5121,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr ""
|
||||
|
||||
@ -5137,7 +5137,7 @@ msgid "Create Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -5157,14 +5157,14 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr ""
|
||||
|
||||
@ -5175,7 +5175,7 @@ msgstr ""
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr ""
|
||||
|
||||
@ -5184,7 +5184,7 @@ msgid "Computer"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -5192,7 +5192,7 @@ msgstr ""
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr ""
|
||||
|
||||
@ -5202,13 +5202,13 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr ""
|
||||
@ -5382,6 +5382,27 @@ msgid ""
|
||||
"full instructions on how to perform this task."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, python-format
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
msgid "Last scanned: "
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
@ -5579,51 +5600,51 @@ msgstr ""
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
@ -6339,20 +6360,20 @@ msgstr ""
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr ""
|
||||
|
||||
@ -8744,7 +8765,7 @@ msgid ""
|
||||
"account for Zoph."
|
||||
msgstr ""
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Plinth\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"PO-Revision-Date: 2024-10-23 05:15+0000\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2024-11-06 05:06+0000\n"
|
||||
"Last-Translator: 大王叫我来巡山 <hamburger2048@users.noreply.hosted.weblate."
|
||||
"org>\n"
|
||||
"Language-Team: Chinese (Simplified Han script) <https://hosted.weblate.org/"
|
||||
@ -18,7 +18,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.8.2-dev\n"
|
||||
"X-Generator: Weblate 5.8.2\n"
|
||||
|
||||
#: config.py:103
|
||||
#, python-brace-format
|
||||
@ -2782,10 +2782,8 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: modules/help/templates/help_about.html:85
|
||||
#, fuzzy
|
||||
#| msgid "Learn more"
|
||||
msgid "Learn"
|
||||
msgstr "了解更多"
|
||||
msgstr "了解信息"
|
||||
|
||||
#: modules/help/templates/help_about.html:88
|
||||
msgid "Homepage"
|
||||
@ -2804,10 +2802,8 @@ msgid "Translate"
|
||||
msgstr ""
|
||||
|
||||
#: modules/help/templates/help_about.html:117
|
||||
#, fuzzy
|
||||
#| msgid "Get Support"
|
||||
msgid "Support"
|
||||
msgstr "获取帮助"
|
||||
msgstr "支持"
|
||||
|
||||
#: modules/help/templates/help_about.html:121
|
||||
msgid "Forum"
|
||||
@ -4953,7 +4949,7 @@ msgstr ""
|
||||
"内网可用的服务将不可用。"
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr "外网"
|
||||
|
||||
@ -4969,7 +4965,7 @@ msgid "Create Connection"
|
||||
msgstr "创建连接"
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr "删除连接"
|
||||
|
||||
@ -4989,14 +4985,14 @@ msgstr "间距"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr "以太网"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr "Wi-Fi"
|
||||
|
||||
@ -5007,7 +5003,7 @@ msgstr "Wi-Fi"
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr "显示连接 %(name)s"
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr "内网"
|
||||
|
||||
@ -5016,7 +5012,7 @@ msgid "Computer"
|
||||
msgstr "计算机"
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr "编辑连接"
|
||||
|
||||
@ -5024,7 +5020,7 @@ msgstr "编辑连接"
|
||||
msgid "General"
|
||||
msgstr "常规"
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr "PPPoE"
|
||||
|
||||
@ -5034,13 +5030,13 @@ msgstr "连接"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr "附近的无线网络"
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr "添加连接"
|
||||
@ -5214,6 +5210,32 @@ msgid ""
|
||||
"full instructions on how to perform this task."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, fuzzy, python-format
|
||||
#| msgid "Delete %(username)s"
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr "删除 %(username)s"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
#, fuzzy
|
||||
#| msgid "Last Connected Time"
|
||||
msgid "Last scanned: "
|
||||
msgstr "上次连接时间"
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
#, fuzzy
|
||||
#| msgid "Wi-Fi network not found"
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr "未找到 Wi-Fi 网络"
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
msgid "disabled"
|
||||
msgstr "已禁用"
|
||||
@ -5411,51 +5433,51 @@ msgstr "不能编辑连接: 找不到连接。"
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr "这种类型的连接尚没有引入。"
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr "激活的连接 {name}。"
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr "未能激活连接: 找不到连接。"
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr "未能激活连接 {name}: 没有合适的设备是可用。"
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr "停用的连接 {name}。"
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr "无法取消激活连接: 找不到连接。"
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr "添加新的常规连接"
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr "添加新的以太网连接"
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr "添加新的 PPPoE 连接"
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr "添加新的 Wi-Fi 连接"
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr "连接 {name} 已删除。"
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr "删除连接失败: 找不到连接。"
|
||||
|
||||
@ -6207,20 +6229,20 @@ msgstr ""
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr "RSS-Bridge"
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr ""
|
||||
|
||||
@ -8017,8 +8039,6 @@ msgstr ""
|
||||
"一个。将忽略空行和以 # 开头的行。"
|
||||
|
||||
#: modules/users/forms.py:252
|
||||
#, fuzzy
|
||||
#| msgid "Delete User"
|
||||
msgid "Delete user"
|
||||
msgstr "删除用户"
|
||||
|
||||
@ -8029,10 +8049,8 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: modules/users/forms.py:305
|
||||
#, fuzzy
|
||||
#| msgid "Failed to add user to group."
|
||||
msgid "Failed to delete user."
|
||||
msgstr "无法将用户添加到组。"
|
||||
msgstr "删除用户失败。"
|
||||
|
||||
#: modules/users/forms.py:320
|
||||
msgid "Renaming LDAP user failed."
|
||||
@ -8149,10 +8167,9 @@ msgid "Save Changes"
|
||||
msgstr "保存更改"
|
||||
|
||||
#: modules/users/templates/users_update.html:41
|
||||
#, fuzzy, python-format
|
||||
#| msgid "Delete user <strong>%(username)s</strong> permanently?"
|
||||
#, python-format
|
||||
msgid "Delete user <em>%(username)s</em> and all the user's files?"
|
||||
msgstr "永久删除用户 <strong>%(username)s</strong>?"
|
||||
msgstr "删除用户 <em>%(username)s</em> 及该用户所有文件?"
|
||||
|
||||
#: modules/users/templates/users_update.html:46 templates/messages.html:11
|
||||
msgid "Close"
|
||||
@ -8165,10 +8182,8 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: modules/users/templates/users_update.html:59
|
||||
#, fuzzy
|
||||
#| msgid "Delete files"
|
||||
msgid "Delete user and files"
|
||||
msgstr "删除文件"
|
||||
msgstr "删除用户和文件"
|
||||
|
||||
#: modules/users/templates/users_update.html:62
|
||||
msgid "Cancel"
|
||||
@ -8189,10 +8204,9 @@ msgid "Edit User"
|
||||
msgstr "编辑用户"
|
||||
|
||||
#: modules/users/views.py:111
|
||||
#, fuzzy, python-format
|
||||
#| msgid "User %(username)s created."
|
||||
#, python-format
|
||||
msgid "User %(username)s deleted."
|
||||
msgstr "用户 %(username)s 已创建。"
|
||||
msgstr "用户 %(username)s 已被删除。"
|
||||
|
||||
#: modules/users/views.py:130
|
||||
msgid "Change Password"
|
||||
@ -8622,7 +8636,7 @@ msgid ""
|
||||
"account for Zoph."
|
||||
msgstr ""
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr "通用"
|
||||
|
||||
@ -9078,10 +9092,6 @@ msgstr "古吉拉特语"
|
||||
#~ "有关 %(box_name)s 项目的详细信息,请参阅 <a href=\"https://wiki.debian."
|
||||
#~ "org/FreedomBox\">%(box_name)s Wiki</a>。"
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete %(username)s"
|
||||
#~ msgstr "删除 %(username)s"
|
||||
|
||||
#, python-format
|
||||
#~ msgid "Delete user %(username)s"
|
||||
#~ msgstr "删除用户 %(username)s"
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-11-04 20:11-0500\n"
|
||||
"POT-Creation-Date: 2024-11-18 20:13-0500\n"
|
||||
"PO-Revision-Date: 2024-07-26 08:09+0000\n"
|
||||
"Last-Translator: Ricky From Hong Kong <lamricky11@hotmail.com>\n"
|
||||
"Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/"
|
||||
@ -4999,7 +4999,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connection_show.html:316
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:24 network.py:25
|
||||
msgid "External"
|
||||
msgstr ""
|
||||
|
||||
@ -5015,7 +5015,7 @@ msgid "Create Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_delete.html:11
|
||||
#: modules/networks/views.py:536
|
||||
#: modules/networks/views.py:545
|
||||
msgid "Delete Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -5035,14 +5035,14 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:29
|
||||
#: modules/networks/templates/connections_diagram.html:59
|
||||
#: modules/networks/views.py:101 network.py:27
|
||||
#: modules/networks/views.py:101 network.py:28
|
||||
msgid "Ethernet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:32
|
||||
#: modules/networks/templates/connections_diagram.html:62
|
||||
#: modules/networks/templates/connections_fields_wifi.html:16
|
||||
#: modules/networks/views.py:102 network.py:28
|
||||
#: modules/networks/views.py:102 network.py:29
|
||||
msgid "Wi-Fi"
|
||||
msgstr ""
|
||||
|
||||
@ -5053,7 +5053,7 @@ msgstr ""
|
||||
msgid "Show connection %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:24
|
||||
#: modules/networks/templates/connections_diagram.html:53 network.py:25
|
||||
msgid "Internal"
|
||||
msgstr ""
|
||||
|
||||
@ -5062,7 +5062,7 @@ msgid "Computer"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_edit.html:19
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:340
|
||||
#: modules/networks/views.py:253 modules/networks/views.py:341
|
||||
msgid "Edit Connection"
|
||||
msgstr ""
|
||||
|
||||
@ -5070,7 +5070,7 @@ msgstr ""
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:29
|
||||
#: modules/networks/templates/connections_fields_pppoe.html:16 network.py:30
|
||||
msgid "PPPoE"
|
||||
msgstr ""
|
||||
|
||||
@ -5080,13 +5080,13 @@ msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:12
|
||||
#: modules/networks/templates/connections_list.html:14
|
||||
#: modules/networks/views.py:389
|
||||
#: modules/networks/views.py:395
|
||||
msgid "Nearby Wi-Fi Networks"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/connections_list.html:17
|
||||
#: modules/networks/templates/connections_list.html:19
|
||||
#: modules/networks/views.py:413
|
||||
#: modules/networks/views.py:420
|
||||
#: modules/wireguard/templates/wireguard_add_server.html:19
|
||||
msgid "Add Connection"
|
||||
msgstr ""
|
||||
@ -5260,6 +5260,27 @@ msgid ""
|
||||
"full instructions on how to perform this task."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:14
|
||||
msgid "No Wi-Fi device detected."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:21
|
||||
#, python-format
|
||||
msgid "Device: %(interface_name)s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:27
|
||||
msgid "Last scanned: "
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:31
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/templates/wifi_scan.html:52
|
||||
msgid "No Wi-Fi networks found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:27
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
@ -5457,51 +5478,51 @@ msgstr ""
|
||||
msgid "This type of connection is not yet understood."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:352
|
||||
#: modules/networks/views.py:353
|
||||
#, python-brace-format
|
||||
msgid "Activated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:356
|
||||
#: modules/networks/views.py:357
|
||||
msgid "Failed to activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:362
|
||||
#: modules/networks/views.py:363
|
||||
#, python-brace-format
|
||||
msgid "Failed to activate connection {name}: No suitable device is available."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:375
|
||||
#: modules/networks/views.py:376
|
||||
#, python-brace-format
|
||||
msgid "Deactivated connection {name}."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:379
|
||||
#: modules/networks/views.py:380
|
||||
msgid "Failed to de-activate connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:431
|
||||
#: modules/networks/views.py:438
|
||||
msgid "Adding New Generic Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:449
|
||||
#: modules/networks/views.py:456
|
||||
msgid "Adding New Ethernet Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:467
|
||||
#: modules/networks/views.py:474
|
||||
msgid "Adding New PPPoE Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:502
|
||||
#: modules/networks/views.py:511
|
||||
msgid "Adding New Wi-Fi Connection"
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:517
|
||||
#: modules/networks/views.py:526
|
||||
#, python-brace-format
|
||||
msgid "Connection {name} deleted."
|
||||
msgstr ""
|
||||
|
||||
#: modules/networks/views.py:521 modules/networks/views.py:531
|
||||
#: modules/networks/views.py:530 modules/networks/views.py:540
|
||||
msgid "Failed to delete connection: Connection not found."
|
||||
msgstr ""
|
||||
|
||||
@ -6219,20 +6240,20 @@ msgstr ""
|
||||
#: modules/rssbridge/__init__.py:28
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"You can use RSS-Bridge with <a href=\"{ttrss_url}\">Tiny Tiny RSS</a> to "
|
||||
"follow various websites. When adding a feed, enable authentication and use "
|
||||
"your {box_name} credentials."
|
||||
"You can use RSS-Bridge with <a href=\"{miniflux_url}\">Miniflux</a> or <a "
|
||||
"href=\"{ttrss_url}\">Tiny Tiny RSS</a> to follow various websites. When "
|
||||
"adding a feed, enable authentication and use your {box_name} credentials."
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:46 modules/ttrss/__init__.py:47
|
||||
#: modules/rssbridge/__init__.py:48 modules/ttrss/__init__.py:47
|
||||
msgid "Read and subscribe to news feeds"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:49 modules/rssbridge/manifest.py:7
|
||||
#: modules/rssbridge/__init__.py:51 modules/rssbridge/manifest.py:7
|
||||
msgid "RSS-Bridge"
|
||||
msgstr ""
|
||||
|
||||
#: modules/rssbridge/__init__.py:50
|
||||
#: modules/rssbridge/__init__.py:52
|
||||
msgid "RSS Feed Generator"
|
||||
msgstr ""
|
||||
|
||||
@ -8619,7 +8640,7 @@ msgid ""
|
||||
"account for Zoph."
|
||||
msgstr ""
|
||||
|
||||
#: network.py:30
|
||||
#: network.py:31
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -334,7 +334,7 @@ class RootBorgRepository(BaseBorgRepository):
|
||||
PATH = '/var/lib/freedombox/borgbackup'
|
||||
|
||||
storage_type = 'root'
|
||||
name = format_lazy(_('{box_name} storage'), box_name=cfg.box_name)
|
||||
name = format_lazy(_('{box_name} storage'), box_name=_(cfg.box_name))
|
||||
borg_path = PATH
|
||||
sort_order = 10
|
||||
is_mounted = True
|
||||
|
||||
@ -25,7 +25,7 @@ _description = [
|
||||
_('Firewall is a security system that controls the incoming and '
|
||||
'outgoing network traffic on your {box_name}. Keeping a '
|
||||
'firewall enabled and properly configured reduces risk of '
|
||||
'security threat from the Internet.'), box_name=cfg.box_name)
|
||||
'security threat from the Internet.'), box_name=_(cfg.box_name))
|
||||
]
|
||||
|
||||
_port_details: dict[str, list[str]] = {}
|
||||
|
||||
@ -77,8 +77,8 @@ class TestMediawikiApp(functional.BaseAppTests):
|
||||
def test_upload_svg_image(self, session_browser, login):
|
||||
"""Test uploading an SVG image."""
|
||||
_upload_image(session_browser, 'admin', 'whatever123',
|
||||
'apps-background.svg')
|
||||
assert _image_exists(session_browser, 'Apps-background.svg')
|
||||
'freedombox-logo-standard.svg')
|
||||
assert _image_exists(session_browser, 'Freedombox-logo-standard.svg')
|
||||
|
||||
def test_backup_restore(self, session_browser, login):
|
||||
"""Test backup and restore of pages and images."""
|
||||
|
||||
@ -364,7 +364,7 @@ class NetworkTopologyForm(forms.Form):
|
||||
network_topology = forms.ChoiceField(
|
||||
label=format_lazy(
|
||||
_('Specify how your {box_name} is connected to your network'),
|
||||
box_name=cfg.box_name),
|
||||
box_name=_(cfg.box_name)),
|
||||
required=True,
|
||||
widget=forms.RadioSelect,
|
||||
choices=[
|
||||
@ -373,8 +373,8 @@ class NetworkTopologyForm(forms.Form):
|
||||
_('Connected to a router '
|
||||
'<p class="help-block">Your {box_name} gets its Internet '
|
||||
'connection from your router via Wi-Fi or Ethernet cable. '
|
||||
'This is a typical home setup.</p>'), box_name=cfg.box_name,
|
||||
allow_markup=True)),
|
||||
'This is a typical home setup.</p>'),
|
||||
box_name=_(cfg.box_name), allow_markup=True)),
|
||||
('as_router',
|
||||
format_lazy(
|
||||
_('{box_name} is your router '
|
||||
@ -383,14 +383,14 @@ class NetworkTopologyForm(forms.Form):
|
||||
'a Wi-Fi adapter. {box_name} is directly connected to the '
|
||||
'Internet and all your devices connect to {box_name} '
|
||||
'for their Internet connectivity.</p>'),
|
||||
box_name=cfg.box_name, allow_markup=True)),
|
||||
box_name=_(cfg.box_name), allow_markup=True)),
|
||||
('direct',
|
||||
format_lazy(
|
||||
_('Directly connected to the Internet '
|
||||
'<p class="help-block">Your Internet connection is '
|
||||
'directly attached to your {box_name} and there are no '
|
||||
'other devices on the network. This can happen on '
|
||||
'community or cloud setups.</p>'), box_name=cfg.box_name,
|
||||
'community or cloud setups.</p>'), box_name=_(cfg.box_name),
|
||||
allow_markup=True)),
|
||||
],
|
||||
)
|
||||
@ -430,8 +430,8 @@ class InternetConnectionTypeForm(forms.Form):
|
||||
'same IP address. This is the most trouble-free setup for '
|
||||
'many {box_name} services but very few ISPs offer this. '
|
||||
'You may be able to get this service from your ISP by '
|
||||
'making an additional payment.</p>'), box_name=cfg.box_name,
|
||||
allow_markup=True)),
|
||||
'making an additional payment.</p>'),
|
||||
box_name=_(cfg.box_name), allow_markup=True)),
|
||||
('private_ip',
|
||||
format_lazy(
|
||||
_('I dont have a public IP address'
|
||||
@ -444,7 +444,7 @@ class InternetConnectionTypeForm(forms.Form):
|
||||
'most troublesome situation for hosting services at home. '
|
||||
'{box_name} provides many workaround solutions but each '
|
||||
'solution has some limitations.</p>'),
|
||||
box_name=cfg.box_name, allow_markup=True)),
|
||||
box_name=_(cfg.box_name), allow_markup=True)),
|
||||
('unknown',
|
||||
format_lazy(
|
||||
_('I do not know the type of connection my ISP provides '
|
||||
@ -476,8 +476,8 @@ class RouterConfigurationForm(forms.Form):
|
||||
'Internet to a single IP address such as the '
|
||||
'{box_name}\'s IP address. First remember to configure '
|
||||
'a static local IP address for your {box_name} in your '
|
||||
'router\'s configuration.</p>'), box_name=cfg.box_name,
|
||||
allow_markup=True),
|
||||
'router\'s configuration.</p>'),
|
||||
box_name=_(cfg.box_name), allow_markup=True),
|
||||
),
|
||||
('port_forwarding',
|
||||
format_lazy(
|
||||
@ -491,8 +491,8 @@ class RouterConfigurationForm(forms.Form):
|
||||
'web interface need you to forward traffic from ports '
|
||||
'80 and 443 to work. Each of the other applications '
|
||||
'will suggest which port(s) need to be forwarded '
|
||||
'for that application to work.</p>'), box_name=cfg.box_name,
|
||||
allow_markup=True)),
|
||||
'for that application to work.</p>'),
|
||||
box_name=_(cfg.box_name), allow_markup=True)),
|
||||
('not_configured',
|
||||
format_lazy(
|
||||
_('Router is currently unconfigured '
|
||||
|
||||
@ -152,7 +152,7 @@
|
||||
{% if access_point.channel %}
|
||||
<div class="list-group-item">
|
||||
<span class="primary">{% trans "Signal strength" %}</span>
|
||||
<span class="btn btn-primary btn-sm secondary">
|
||||
<span class="badge badge-secondary secondary">
|
||||
{{ access_point.strength }}%
|
||||
</span>
|
||||
</div>
|
||||
|
||||
@ -10,28 +10,52 @@
|
||||
|
||||
<h3>{{ title }}</h3>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<div class="list-group list-group-two-column">
|
||||
{% for access_point in access_points %}
|
||||
<div class="list-group-item">
|
||||
<span class="primary">
|
||||
{% if access_point.ssid %}
|
||||
<a href="{% url 'networks:add_wifi' access_point.ssid access_point.interface_name %}">
|
||||
{{ access_point.ssid }}
|
||||
</a>
|
||||
{% else %}
|
||||
--
|
||||
{% endif %}
|
||||
</span>
|
||||
{% if not device_access_points %}
|
||||
<p>{% trans "No Wi-Fi device detected." %}</p>
|
||||
{% else %}
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
{% for device in device_access_points %}
|
||||
{% if device_access_points|length > 1 %}
|
||||
<h4>
|
||||
{% blocktrans trimmed with interface_name=device.interface_name %}
|
||||
Device: {{ interface_name }}
|
||||
{% endblocktrans %}
|
||||
</h4>
|
||||
{% endif %}
|
||||
<p>
|
||||
{% trans "Last scanned: " %}
|
||||
{% if device.last_scan_time %}
|
||||
{{ device.last_scan_time|timesince }}
|
||||
{% else %}
|
||||
{% trans "never" %}
|
||||
{% endif %}
|
||||
{% if device.scan_requested %}
|
||||
<span class="fa fa-spinner fa-spin"></span>
|
||||
{% endif %}
|
||||
</p>
|
||||
<div class="list-group list-group-two-column">
|
||||
{% for access_point in device.access_points %}
|
||||
<div class="list-group-item">
|
||||
<span class="primary">
|
||||
<a href="{% url 'networks:add_wifi' access_point.ssid_string device.interface_name %}">
|
||||
{{ access_point.ssid_string }}
|
||||
</a>
|
||||
</span>
|
||||
|
||||
<span class="btn btn-primary btn-sm secondary">
|
||||
{{ access_point.strength }}%
|
||||
</span>
|
||||
<span class="badge badge-secondary secondary">
|
||||
{{ access_point.strength }}%
|
||||
</span>
|
||||
</div>
|
||||
{% empty %}
|
||||
<p>
|
||||
{% trans "No Wi-Fi networks found." %}
|
||||
</p>
|
||||
{% endfor %}
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
{% endblock %}
|
||||
|
||||
@ -307,7 +307,8 @@ def edit(request, uuid):
|
||||
form = GenericForm(form_data)
|
||||
elif settings_connection.get_connection_type() == '802-11-wireless':
|
||||
settings_wireless = connection.get_setting_wireless()
|
||||
form_data['ssid'] = settings_wireless.get_ssid().get_data()
|
||||
form_data['ssid'] = settings_wireless.get_ssid().get_data().decode(
|
||||
)
|
||||
form_data['mode'] = settings_wireless.get_mode()
|
||||
form_data['band'] = settings_wireless.get_band() or 'auto'
|
||||
form_data['channel'] = settings_wireless.get_channel()
|
||||
@ -384,11 +385,17 @@ def deactivate(request, uuid):
|
||||
|
||||
def scan(request):
|
||||
"""Show a list of nearby visible Wi-Fi access points."""
|
||||
access_points = network.wifi_scan()
|
||||
return TemplateResponse(request, 'wifi_scan.html', {
|
||||
'title': _('Nearby Wi-Fi Networks'),
|
||||
'access_points': access_points
|
||||
})
|
||||
device_access_points = network.wifi_scan()
|
||||
scanning = any(
|
||||
(device['scan_requested'] for device in device_access_points))
|
||||
# Refresh page in 10s if scanning, 60s otherwise
|
||||
refresh_page_sec = 10 if scanning else 60
|
||||
return TemplateResponse(
|
||||
request, 'wifi_scan.html', {
|
||||
'title': _('Nearby Wi-Fi Networks'),
|
||||
'device_access_points': device_access_points,
|
||||
'refresh_page_sec': refresh_page_sec
|
||||
})
|
||||
|
||||
|
||||
def add(request):
|
||||
@ -484,7 +491,9 @@ def add_wifi(request, ssid=None, interface_name=None):
|
||||
'mode': 'infrastructure',
|
||||
'band': 'auto',
|
||||
'auth_mode': 'wpa',
|
||||
'ipv4_method': 'auto'
|
||||
'ipv4_method': 'auto',
|
||||
'ipv6_method': 'auto',
|
||||
'dns_over_tls': 'default',
|
||||
}
|
||||
|
||||
if request.method == 'POST':
|
||||
|
||||
@ -189,8 +189,6 @@ class NextcloudApp(app_module.App):
|
||||
diagnose_url(url.format(domain=address), kind=kind,
|
||||
**kwargs))
|
||||
|
||||
results.append(diagnose_url('docker.com'))
|
||||
|
||||
return results
|
||||
|
||||
|
||||
|
||||
@ -18,7 +18,7 @@ from plinth.actions import privileged, secret_str
|
||||
CONTAINER_NAME = 'nextcloud-freedombox'
|
||||
SERVICE_NAME = 'nextcloud-freedombox'
|
||||
VOLUME_NAME = 'nextcloud-freedombox'
|
||||
IMAGE_NAME = 'docker.io/library/nextcloud:stable-fpm'
|
||||
IMAGE_NAME = 'registry.freedombox.org/library/nextcloud:stable-fpm'
|
||||
|
||||
WWW_DATA_UID = '33'
|
||||
DB_HOST = 'localhost'
|
||||
|
||||
@ -25,10 +25,12 @@ _description = [
|
||||
'any user</a> belonging to the feed-reader group.'),
|
||||
users_url=reverse_lazy('users:index')),
|
||||
format_lazy(
|
||||
_('You can use RSS-Bridge with <a href="{ttrss_url}">Tiny Tiny '
|
||||
'RSS</a> to follow various websites. When adding a feed, enable '
|
||||
'authentication and use your {box_name} credentials.'),
|
||||
ttrss_url=reverse_lazy('ttrss:index'), box_name=cfg.box_name),
|
||||
_('You can use RSS-Bridge with <a href="{miniflux_url}">Miniflux</a> '
|
||||
'or <a href="{ttrss_url}">Tiny Tiny RSS</a> to follow various '
|
||||
'websites. When adding a feed, enable authentication and use your '
|
||||
'{box_name} credentials.'),
|
||||
miniflux_url=reverse_lazy('miniflux:index'),
|
||||
ttrss_url=reverse_lazy('ttrss:index'), box_name=_(cfg.box_name)),
|
||||
]
|
||||
|
||||
|
||||
|
||||
@ -26,7 +26,7 @@ _description = [
|
||||
'web browser. Each wiki is a self-contained HTML file stored on your'
|
||||
' {box_name}. Instead of writing long wiki pages, TiddlyWiki '
|
||||
'encourages you to write several short notes called Tiddlers and '
|
||||
'link them together into a dense graph.'), box_name=cfg.box_name),
|
||||
'link them together into a dense graph.'), box_name=_(cfg.box_name)),
|
||||
_('It is a versatile application with a wide variety of use cases - '
|
||||
'non-linear notebook, website, personal knowledge base, task and project'
|
||||
' management system, personal diary etc. Plugins can extend the '
|
||||
@ -41,7 +41,7 @@ _description = [
|
||||
_('Wikis are not public by default, but they can be downloaded for '
|
||||
'sharing or publishing. They can be edited by <a href="{users_url}">'
|
||||
'any user</a> on {box_name} belonging to the wiki group. '
|
||||
'Simultaneous editing is not supported.'), box_name=cfg.box_name,
|
||||
'Simultaneous editing is not supported.'), box_name=_(cfg.box_name),
|
||||
users_url=reverse_lazy('users:index')),
|
||||
_('Create a new wiki or upload your existing wiki file to get started.')
|
||||
]
|
||||
@ -66,8 +66,7 @@ class TiddlyWikiApp(app_module.App):
|
||||
short_description=_('Non-linear Notebooks'),
|
||||
description=_description,
|
||||
manual_page='TiddlyWiki',
|
||||
clients=manifest.clients,
|
||||
tags=manifest.tags)
|
||||
clients=manifest.clients, tags=manifest.tags)
|
||||
self.add(info)
|
||||
|
||||
menu_item = menu.Menu('menu-tiddlywiki', info.name,
|
||||
|
||||
@ -4,6 +4,7 @@ Helper functions for working with network manager.
|
||||
"""
|
||||
|
||||
import collections
|
||||
import datetime
|
||||
import logging
|
||||
import socket
|
||||
import struct
|
||||
@ -183,7 +184,7 @@ def get_status_from_wifi_access_point(device, ssid):
|
||||
|
||||
for access_point in device.get_access_points():
|
||||
if access_point and access_point.get_ssid() and \
|
||||
access_point.get_ssid().get_data() == ssid:
|
||||
access_point.get_ssid().get_data().decode() == ssid:
|
||||
status['strength'] = access_point.get_strength()
|
||||
frequency = access_point.get_frequency()
|
||||
status['channel'] = _get_wifi_channel_from_frequency(frequency)
|
||||
@ -613,27 +614,79 @@ def delete_connection(connection_uuid):
|
||||
return name
|
||||
|
||||
|
||||
def _get_access_point_as_dict(access_point, active_ap_path):
|
||||
"""Return Wi-Fi access point information as a dictionary."""
|
||||
ssid = access_point.get_ssid()
|
||||
if not ssid: # Hidden network
|
||||
return None
|
||||
|
||||
try:
|
||||
ssid_string = ssid.get_data().decode(encoding='utf-8')
|
||||
except UnicodeError:
|
||||
# XXX: Can't deal with binary SSIDs. Don't show SSIDs that are
|
||||
# binary only.
|
||||
return None
|
||||
|
||||
is_active = (active_ap_path == access_point.get_path())
|
||||
return {
|
||||
'ssid': ssid,
|
||||
'ssid_string': ssid_string,
|
||||
'strength': access_point.get_strength(),
|
||||
'is_active': is_active
|
||||
}
|
||||
|
||||
|
||||
def wifi_scan():
|
||||
"""Scan for available access points across all Wi-Fi devices."""
|
||||
access_points = []
|
||||
device_access_points = []
|
||||
for device in get_nm_client().get_devices():
|
||||
if device.get_device_type() != nm.DeviceType.WIFI:
|
||||
continue
|
||||
|
||||
for access_point in device.get_access_points():
|
||||
# Retrieve the bytes in SSID. Don't convert to utf-8 or
|
||||
# escape it in any way as it may contain null bytes. When
|
||||
# this is used in the URL it will be escaped properly and
|
||||
# unescaped when taken as view function's argument.
|
||||
ssid = access_point.get_ssid()
|
||||
ssid_string = ssid.get_data() if ssid else ''
|
||||
access_points.append({
|
||||
'interface_name': device.get_iface(),
|
||||
'ssid': ssid_string,
|
||||
'strength': access_point.get_strength()
|
||||
})
|
||||
if device.get_client() is None:
|
||||
# The device got deleted (see NM:show-wifi-networks.py)
|
||||
return False
|
||||
|
||||
return access_points
|
||||
# Active access point
|
||||
active_ap_path = device.get_active_access_point()
|
||||
|
||||
# Last scan time
|
||||
last_scan = device.get_last_scan()
|
||||
last_scan_time = None
|
||||
scan_requested = False
|
||||
if last_scan == -1:
|
||||
last_scan = None
|
||||
else:
|
||||
boot_time = time.clock_gettime(time.CLOCK_BOOTTIME)
|
||||
last_scan = boot_time - (last_scan / 1000)
|
||||
last_scan_time = datetime.datetime.now() - datetime.timedelta(
|
||||
seconds=last_scan)
|
||||
|
||||
# Request a scan if the last scan was more than 20 seconds ago
|
||||
if (not last_scan) or last_scan > 20:
|
||||
device.request_scan()
|
||||
scan_requested = True
|
||||
|
||||
# Access points
|
||||
access_points = []
|
||||
for access_point in device.get_access_points():
|
||||
ap_dict = _get_access_point_as_dict(access_point, active_ap_path)
|
||||
if ap_dict:
|
||||
access_points.append(ap_dict)
|
||||
|
||||
access_points = sorted(access_points,
|
||||
key=lambda point: -point['strength'])
|
||||
|
||||
device_access_points.append({
|
||||
'interface_name': device.get_iface(),
|
||||
'access_points': access_points,
|
||||
'last_scan': last_scan,
|
||||
'last_scan_time': last_scan_time,
|
||||
'scan_requested': scan_requested
|
||||
})
|
||||
|
||||
return sorted(device_access_points,
|
||||
key=lambda device: device['interface_name'])
|
||||
|
||||
|
||||
def refeed_dns():
|
||||
|
||||
@ -10,6 +10,7 @@ import pathlib
|
||||
import subprocess
|
||||
import tempfile
|
||||
import time
|
||||
import urllib.parse
|
||||
import warnings
|
||||
from contextlib import contextmanager
|
||||
|
||||
@ -67,7 +68,8 @@ _sys_modules = [
|
||||
######################
|
||||
def visit(browser, path):
|
||||
"""Visit a path assuming the base URL as configured."""
|
||||
browser.visit(config['DEFAULT']['url'] + path)
|
||||
with wait_for_page_update(browser):
|
||||
browser.visit(config['DEFAULT']['url'] + path)
|
||||
|
||||
|
||||
def eventually(function, args=[], timeout=30):
|
||||
@ -88,7 +90,7 @@ def eventually(function, args=[], timeout=30):
|
||||
return False
|
||||
|
||||
|
||||
class _PageLoaded():
|
||||
class _PageLoaded:
|
||||
"""
|
||||
Wait until a page (re)loaded.
|
||||
|
||||
@ -103,9 +105,9 @@ class _PageLoaded():
|
||||
self.loaded_new_page = False
|
||||
|
||||
def __call__(self, driver):
|
||||
is_stale = False
|
||||
"""Return if expected page has fully loaded."""
|
||||
try:
|
||||
self.element.has_class('whatever_class')
|
||||
self.element.has_class('x-non-existing-class')
|
||||
# XXX: There is still another unhandled case where the webserver
|
||||
# restarts after submission of a form and the browser does not switch
|
||||
# to error page. It continues to wait for a response from the server
|
||||
@ -143,17 +145,35 @@ class _PageLoaded():
|
||||
|
||||
return False
|
||||
|
||||
# If page has not loaded fully yet, wait until it does.
|
||||
is_fully_loaded = driver.execute_script(
|
||||
'return document.readyState;') == 'complete'
|
||||
if not is_fully_loaded:
|
||||
is_stale = False
|
||||
elif self.expected_url is None:
|
||||
is_stale = True
|
||||
else:
|
||||
if driver.url.endswith(self.expected_url):
|
||||
is_stale = True
|
||||
return False
|
||||
|
||||
return is_stale
|
||||
# If a page has fully loaded check if it is the expected URL.
|
||||
return self.has_expected_url_reached(driver)
|
||||
|
||||
# Should never reach here.
|
||||
return False
|
||||
|
||||
def has_expected_url_reached(self, driver):
|
||||
"""Return if the current browser URL is the expected URL."""
|
||||
if not self.expected_url:
|
||||
return True # We are not expecting a specific URL, always any URL
|
||||
|
||||
browser_url = urllib.parse.urlparse(driver.url)
|
||||
expected_url = urllib.parse.urlparse(self.expected_url)
|
||||
|
||||
if expected_url.scheme and browser_url.scheme != expected_url.scheme:
|
||||
return False
|
||||
|
||||
if expected_url.netloc and browser_url.netloc != expected_url.netloc:
|
||||
return False
|
||||
|
||||
browser_path = browser_url.path.rstrip('/')
|
||||
expected_path = expected_url.path.rstrip('/')
|
||||
return browser_path == expected_path
|
||||
|
||||
|
||||
@contextmanager
|
||||
@ -424,7 +444,10 @@ def uninstall(browser, app_name):
|
||||
if not uninstall_item:
|
||||
pytest.skip('App cannot be uninstalled')
|
||||
|
||||
uninstall_item[0].click()
|
||||
uninstall_page_url = uninstall_item[0]['href']
|
||||
with wait_for_page_update(browser, expected_url=uninstall_page_url):
|
||||
uninstall_item[0].click()
|
||||
|
||||
submit(browser, form_class='form-uninstall')
|
||||
|
||||
while True:
|
||||
@ -736,16 +759,21 @@ class BaseAppTests:
|
||||
"""Install the app and set it up if needed."""
|
||||
install(session_browser, self.app_name)
|
||||
|
||||
@pytest.fixture(autouse=True, scope='class', name='disable_after_tests')
|
||||
def fixture_disable_after_tests(self, session_browser):
|
||||
"""Disable the app after running tests."""
|
||||
yield
|
||||
if self.disable_after_tests:
|
||||
app_disable(session_browser, self.app_name)
|
||||
|
||||
@pytest.fixture(autouse=True, name='background')
|
||||
def fixture_background(self, session_browser):
|
||||
def fixture_background(self, session_browser, disable_after_tests):
|
||||
"""Login, install, and enable the app."""
|
||||
login(session_browser)
|
||||
self.install_and_setup(session_browser)
|
||||
app_enable(session_browser, self.app_name)
|
||||
yield
|
||||
login(session_browser)
|
||||
if self.disable_after_tests:
|
||||
app_disable(session_browser, self.app_name)
|
||||
|
||||
def test_enable_disable(self, session_browser):
|
||||
"""Test enabling and disabling the app."""
|
||||
|
||||
@ -239,6 +239,8 @@ def test_edit_wifi_connection(network, wifi_uuid):
|
||||
|
||||
settings_wireless = connection.get_setting_wireless()
|
||||
assert settings_wireless.get_ssid().get_data() == b'plinthtestwifi2'
|
||||
assert settings_wireless.get_ssid().get_data().decode(
|
||||
) == 'plinthtestwifi2'
|
||||
assert settings_wireless.get_mode() == 'infrastructure'
|
||||
|
||||
wifi_sec = connection.get_setting_wireless_security()
|
||||
|
||||
@ -361,6 +361,11 @@ footer {
|
||||
margin-right: 0.25rem;
|
||||
}
|
||||
|
||||
.list-group-two-column .list-group-item > .badge.secondary {
|
||||
font-size: 1rem;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.list-group-two-column .list-group-item > .secondary {
|
||||
margin-left: auto;
|
||||
margin-top: -0.25rem;
|
||||
@ -510,14 +515,10 @@ footer {
|
||||
display: flex;
|
||||
font-weight: 800;
|
||||
font-size: 1.25rem;
|
||||
margin-bottom: 1.25rem;
|
||||
margin: 1.25rem 0;
|
||||
border-bottom: var(--neutral-dark-color) solid 2px;
|
||||
}
|
||||
|
||||
.card-section-title {
|
||||
margin-top: 1.25rem;
|
||||
}
|
||||
|
||||
a.menu_link {
|
||||
text-decoration: none;
|
||||
}
|
||||
@ -534,17 +535,15 @@ a.menu_link_active {
|
||||
display: block;
|
||||
line-height: 1.42857143;
|
||||
text-align: center;
|
||||
box-shadow: 0 0.1875rem 0.3125rem 0 rgba(0,0,0,0.2);
|
||||
width: 10rem;
|
||||
padding: 0.5rem 0.25rem;
|
||||
margin: 0 0.625rem 1.25rem;
|
||||
padding: 1rem;
|
||||
border: none;
|
||||
border-radius: 0.5rem;
|
||||
transition: border .2s ease-in-out;
|
||||
}
|
||||
|
||||
.card:hover {
|
||||
box-shadow: 0 0.3125rem 0.9375rem 0.125rem rgba(0, 0, 0, 0.2);
|
||||
background: #eee;
|
||||
}
|
||||
|
||||
.card .nav-link {
|
||||
@ -555,7 +554,6 @@ a.menu_link_active {
|
||||
|
||||
.card-title {
|
||||
font-size: 1.25rem;
|
||||
padding: 0.25rem 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
@ -576,7 +574,7 @@ a.menu_link_active {
|
||||
/* System page - special card styling */
|
||||
.system-page .card {
|
||||
text-align: left;
|
||||
width: 19.375rem;
|
||||
width: 20.625rem;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
@ -595,7 +593,7 @@ a.menu_link_active {
|
||||
text-overflow: ellipsis;
|
||||
grid-row: 1;
|
||||
grid-column: 2;
|
||||
padding: 0;
|
||||
padding: 0.375rem 0 0;
|
||||
}
|
||||
|
||||
.system-page .card-icon {
|
||||
@ -632,18 +630,6 @@ a.menu_link_active {
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
.index-page .card-list:before {
|
||||
background-image: url('../img/freedombox-logo-background.svg');
|
||||
}
|
||||
|
||||
.apps-page .card-list-primary:before {
|
||||
background-image: url('../img/apps-background.svg');
|
||||
}
|
||||
|
||||
.system-page .system-section-title:first-child:before {
|
||||
background-image: url('../img/system-background.svg');
|
||||
}
|
||||
|
||||
.names-table {
|
||||
table-layout: fixed;
|
||||
overflow-wrap: break-word;
|
||||
|
||||
@ -1,160 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="111.50169mm"
|
||||
height="111.5124mm"
|
||||
viewBox="0 0 395.08471 395.12267"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
sodipodi:docname="apps-background.svg">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.49497475"
|
||||
inkscape:cx="-401.04489"
|
||||
inkscape:cy="-100.15367"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g3807"
|
||||
showgrid="false"
|
||||
inkscape:snap-page="false"
|
||||
showguides="true"
|
||||
inkscape:window-width="1509"
|
||||
inkscape:window-height="1010"
|
||||
inkscape:window-x="92"
|
||||
inkscape:window-y="33"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:measure-start="166.17,406.586"
|
||||
inkscape:measure-end="115.662,389.414"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-48.218843,-45.219296)">
|
||||
<g
|
||||
id="g3807"
|
||||
transform="translate(1.6503903e-6,-359.08813)">
|
||||
<g
|
||||
id="g5380"
|
||||
style="fill:#000000;fill-opacity:0.03137255">
|
||||
<g
|
||||
id="g3777"
|
||||
style="fill:#000000;fill-opacity:0.03137255">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:0.03137255;fill-rule:evenodd;stroke:none;stroke-width:1.11995912px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
id="rect20"
|
||||
width="112.5"
|
||||
height="112.5"
|
||||
x="48.218842"
|
||||
y="404.30743"
|
||||
ry="30.226379" />
|
||||
<rect
|
||||
ry="30.226379"
|
||||
y="404.30743"
|
||||
x="189.5112"
|
||||
height="112.5"
|
||||
width="112.5"
|
||||
id="rect67"
|
||||
style="fill:#000000;fill-opacity:0.03137255;fill-rule:evenodd;stroke:none;stroke-width:1.11995912px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:0.03137255;fill-rule:evenodd;stroke:none;stroke-width:1.11995912px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
id="rect69"
|
||||
width="112.5"
|
||||
height="112.5"
|
||||
x="330.80356"
|
||||
y="404.30743"
|
||||
ry="30.226379" />
|
||||
</g>
|
||||
<g
|
||||
id="g3785"
|
||||
transform="translate(-5.5273489e-7,141.10568)"
|
||||
style="fill:#000000;fill-opacity:0.03137255">
|
||||
<rect
|
||||
ry="30.226379"
|
||||
y="404.30743"
|
||||
x="48.218842"
|
||||
height="112.5"
|
||||
width="112.5"
|
||||
id="rect3779"
|
||||
style="fill:#000000;fill-opacity:0.03137255;fill-rule:evenodd;stroke:none;stroke-width:1.11995912px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:0.03137255;fill-rule:evenodd;stroke:none;stroke-width:1.11995912px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
id="rect3781"
|
||||
width="112.5"
|
||||
height="112.5"
|
||||
x="189.5112"
|
||||
y="404.30743"
|
||||
ry="30.226379" />
|
||||
<rect
|
||||
ry="30.226379"
|
||||
y="404.30743"
|
||||
x="330.80356"
|
||||
height="112.5"
|
||||
width="112.5"
|
||||
id="rect3783"
|
||||
style="fill:#000000;fill-opacity:0.03137255;fill-rule:evenodd;stroke:none;stroke-width:1.11995912px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-5.5273489e-7,282.62267)"
|
||||
id="g3793"
|
||||
style="fill:#000000;fill-opacity:0.03137255">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:0.03137255;fill-rule:evenodd;stroke:none;stroke-width:1.11995912px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
id="rect3787"
|
||||
width="112.5"
|
||||
height="112.5"
|
||||
x="48.218842"
|
||||
y="404.30743"
|
||||
ry="30.226379" />
|
||||
<rect
|
||||
ry="30.226379"
|
||||
y="404.30743"
|
||||
x="189.5112"
|
||||
height="112.5"
|
||||
width="112.5"
|
||||
id="rect3789"
|
||||
style="fill:#000000;fill-opacity:0.03137255;fill-rule:evenodd;stroke:none;stroke-width:1.11995912px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:0.03137255;fill-rule:evenodd;stroke:none;stroke-width:1.11995912px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
id="rect3791"
|
||||
width="112.5"
|
||||
height="112.5"
|
||||
x="330.80356"
|
||||
y="404.30743"
|
||||
ry="30.226379" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 5.6 KiB |
@ -1,72 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="111.48425mm"
|
||||
height="86.076721mm"
|
||||
viewBox="0 0 395.02288 304.99626"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
sodipodi:docname="freedombox-logo-background.svg">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.7"
|
||||
inkscape:cx="253.51181"
|
||||
inkscape:cy="-88.105928"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:snap-page="false"
|
||||
showguides="true"
|
||||
inkscape:window-width="1509"
|
||||
inkscape:window-height="1010"
|
||||
inkscape:window-x="1911"
|
||||
inkscape:window-y="108"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:measure-start="166.17,406.586"
|
||||
inkscape:measure-end="115.662,389.414"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-48.207506,-45.194866)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;fill-opacity:0.03137255;stroke:none;stroke-width:0.79384387"
|
||||
d="m 81.328607,45.19699 c -0.682706,-0.008 -1.363109,0.008 -2.034146,0.02461 -9.759911,0.273399 -18.392412,3.261428 -23.964239,9.650126 -17.417333,19.974303 1.755187,38.549772 8.409817,63.805204 8.885659,33.7001 -1.219581,69.56009 25.750316,93.15265 9.288925,8.12364 20.505545,10.26385 31.282455,11.26267 -14.16868,16.69421 -22.711402,39.84445 -18.05995,63.63151 7.37807,37.73179 41.86685,64.03994 78.64008,63.45789 1.26809,-0.0198 2.548,-0.089 3.82046,-0.17361 2.54482,-0.16925 5.09036,-0.45789 7.64074,-0.89308 21.82134,-3.72455 39.64631,-16.48369 50.18578,-34.11051 0.35136,-0.58753 0.68207,-1.18791 1.01715,-1.78615 0.33501,-0.59817 0.67382,-1.20236 0.99231,-1.81092 0.37089,-0.64254 1.23982,-0.64548 1.61246,0 0.31848,0.6084 0.6573,1.21284 0.9923,1.81092 7.70592,13.75588 19.74075,24.73331 34.65621,31.05914 0.64856,0.27507 1.30063,0.53664 1.95984,0.79385 4.61437,1.80083 9.49596,3.17474 14.58688,4.04367 3.82546,0.65271 7.65972,1.00652 11.46112,1.06669 0.63357,0.0103 1.2534,0.008 1.88538,0 1.26404,-0.0119 2.53927,-0.0492 3.7956,-0.12399 24.49787,-1.45091 47.31707,-14.71287 61.02675,-35.05321 0.35152,-0.52148 0.70248,-1.03208 1.04185,-1.56285 0.67882,-1.0616 1.33112,-2.15219 1.95984,-3.24984 1.88625,-3.29294 3.56182,-6.75013 4.96152,-10.34474 1.63302,-4.19371 2.90507,-8.56938 3.79553,-13.12326 4.65129,-23.78706 -3.71765,-46.9373 -17.88625,-63.63151 10.7769,-0.99882 21.81975,-3.13903 31.10875,-11.26267 26.96989,-23.59256 16.86466,-59.45255 25.75031,-93.15265 6.65464,-25.255432 25.80223,-43.830901 8.38498,-63.805204 -5.57175,-6.388698 -14.00594,-9.376647 -23.7657,-9.650126 -0.67914,-0.01905 -1.36787,-0.02858 -2.05908,-0.02461 -20.8411,-0.02223 -42.50954,8.378546 -64.45012,18.77933 -26.28012,12.456919 -45.1817,27.227814 -60.40659,45.29872 -0.51076,0.59379 -0.99374,1.21426 -1.48847,1.81099 -0.50321,0.6142 -1.01794,1.21395 -1.51322,1.83577 l 58.07461,33.73836 -91.86266,53.33639 -8.03768,101.19025 -2.08384,-105.85408 -10.86566,-6.30114 -7.98813,100.27241 -2.08384,-106.12701 -10.89051,-6.32598 -7.96328,100.59494 -2.13338,-106.44954 -10.81612,-6.27629 -8.01291,100.84294 -2.1086,-106.74716 -10.79136,-6.25151 -8.03767,101.14063 -2.1086,-107.04485 55.6186,-32.29952 c -0.50147,-0.64309 -1.00365,-1.27515 -1.51322,-1.91023 -0.18703,-0.22989 -0.38112,-0.46495 -0.57061,-0.69461 -14.74454,-18.182675 -32.94135,-33.086224 -58.14908,-45.670792 -1.43732,-0.735973 -2.87712,-1.437176 -4.29167,-2.108688 -1.04748,-0.49655 -2.12957,-0.99818 -3.24984,-1.513226 -20.09878,-9.360451 -39.71474,-16.679851 -59.215759,-17.216489 -0.671427,-0.02382 -1.348028,-0.04605 -2.009454,-0.04921 z"
|
||||
id="path13394"
|
||||
sodipodi:nodetypes="cccccccccccccccscccccccccsccccccccccccccccccccccccccccccccccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.7 KiB |
@ -1,62 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
viewBox="0 -240 421.42371 421.46419"
|
||||
id="svg5455"
|
||||
sodipodi:docname="system-background.svg"
|
||||
width="111.50169mm"
|
||||
height="111.5124mm"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||
<metadata
|
||||
id="metadata5461">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs5459" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1053"
|
||||
id="namedview5457"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.1125147"
|
||||
inkscape:cx="252.43968"
|
||||
inkscape:cy="139.00361"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg5455"
|
||||
units="mm" />
|
||||
<g
|
||||
transform="matrix(0.3670157,0,0,-0.3670157,-9.5494289,190.93977)"
|
||||
id="g5453"
|
||||
style="fill:#000000;fill-opacity:0.03137255">
|
||||
<path
|
||||
d="m 600,1174 q 33,0 74,-5 l 38,-152 5,-1 q 49,-14 94,-39 l 5,-2 134,80 q 61,-48 104,-105 l -80,-134 3,-5 q 25,-44 39,-93 l 1,-6 152,-38 q 5,-43 5,-73 0,-34 -5,-74 l -152,-38 -1,-6 q -15,-49 -39,-93 l -3,-5 80,-134 Q 1006,190 950,146 l -134,81 -5,-3 q -44,-25 -94,-39 l -5,-2 -38,-151 q -43,-5 -74,-5 -33,0 -74,5 l -38,151 -5,2 q -49,14 -94,39 l -5,3 -134,-81 q -60,48 -104,105 l 80,134 -3,5 q -25,45 -38,93 l -2,6 -151,38 q -6,42 -6,74 0,33 6,73 l 151,38 2,6 q 13,48 38,93 l 3,5 -80,134 q 47,61 105,105 l 133,-80 5,2 q 45,25 94,39 l 5,1 38,152 q 43,5 74,5 z m 0,-359 q -89,0 -152,-63 -63,-63 -63,-151.5 0,-88.5 63,-151.5 63,-63 152,-63 89,0 152,63 63,63 63,151.5 0,88.5 -63,151.5 -63,63 -152,63 z"
|
||||
id="path5451"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;fill-opacity:0.03137255" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.5 KiB |
Loading…
x
Reference in New Issue
Block a user